home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / winsock / ping / makefile next >
Makefile  |  1996-07-25  |  301b  |  18 lines

  1. !include <win32.mak>
  2.  
  3. LIBS = kernel32.lib oldnames.lib libcmt.lib ws2_32.lib
  4.  
  5. .c.obj:
  6.     $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
  7.  
  8. all:ping.exe
  9.  
  10. ping.exe:ping.obj
  11.     $(link) $(ldebug) $(conlflags) -out:$*.exe $** $(LIBS)
  12.  
  13. clean:
  14.     -del *.obj *.pdb *.ilk
  15.  
  16. cleanall:clean
  17.     -del *.exe
  18.