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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WINNT
  3. APPVER=4.0
  4. !include <ntwin32.mak>
  5. !if "$(CPU)" == "i386"
  6. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  7. !else
  8. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  9. !endif
  10. all: netsmple.exe
  11. netsmple.obj: netsmple.c
  12.     $(cc) $(cflags) $(cvars) -Zi -Od netsmple.c
  13. netsmple.exe: netsmple.obj
  14.     $(link) $(linkdebug) $(conflags) -out:netsmple.exe netsmple.obj $(conlibs) netapi32.lib