Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
803 B

  1. !include <win32.mak>
  2. #
  3. # This Makefile is designed for the Microsoft Platform SDK build environment.
  4. # To use with just Visual C, you may need to add one of C runtime libraries
  5. # to LIBS as shown below (libc.lib is the single-threaded runtime).
  6. #
  7. # LIBS = kernel32.lib oldnames.lib ws2_32.lib libc.lib
  8. LIBS = kernel32.lib oldnames.lib ws2_32.lib
  9. .c.obj:
  10. $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
  11. all:rawsend.exe rawrecv.exe
  12. rawsend.exe:rawsend.obj
  13. $(link) $(ldebug) $(conlflags) -map:$*.map -out:$*.exe $** $(LIBS)
  14. rawrecv.exe:rawrecv.obj
  15. $(link) $(ldebug) $(conlflags) -map:$*.map -out:$*.exe $** $(LIBS)
  16. # $(link) $(ldebug) $(conlflags) -map:$*.map -out:$*.exe $** $(LIBS) user32.lib
  17. clean:
  18. -del *.obj *.pdb *.ilk *.map
  19. cleanall:clean
  20. -del *.exe