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 / secfile / makefile next >
Encoding:
Makefile  |  1995-04-20  |  302 b   |  23 lines

  1.  
  2. !include <ntwin32.mak>
  3.  
  4. PROJ = secfile.exe
  5. DEPS = secfile.obj
  6. LIBS_EXT =
  7.  
  8. .c.obj:
  9.     $(cc) /YX $(cdebug) $(cflags) $(cvars) $<
  10.  
  11. $(PROJ) : $(DEPS)
  12.     $(link) @<<
  13. $**
  14. -out:$@
  15. $(conlibs)
  16. $(conlflags)
  17. $(ldebug)
  18. $(LIBS_EXT)
  19. <<
  20.  
  21. clean:
  22.     del *.obj *.bak *.pdb *.pch *.exe *.dll *.lib *.exp
  23.