home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
netds
/
winsock
/
appletalk
/
makefile
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
|
1996-07-05
|
262 b
|
14 lines
# Nmake macros for building Windows 32-Bit apps
TARGETOS=WINNT
!include <win32.mak>
all: prperf.exe
prperf.obj: prperf.c
$(cc) $(cflags) $(cvars) prperf.c
prperf.exe: prperf.obj
$(link) $(conflags) -out:prperf.exe prperf.obj $(conlibs)