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 / winnt / takeown / makefile next >
Encoding:
Makefile  |  1995-02-03  |  332 b   |  16 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WINNT
  4.  
  5. !include <ntwin32.mak>
  6.  
  7. my_libs = advapi32.lib
  8.  
  9. all: takeown.exe
  10.  
  11. takeown.obj: takeown.c
  12.     $(cc) $(cflags) $(cvars) $(cdebug) takeown.c
  13.  
  14. takeown.exe: takeown.obj
  15.     $(link) $(linkdebug) $(conflags) -out:takeown.exe takeown.obj $(conlibs) $(my_libs)
  16.