home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / dos / prg / midas / examples / pas_exp.mak < prev    next >
Text File  |  1994-08-06  |  737b  |  32 lines

  1. #*      PAS_EXP.MAK
  2. #*
  3. #* Makefile for MIDAS Pascal examples
  4. #*
  5. #* Copyright 1994 Petteri Kangaslampi and Jarno Paananen
  6. #*
  7. #* This file is part of the MIDAS Sound System, and may only be
  8. #* used, modified and distributed under the terms of the MIDAS
  9. #* Sound System license, LICENSE.TXT. By continuing to use,
  10. #* modify or distribute this file you indicate that you have
  11. #* read the license and understand and accept it fully.
  12. #*
  13.  
  14.  
  15. # Compiler directories:
  16.  
  17. MIDASDIR = c:\midas
  18.  
  19.  
  20. # Compilers and options:
  21.  
  22. PC = tpc
  23. PCOPTS = /$G+ /U$(MIDASDIR)
  24. ASM = tasm
  25. ASMOPTS = -UT310 -ml -m9 -i$(MIDASDIR) -d__TP__
  26.  
  27.  
  28. MIDASTPU = $(MIDASDIR)\midas.tpu
  29.  
  30. mplay.exe : mplay.pas $(MIDASTPU)
  31.         $(PC) $(PCOPTS) mplay.pas
  32.