#Makefile: CDNTIMER
#
# MCooper
# PO Box 237
# St. David, AZ 85630-0237
# E-mail: thegrendel@theriver.com

#
GRLIB=graphics.lib
VIDDRVR=\borlandc\bgi\egavgaf.obj
GOTHFNT=\borlandc\bgi\gothf.obj
TRIPFNT=\borlandc\bgi\tripf.obj
#
   
cdntimer.exe: cdntimer.cpp bt.hpp oscr.hpp sound.obj
   BCC -Ox -3 cdntimer sound.obj $(GRLIB) $(VIDDRVR) $(GOTHFNT) $(TRIPFNT)

sound.obj: sound.c
   BCC -Ox -3 -c sound.c

clean:
   del *.obj

