home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
sdktools
/
winnt
/
dbmon
/
makefile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1995-02-03
|
258 b
|
14 lines
# Nmake macros for building Windows 32-Bit apps
TARGETOS = WINNT
!include <ntwin32.mak>
all: dbmon.exe
dbmon.obj: dbmon.c
$(cc) $(cflags) $(cvars) dbmon.c
dbmon.exe: dbmon.obj
$(link) $(conflags) -out:dbmon.exe dbmon.obj $(conlibs)