MAKEFILE
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- USE_SNA=1
- Proj = appc
- linkflags = /nologo /NOD /INCREMENTAL:NO
- !include <BkOffice.Mak>
- All: $(ObjDir)sendtp.exe $(ObjDir)recvtp.exe
- # this makefile is slightly weird since the same source file is compiled into
- # different objects and .exes.
- $(ObjDir)sendtp.Obj: sendrecv.c
- $(MkDest)
- $(cc) $(cflags) $(crtflags) $(cdebug) $(cDefines) -DSENDTP -Fo$@ sendrecv.c
- $(ObjDir)sendtp.exe: $(@R).obj
- Link $(linkflags) $(ldebug) $** $(liblist) $(linklibs) $(libcrt) -out:$@
- $(ObjDir)recvtp.Obj: sendrecv.c
- $(MkDest)
- $(cc) $(cflags) $(crtflags) $(cdebug) $(cDefines) -DRECVTP -Fo$@ sendrecv.c
- $(ObjDir)recvtp.exe: $(@R).obj
- Link $(linkflags) $(ldebug) $** $(liblist) $(linklibs) $(libcrt) -out:$@