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.

20 lines
433 B

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