home *** CD-ROM | disk | FTP | other *** search
/ Chip Special: HTML & Java / Chip-Special_1997-01_HTML-a-Java.bin / actvx31.sdk / coresdk / inetsdk / samples / urlpad / makefile < prev    next >
Encoding:
Makefile  |  1996-10-23  |  985 b   |  36 lines

  1.  
  2. !if "$(CPU)" == "ALPHA" || "$(CPU)" == "PPC" || "$(CPU)" == "MIPS" 
  3. Sorry:
  4.         @echo The URLPad sample only builds on X86 platforms at this time.
  5. !else
  6.  
  7. Use_MFC = 1
  8.  
  9. #  Uncomment the below line if using VC++ 4.2b
  10. #  _MFC_LIB_ = 42
  11.  
  12. Proj = UrlPad
  13.  
  14. # These are "extra" libs beyond the standard set that inetsdk.mak will
  15. #  append to the libs set
  16.  
  17. libs=UrlMon.Lib WinInet.Lib WebPost.Lib
  18.  
  19. cDefines = -GX -I..\BaseCtl\Include
  20.  
  21. # pull in the master SDK makefile that defines all of the macros
  22. #  and all of the build rules
  23.  
  24. !include <INetSDK.Mak>
  25.  
  26. All: $(ObjDir)\$(Proj).Exe
  27.  
  28. $(ObjDir)\SuperPad.Exe : $(@R).Obj          $(@D)\UrlPad.Res   $(@D)\PadDoc.Obj  \
  29.       $(@D)\PadView.Obj  $(@D)\MainFrm.Obj  $(@D)\IPFrame.Obj  $(@D)\PageSet.Obj \
  30.       $(@D)\TabStop.Obj  $(@D)\PadFrame.Obj $(@D)\AboutBox.Obj $(@D)\PadItem.Obj \
  31.       $(@D)\LinkItem.Obj $(@D)\DownLoad.Obj $(@D)\FileOpen.Obj
  32.  
  33. $(ObjDir)\$(Proj).Exe: $(@D)\SuperPad.Exe
  34.  Copy $? $@
  35.  
  36. !endif