home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / pascal / tsrsrc.zip / TSR.MAK < prev    next >
Text File  |  1992-01-08  |  951b  |  42 lines

  1. # make file for TSR Utilities 3
  2. # note: this make file is written for Borland's MAKE program
  3. # it will *not* work with Microsoft's MAKE
  4.  
  5. # locate compilers and options
  6. assemble=TASM.EXE
  7. compile=TPC.EXE /M /$D- /$L-
  8. link=TLINK.EXE
  9.  
  10. # force evaluation of all dependencies
  11. all: release.exe mapmem.exe disable.exe marknet.exe relnet.exe device.exe \
  12.      mark.com fmark.com eatmem.com ramfree.com watch.com
  13.  
  14. # implicit rules
  15. .asm.com:
  16.   $(assemble) $*;
  17.   $(link) /T/X $*
  18.   del $*.obj
  19.  
  20. .pas.exe:
  21.   $(compile) $*
  22.  
  23. .pas.tpu:
  24.   $(compile) $*
  25.  
  26. # explicit rules
  27. disable.exe: disable.pas memu.tpu
  28.  
  29. mapmem.exe: mapmem.pas memu.tpu xms.tpu ems.tpu
  30.  
  31. marknet.exe: marknet.pas memu.tpu xms.tpu ems.tpu
  32.  
  33. release.exe: release.pas memu.tpu ems.tpu
  34.  
  35. relnet.exe: relnet.pas memu.tpu ipx.tpu xms.tpu ems.tpu
  36.  
  37. watch.com: watch.asm
  38.   $(assemble) $*;
  39.   $(link) /T/X/m3 $*
  40.   del $*.obj
  41.   echo !!! Be sure to update offsets in MEMU.PAS
  42.