home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / internet / scripting / spruuids / makefile < prev    next >
Encoding:
Makefile  |  1997-05-29  |  2.3 KB  |  58 lines

  1. Proj = Spruuids
  2.  
  3. cDefines = -IInc_Ext
  4.  
  5. # pull in the master SDK makefile that defines all of the macros
  6. #  and all of the build rules
  7.  
  8. !include <INetSDK.Mak>
  9.  
  10. All: $(ObjDir)\$(Proj).Exe
  11.  
  12. $(ObjDir)\Game.Exe : $(@R).Obj         $(@D)\App.Obj     $(@D)\GameOA.Obj  \
  13.                      $(@D)\Guids.Obj   $(@D)\MsgLoop.Obj $(@D)\OleAuto.Obj \
  14.                      $(@D)\Score.Obj   $(@D)\Spr.Obj     $(@D)\SprOA.Obj   \
  15.                      $(@D)\$(Proj).Res
  16.  
  17. $(ObjDir)\$(Proj).Exe: $(ObjDir)\Game.Exe
  18.  Copy $? $@
  19.  
  20. $(ObjDir)\$(Proj).h $(ObjDir)\$(Proj).Tlb: $(Proj).Odl
  21.   $(MkDest)
  22.   MkTypLib /DWIN32 -IInc_Ext /h $(ObjDir)\$(Proj).h /tlb $(ObjDir)\$(Proj).tlb $(Proj).Odl
  23.  
  24. $(ObjDir)\App.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h \
  25.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h     \
  26.         Helpers.h OleAuto.h App.h MsgLoop.h Game.h
  27.  
  28. $(ObjDir)\Game.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h                \
  29.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h OleAuto.h \
  30.         Game.h App.h Spr.h Score.h SpruuidP.h SpruuidP.hh SpruuidP.pix
  31.  
  32. $(ObjDir)\GameOA.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h    \
  33.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  34.         OleAuto.h Game.h App.h Spr.h Score.h DispIDs.h
  35.  
  36. $(ObjDir)\Guids.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h     \
  37.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  38.         OleAuto.h Game.h
  39.  
  40. $(ObjDir)\MsgLoop.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h   \
  41.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  42.         OleAuto.h MsgLoop.h
  43.  
  44. $(ObjDir)\Score.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h     \
  45.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  46.         OleAuto.h Score.h Spr.h Game.h
  47.  
  48. $(ObjDir)\Spr.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h       \
  49.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  50.         OleAuto.h Spr.h
  51.  
  52. $(ObjDir)\SprOA.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h     \
  53.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  54.         OleAuto.h Spr.h DispIDs.h
  55.  
  56. $(ObjDir)\OleAuto.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h   \
  57.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h OleAuto.h
  58.