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
/
encrypt
/
makefile
< prev
next >
Wrap
Makefile
|
1996-01-15
|
386b
|
16 lines
TARGETOS=WINNT
APPVER=4.0
!include <ntwin32.mak>
all: encrypt.exe decrypt.exe
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvars) $*.c
encrypt.exe: encrypt.obj
$(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib
decrypt.exe: decrypt.obj
$(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib