home *** CD-ROM | disk | FTP | other *** search
/ The Equalizer BBS / equalizer-bbs-collection_2004.zip / equalizer-bbs-collection / DEMOSCENE-STUFF / BKISSSRC.ZIP / MAKEFILE < prev    next >
Text File  |  1994-02-08  |  1KB  |  51 lines

  1. # makefile MAKE V2.0 or higher
  2. .autodepend
  3.  
  4. # to enable debugging information, set "DEBUG" to "yes"
  5. DEBUG = no
  6.  
  7. # define all object files that make up the executable
  8. OBJS = tunnel.obj heartpal.obj font17.obj
  9.  
  10. ##############################################################################
  11.  
  12. !if ($(DEBUG) == yes)
  13. TLINKDEBUG = /v
  14. !endif
  15.  
  16. ##############################################################################
  17.  
  18. .asm.obj:
  19.     tasm /ml /m /zi $<
  20.  
  21. ##############################################################################
  22.  
  23. tunnel.exe:     $(OBJS) makefile
  24.         tlink /x $(TLINKDEBUG) @&&|
  25. $(OBJS)
  26. tunnel.exe
  27. tunnel.map
  28.  
  29. |
  30.         !if ($(DEBUG) != yes)
  31.         pklite tunnel
  32.         !endif
  33.  
  34. ##############################################################################
  35.  
  36. heartpal.obj:   heartpal.pal
  37.                 2obj b heartpal.pal Code:Palette
  38.  
  39. ##############################################################################
  40.  
  41. font17.jlf:     font17.pcx font17.cfg
  42.                 pcx2fnt font17
  43.  
  44. ##############################################################################
  45.  
  46. font17.obj:     font17.jlf
  47.                 2obj b font17.jlf Code:FontData
  48.  
  49. ##############################################################################
  50.  
  51.