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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <ntwin32.mak>
  3. !if "$(CPU)" == "i386"
  4. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  5. !else
  6. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  7. !endif
  8. all: ..binsymedit.exe
  9. cflags = $(cflags) -DWIN32 -DTARGET32 -DHOST32 -DADDR_MIXED -DNT_BUILD -D_CROSS_PLATFORM_
  10. .c.obj:
  11.     $(cc) $(cflags) $(cvarsdll) -I..include -I. $(scall) $(cdebug) $**
  12. OBJS = symedit.obj
  13. ..binsymedit.exe: $(OBJS) ..libsymcvt.lib
  14.     @if not exist ..bin md ..bin > nul
  15.     $(link) @<<
  16. $(conlflags)
  17. $(linkdebug)
  18. -out:$@
  19. $(**: =
  20. )
  21. $(guilibsdll: =
  22. )
  23. imagehlp.lib
  24. <<NOKEEP