home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / winnt / netapi / nullsess / makefile next >
Encoding:
Makefile  |  1996-06-19  |  230 b   |  12 lines

  1. !include <ntwin32.mak>
  2.  
  3. proj=nullsess
  4.  
  5. all: $(proj).exe
  6.  
  7. $(proj).obj: $(proj).c
  8.     $(cc) $(cflags) $(cvars) $(cdebug) $(proj).c
  9.  
  10. $(proj).exe: $(proj).obj
  11.     $(link) $(ldebug) -out:$(proj).exe $(proj).obj netapi32.lib
  12.