home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / mapi / command.ext / makefile < prev    next >
Makefile  |  1996-03-27  |  1KB  |  70 lines

  1. # Makefile to build the Sample Extension
  2.  
  3. # Key to CPU specific conditions, CPU == i386 || ALPHA || MIPS || PPC
  4. !IF "$(CPU)" == ""
  5. !IF "$(PROCESSOR_ARCHITECTURE)" == "MIPS" || "$(PROCESSOR_ARCHITECTURE)" == "ALPHA" || "$(PROCESSOR_ARCHITECTURE)" == "PPC"
  6. CPU = $(PROCESSOR_ARCHITECTURE)
  7. !ELSE
  8. CPU = i386
  9. !ENDIF
  10. !ENDIF
  11.  
  12. !include <win32.mak>
  13.  
  14. !IFNDEF NODEBUG
  15. cflags = $(cflags) -DDEBUG
  16. !ENDIF
  17.  
  18. !IFDEF MAPISAMP
  19. HOME   = $(MAPISAMP)\command.ext^\
  20. COMMON = $(MAPISAMP)\common^\
  21. rcvars = $(rcvars) /I$(HOME)
  22. !ELSE
  23. HOME   = 
  24. COMMON = ..\common^\
  25. !ENDIF
  26.  
  27. PROJ = CMDEXT32
  28.  
  29. # Main target dependencies
  30.  
  31. all: $(PROJ).dll
  32.  
  33. # Extra libraries needed, not defined in win32.mak
  34.  
  35. extralibs = mapi32.lib uuid.lib
  36.  
  37. # Object files we need to build
  38.  
  39. OBJS = cmdext.obj
  40.  
  41. # Build the object files
  42.  
  43. {$(HOME)}.cpp.obj:
  44.   $(cc) /I$(COMMON) $(cdebug) $(cflags) $(cvarsmt) $**
  45.  
  46. # Build the resources
  47.  
  48. $(PROJ).res: $(HOME)CMDEXT.RC
  49.   $(rc) /I$(COMMON) $(rcflags) $(rcvars) /fo $(PROJ).res $(HOME)CMDEXT.RC
  50.  
  51. # Link it together to make the executable image
  52.  
  53. $(PROJ).dll: $(OBJS) $(COMMON_OBJS) $(PROJ).res
  54.   $(link) $(linkdebug) $(lflags) -dll -subsystem:windows,$(APPVER) $(OBJS) \
  55.   $(COMMON_OBJS) $(PROJ).res $(extralibs) $(guilibsmt) \
  56.   -def:$(HOME)cmdext.def -out:$(PROJ).dll
  57. !IFDEF MAPISAMP
  58.   -copy $@ $(MAPISAMP)\bin\$(PLATFORM)
  59. !ENDIF
  60.  
  61. # Clean up the intermediate files
  62.  
  63. clean:
  64.   -del *.obj
  65.   -del *.res
  66.   -del *.dll
  67.   -del *.lib
  68.   -del *.exp
  69.  
  70.