# MIDAS Sound System directory:

MIDASDIR = C:\prog\midas
MIDASINCS = $(MIDASDIR)\src
MIDASLIB = $(MIDASDIR)\lib\midasdos.lib

# Compilers and options:

CC = wcc386
CL = wcl386  
# Maximum optimization for speed:
CCOPTS = -w3 -dDEBUG -5r -fpi -oneatx -s -i$(MIDASINCS) -zdp -zu -d__WC32__
CLOPTS = $(CCOPTS)

ASM = tasm
ASMOPTS = -UT310 -p -ml -m9 -zi -d__WC32__ -l -i$(MIDASINCS)


all :          intro.exe

intro.exe :  intro.c $(MIDASLIB)
        $(CL) intro.c $(MIDASLIB) $(CLOPTS) 
