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

Windows编程

开发平台:

Visual C++

  1. USE_SNA=1
  2. Proj = appc
  3. linkflags = /nologo /NOD /INCREMENTAL:NO
  4. !include <BkOffice.Mak>
  5. All: $(ObjDir)sendtp.exe $(ObjDir)recvtp.exe
  6. # this makefile is slightly weird since the same source file is compiled into
  7. # different objects and .exes.
  8. $(ObjDir)sendtp.Obj: sendrecv.c
  9.     $(MkDest)
  10.     $(cc) $(cflags) $(crtflags) $(cdebug) $(cDefines)  -DSENDTP -Fo$@ sendrecv.c
  11. $(ObjDir)sendtp.exe: $(@R).obj
  12.     Link $(linkflags) $(ldebug) $** $(liblist) $(linklibs) $(libcrt) -out:$@
  13. $(ObjDir)recvtp.Obj: sendrecv.c
  14.     $(MkDest)
  15.     $(cc) $(cflags) $(crtflags) $(cdebug) $(cDefines)  -DRECVTP -Fo$@ sendrecv.c
  16. $(ObjDir)recvtp.exe: $(@R).obj
  17.     Link $(linkflags) $(ldebug) $** $(liblist) $(linklibs) $(libcrt) -out:$@