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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. SEHMAP=TRUE
  3. !include <win32.mak>
  4. !if "$(CPU)" == "i386"
  5. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  6. !else
  7. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  8. !endif
  9. all: ..libsymcvt.exp ..binsymcvt.dll
  10. cflags = $(cflags) -DWIN32 -DTARGET32 -DHOST32 -DADDR_MIXED -DNT_BUILD -D_CROSS_PLATFORM_
  11. .c.obj:
  12.     $(cc) $(cflags) $(cvarsdll) -I..include -I. $(scall) $(cdebug) $**
  13. OBJS = cofftocv.obj 
  14.        cvcommon.obj 
  15.        file.obj     
  16.        symcvt.obj   
  17.        symtocv.obj
  18. ..libsymcvt.exp: $(OBJS) symcvt.def
  19.     @if not exist ..lib md ..lib > nul
  20.     $(implib) @<<
  21. -machine:$(CPU)
  22. -def:symcvt.def
  23. $(OBJS: =
  24. )
  25. -out:..libsymcvt.lib
  26. <<NOKEEP
  27. ..binsymcvt.dll: ..libsymcvt.exp $(OBJS)
  28.     @if not exist ..bin md ..bin > nul
  29.     $(link) @<<
  30. $(dlllflags)
  31. -base:0x58400000
  32. $(linkdebug)
  33. -out:$@
  34. $(**: =
  35. )
  36. $(conlibsdll: =
  37. )
  38. imagehlp.lib
  39. <<NOKEEP