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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=BOTH
  3. APPVER=4.0
  4. Proj=sa
  5. all:SA.exe
  6. !include <inetsdk.mak>
  7. !if "$(CPU)" == "i386"
  8. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  9. !endif
  10. sa.obj: sa.cpp
  11.     $(cc) $(cflags) $(cvars) $(cdebug) sa.cpp
  12. sa.exe: sa.obj
  13.     $(link) $(lflags) $(ldebug) -out:sa.exe sa.obj $(olelibs)