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

Windows编程

开发平台:

Visual C++

  1. # Makefile to build the MAPI Sample Transport Provider
  2. # Key to CPU specific conditions, CPU == i386 || ALPHA || MIPS || PPC
  3. !IF "$(CPU)" == ""
  4. !IF "$(PROCESSOR_ARCHITECTURE)" == "MIPS" || "$(PROCESSOR_ARCHITECTURE)" == "ALPHA" || "$(PROCESSOR_ARCHITECTURE)" == "PPC"
  5. CPU = $(PROCESSOR_ARCHITECTURE)
  6. !ELSE
  7. CPU = i386
  8. !ENDIF
  9. !ENDIF
  10. !include <win32.mak>
  11. !IFNDEF NODEBUG
  12. cflags = $(cflags) -DDEBUG
  13. !ENDIF
  14. !IFDEF MAPISAMP
  15. HOME   = $(MAPISAMP)peer.xp^
  16. COMMON = $(MAPISAMP)common^
  17. rcvars = $(rcvars) /I$(HOME)
  18. !ELSE
  19. HOME   = 
  20. COMMON = ..common^
  21. !ENDIF
  22. PROJ     = SMPXP32
  23. BASEFILE = $(COMMON)mapibase.txt
  24. # Main target dependencies
  25. all: $(PROJ).dll
  26. # Extra libraries needed, not defined in win32.mak
  27. extralibs = mapi32.lib
  28. # Object files we need to build
  29. OBJS =  XPBASE.OBJ XPDIALOG.OBJ XPGUID.OBJ XPLOGGER.OBJ XPOPTION.OBJ 
  30. XPQUEUE.OBJ XPRCVMSG.OBJ XPSNDMSG.OBJ XPSOF.OBJ XPSTATUS.OBJ
  31. COMMON_OBJS = 
  32. !IFNDEF NODEBUG
  33. COMMON_OBJS = $(COMMON_OBJS) mapidbg.obj
  34. !ENDIF
  35. # Build the object files
  36. {$(HOME)}.c.obj:
  37.   $(cc) /I$(COMMON) $(cdebug) $(cflags) $(cvarsmt) $**
  38. mapidbg.obj: $(COMMON)mapidbg.c
  39.   $(cc) /I$(COMMON) $(cdebug) $(cflags) $(cvarsmt) $**
  40. # Build the resources
  41. $(PROJ).res: $(HOME)XPRESRC.RC $(HOME)XPRESRC.DLG
  42.   $(rc) /I$(COMMON) $(rcflags) $(rcvars) /fo $(PROJ).res $(HOME)XPRESRC.RC
  43. # Link it together to make the executable image
  44. $(PROJ).dll: $(OBJS) $(COMMON_OBJS) $(PROJ).res
  45.   $(link) $(linkdebug) $(lflags) -dll -subsystem:windows,$(APPVER) $(OBJS) 
  46.   $(COMMON_OBJS) $(PROJ).res $(extralibs) $(guilibsmt) 
  47.   -def:$(HOME)$(PROJ).def -out:$(PROJ).dll -base:@$(BASEFILE),$(PROJ)
  48. !IFDEF MAPISAMP
  49.   -copy $@ $(MAPISAMP)bin$(PLATFORM)
  50. !ENDIF
  51. # Clean up the intermediate files
  52. clean:
  53.   -del *.obj
  54.   -del *.res 
  55.   -del *.lib 
  56.   -del *.dll 
  57.   -del *.exp