MAKEFILE
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:0k
源码类别:
Windows编程
开发平台:
Visual C++
- ! include <ntwin32.mak>
- # define these if you want a debug version
- #PDB = sockspx.pdb
- #CDEBUG= -Zi -Fd"$(PDB)"
- #LDEBUG = -debug:full
- LIBS = kernel32.lib user32.lib wsock32.lib oldnames.lib libcmt.lib
- .c.obj:
- cl $(CDEBUG) -W3 -MT -c $<
- all:sockspx.exe
- sockspx.exe:sockspx.obj
- link -nodefaultlib sockspx.obj $(LIBS) $(LDEBUG)
- #
- # uncomment the line below for a debug build
- # -pdb:$(PDB)
- -out:sockspx.exe
- clean:
- -del *.obj *.pdb *.ilk
- cleanall:clean
- -del *.exe