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

Windows编程

开发平台:

Visual C++

  1. # Makefile to build the Sample Propsheet Extension
  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)propsh.ext^
  16. COMMON = $(MAPISAMP)common^
  17. rcvars = $(rcvars) /I$(HOME)
  18. !ELSE
  19. HOME   = 
  20. COMMON = ..common^
  21. !ENDIF
  22. PROJ = eprsht32
  23. # Main target dependencies
  24. all: $(PROJ).dll
  25. # Extra libraries needed, not defined in win32.mak
  26. extralibs = mapi32.lib uuid.lib
  27. # Object files we need to build
  28. OBJS = extprsht.obj prshtdlg.obj
  29. # Build the object files
  30. {$(HOME)}.cpp.obj:
  31.   $(cc) $(cdebug) $(cflags) $(cvarsmt) $**
  32. # Build the resources
  33. $(PROJ).res: $(HOME)extprsht.rc $(HOME)resource.h
  34.   $(rc) $(rcflags) $(rcvars) /fo $(PROJ).res $(HOME)extprsht.rc
  35. # Link it together to make the executable image
  36. $(PROJ).dll: $(OBJS) $(COMMON_OBJS) $(PROJ).res
  37.   $(link) $(linkdebug) $(lflags) -dll -subsystem:windows,$(APPVER) $(OBJS) 
  38.   $(COMMON_OBJS) $(PROJ).res $(extralibs) $(guilibsmt) 
  39.   -def:$(HOME)eprsht32.def -out:$(PROJ).dll
  40. !IFDEF MAPISAMP
  41.   -copy $@ $(MAPISAMP)bin$(PLATFORM)
  42. !ENDIF
  43. # Clean up the intermediate files
  44. clean:
  45.   -del *.obj
  46.   -del *.res 
  47.   -del *.dll 
  48.   -del *.lib 
  49.   -del *.exp 
  50.   -del *.dbg 
  51.   -del *.map