MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. ! include <ntwin32.mak>
  2. # define these if you want a debug version
  3. #PDB = overlap.pdb
  4. #CDEBUG= -Zi -Fd"$(PDB)"
  5. #LDEBUG = -debug:full
  6. LIBS = kernel32.lib ws2_32.lib mswsock.lib oldnames.lib libcmt.lib
  7. # The _WIN32_WINNT flag is required in order to use AcceptEx().
  8. .c.obj:
  9. cl $(CDEBUG) -D_WIN32_WINNT=0x0400 -W3 -MT  -c $<
  10. all:overlap.exe 
  11. overlap.exe:overlap.obj
  12. link -nodefaultlib overlap.obj $(LIBS) $(LDEBUG) 
  13. #
  14. # uncomment the line below for a debug build
  15. # -pdb:$(PDB)  
  16. -out:overlap.exe
  17. clean:
  18. -del *.obj *.pdb *.ilk
  19. cleanall:clean
  20. -del *.exe