home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
winbase
/
security
/
crypto
/
sign
/
makefile
next >
Wrap
Makefile
|
1996-01-15
|
392b
|
16 lines
TARGETOS=WINNT
APPVER=4.0
!include <ntwin32.mak>
all: signfile.exe verifile.exe
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvars) $*.c
signfile.exe: signfile.obj
$(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib
verifile.exe: verifile.obj
$(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib