File:  [WindowsNT SDKs] / mstools / mfc / samples / restool / makefile
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs
Thu Aug 9 18:22:35 2018 UTC (7 years, 9 months ago) by root
Branches: msft, MAIN
CVS tags: ntsdk-oct-1992, HEAD
Microsoft Windows NT Build 328 10-12-1992

# Makefile : Builds the restool application
#
# Usage:     NMAKE option (build restool)
#    or:     NMAKE clean  (erase all compiled files)
#
# options:   DEBUG=[0|1]  (DEBUG not defined is equivalent to DEBUG=0)
#
# This is a part of the Microsoft Foundation Classes C++ library.
# Copyright (C) 1992 Microsoft Corporation
# All rights reserved.
#
# This source code is only intended as a supplement to the
# Microsoft Foundation Classes Reference and Microsoft
# QuickHelp documentation provided with the library.
# See these sources for detailed information regarding the
# Microsoft Foundation Classes product.
#

!ifdef WIN16MFC
#!message compiling for WIN16

CPPFLAGS=/AM /W3 /Zp /D_DOS
LINKFLAGS=/NOD /ONERROR:NOEXE

!if "$(DEBUG)"=="1"
CPPFLAGS=/D_DEBUG $(CPPFLAGS) /Od /Zi /f
LINKFLAGS=$(LINKFLAGS) /COD
LIBS=mafxcrd mlibce
!else
CPPFLAGS=$(CPPFLAGS) /Oselg /Gs
LINKFLAGS=$(LINKFLAGS)  
LIBS=mafxcr mlibce
!endif

restool.exe:     restool.obj
	link $(LINKFLAGS) restool, restool, NUL, $(LIBS);

!else

CONSOLE=1
!include ..\ntsample.mak

restool.exe: restool.obj
    $(LINK) $(CONFLAGS) -out:restool.exe restool.obj $(MFCLIB) $(CONLIBS)

!endif
restool.obj:    dlgres.h

clean:
		-erase restool.exe
		-erase restool.obj

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.