home *** CD-ROM | disk | FTP | other *** search
/ The Equalizer BBS / equalizer-bbs-collection_2004.zip / equalizer-bbs-collection / DEMOSCENE-STUFF / BYTE-SRC.ZIP / MAKEFILE < prev   
Text File  |  1993-12-27  |  2KB  |  43 lines

  1. # makefile MAKE V2.0 or higher
  2. .autodepend
  3.  
  4. # set this to the relative path where the BANNER utility is located
  5. BANNER = misc.!!!\banner
  6.  
  7. # set this to the relative path where the JLIB utility is located
  8. JLIB = misc.!!!\jlib
  9.  
  10. # these are the files that will be included in the zip file
  11. byteb4.exe = loader\byteb4.exe
  12. byteb4.jlb = byteb4.jlb
  13. byteb4.nfo = misc.!!!\byteb4.nfo
  14. file_id.diz = misc.!!!\file_id.diz
  15.  
  16. # these are the files that will be included in the jlb file
  17. loader.exe = loader\loader.exe
  18. baroque.mod = misc.!!!\baroque.mod
  19. musgus.inf = misc.!!!\musgus.inf
  20. title.exe = title\title.exe
  21. tree.exe = tree\tree.exe
  22. house.exe = house\house.exe
  23. fire.exe = fire\fire.exe
  24. snowman.exe = snowman\snowman.exe
  25. earth.exe = earth\earth.exe
  26.  
  27. ##############################################################################
  28.  
  29. byteb4.zip:     $(byteb4.exe) $(byteb4.jlb) $(byteb4.nfo) $(file_id.diz)
  30.                 @if exist byteb4.zip del byteb4.zip
  31.                 pkzip /ex byteb4.zip $(byteb4.exe) $(byteb4.jlb) $(byteb4.nfo) $(file_id.diz)
  32.                 @if exist $(byteb4.jlb) del $(byteb4.jlb)
  33.                 $(BANNER) byteb4.zip $(file_id.diz)
  34.  
  35. #############################################################################
  36.  
  37. $(byteb4.jlb):
  38.                 @if exist $(byteb4.jlb) del $(byteb4.jlb)
  39.                 $(JLIB) /a $(byteb4.jlb) $(loader.exe) $(musgus.inf) $(title.exe) $(tree.exe)
  40.                 $(JLIB) /a $(byteb4.jlb) $(house.exe) $(fire.exe) $(snowman.exe) $(earth.exe) $(baroque.mod)
  41.  
  42. #############################################################################
  43.