home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / CONTRSRC.ZIP / SRC / AHU.MAK < prev    next >
Text File  |  1994-11-20  |  1KB  |  46 lines

  1. #*      UHA.MAK
  2. #*
  3. #* Makefile for MIDAS C-language 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. BCDIR = c:\bc
  18. LIBDIR = $(BCDIR)\lib
  19. # MIDASDIR = c:\wired\source\src 
  20. MIDASDIR =
  21.  
  22. # Compilers and options:
  23.  
  24. CC = bcc
  25. CCOPTS = -c -3 -G -ml -I$(BCDIR)\include;$(MIDASDIR)
  26. ASM = tasm
  27. ASMOPTS = -zi -UT310 -ml -m9 -i$(MIDASDIR)
  28. LINK = tlink
  29. LINKOPTS = -c -3 -s  
  30.  
  31.  
  32.  
  33. # MIDASLIB = $(MIDASDIR)\midas.lib
  34. MIDASLIB = midas.lib
  35.  
  36. c_exp : tfltdv.exe
  37.         touch c_exp
  38.  
  39.  
  40. tfltdv.exe : tfltdv.obj $(MIDASLIB)
  41.         $(LINK) $(LINKOPTS) $(LIBDIR)\c0l.obj tfltdv.obj @tflobjs, tfltdv, , $(LIBDIR)\cl.lib $(MIDASLIB)
  42.  
  43. tfltdv.obj : tfltdv.c
  44.         $(CC) $(CCOPTS) tfltdv.c
  45.  
  46.