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 / subauth / makefile next >
Makefile  |  1996-04-18  |  383b  |  16 lines

  1.  
  2. TARGETOS=WINNT
  3. !include <win32.mak>
  4.  
  5. all: subauth.dll
  6.  
  7. subauth.obj: subauth.c
  8.   $(cc) $(cdebug) $(cflags) $(cvarsdll) -I..\include $*.c
  9.  
  10. subauth.lib: subauth.obj subauth.def
  11.   $(implib) -machine:$(CPU) -def:subauth.def -out:subauth.lib
  12.  
  13. subauth.dll: subauth.obj
  14.   $(link) $(linkdebug) $(dlllflags) $(guilibsdll) \
  15.   $** -out:subauth.dll -def:subauth.def netapi32.lib
  16.