home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 8.ddi / STEPS.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-06-10  |  2.3 KB  |  97 lines

  1. #
  2. # ObjectWindows - (C) Copyright 1992 by Borland International
  3. #
  4.  
  5. !if !$d(BCROOT)
  6. !include "..\bcroot.inc"
  7. !endif
  8.  
  9. !include "..\makefile.inc"
  10.  
  11. APPS = step1.exe \
  12.        step2.exe \
  13.        step3.exe \
  14.        step4.exe \
  15.        step5.exe \
  16.        step6.exe \
  17.        step7.exe \
  18.        step8.exe \
  19.        step9.exe \
  20.        step10.exe
  21.  
  22. all: turboc.cfg $(APPS)
  23.  
  24. step1.exe: turboc.cfg step1.obj
  25.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step1,step1,,@&&!
  26. $(OWLLIBS) $(STDLIBS)
  27. !,steps.def
  28.      $(RC) -30 -K step1.exe
  29.  
  30. step2.exe: turboc.cfg step2.obj
  31.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step2,step2,,@&&!
  32. $(OWLLIBS) $(STDLIBS)
  33. !,steps.def
  34.      $(RC) -30 -K step2.exe
  35.  
  36. step3.exe: turboc.cfg step3.obj
  37.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step3,step3,,@&&!
  38. $(OWLLIBS) $(STDLIBS)
  39. !,steps.def
  40.      $(RC) -30 -K step3.exe
  41.  
  42. step4.exe: turboc.cfg step4.obj
  43.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step4,step4,,@&&!
  44. $(OWLLIBS) $(STDLIBS)
  45. !,steps.def
  46.      $(RC) -30 -K step4.exe
  47.  
  48. step5.exe: turboc.cfg step5.obj steps.res
  49.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step5,step5,,@&&!
  50. $(OWLLIBS) $(STDLIBS)
  51. !,steps.def
  52.      $(RC) -30 -K steps.res step5.exe
  53.  
  54. step6.exe: turboc.cfg step6.obj steps.res
  55.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step6,step6,,@&&!
  56. $(OWLLIBS) $(STDLIBS)
  57. !,steps.def
  58.      $(RC) -30 -K steps.res step6.exe
  59.  
  60. step7.exe: turboc.cfg step7.obj steps.res
  61.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step7,step7,,@&&!
  62. $(OWLLIBS) $(STDLIBS)
  63. !,steps.def
  64.      $(RC) -30 -K steps.res step7.exe
  65.  
  66. step8.exe: turboc.cfg step8.obj steps.res
  67.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step8,step8,,@&&!
  68. $(OWLLIBS) $(STDLIBS)
  69. !,steps.def
  70.      $(RC) -30 -K steps.res step8.exe
  71.  
  72. step9.exe: turboc.cfg step9.obj steps.res
  73.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step9,step9,,@&&!
  74. $(OWLLIBS) $(STDLIBS)
  75. !,steps.def
  76.      $(RC) -30 -K steps.res step9.exe
  77.  
  78. step10.exe: turboc.cfg step10.obj helpwind.obj steps.res
  79.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) step10 helpwind,step10,,@&&!
  80. $(OWLLIBS) $(STDLIBS)
  81. !,steps.def
  82.      $(RC) -30 -K steps.res step10.exe
  83.  
  84. turboc.cfg: makefile ..\makefile.inc
  85.     echo -I$(INCLUDE) >turboc.cfg
  86.  
  87. clean:
  88.     del *.obj
  89.     del *.exe
  90.     del *.res
  91.     del *.dll
  92.     del *.lib
  93.     del *.map
  94.     del *.sym
  95.         del turboc.cfg
  96.  
  97.