home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
winbase
/
ipc
/
namepipe
/
npclient
/
makefile
< prev
next >
Wrap
Makefile
|
1994-01-17
|
564b
|
21 lines
# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
all: client32.exe
# Update the resource if necessary
client32.res: client32.rc client32.h
rc -r -fo client32.res client32.rc
# Update the object file if necessary
client32.obj: client32.c client32.h
$(cc) $(cdebug) $(cflags) $(cvars) client32.c
# Update the executable file if necessary, and if so, add the resource back in.
client32.exe: client32.obj client32.res
$(link) $(linkdebug) $(guiflags) -out:client32.exe client32.obj client32.res $(guilibs)