home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
netds
/
rpc
/
mazelord
/
makefile
< prev
next >
Wrap
Makefile
|
1994-01-17
|
443b
|
17 lines
!include <ntwin32.mak>
all: maze.exe
# Update the resources if necessary
maze.res: maze.rc
rc -DWIN32 -r maze.rc
maze.exe: bitmap.obj draw.obj drones.obj initmaze.obj network.obj readsgrd.obj \
mazewnd.obj mazedlg.obj scorewnd.obj textwnd.obj topwnd.obj maze.res \
maze.obj
$(link) $(linkdebug) $(guiflags) -out:$*.exe $** $(guilibs) winmm.lib advapi32.lib
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvars) $*.c