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 >
Makefile  |  1996-01-15  |  386b  |  16 lines

  1. TARGETOS=WINNT
  2. APPVER=4.0
  3.  
  4. !include <ntwin32.mak>
  5.  
  6. all: encrypt.exe decrypt.exe
  7.  
  8. .c.obj:
  9.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  10.  
  11. encrypt.exe: encrypt.obj
  12.   $(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib
  13.  
  14. decrypt.exe: decrypt.obj
  15.   $(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib
  16.