home *** CD-ROM | disk | FTP | other *** search
- # Makefile for CHESSCLOCK
- #
- # MCooper
- # PO Box 237
- # St. David, AZ 85630-0237
- # E-mail: thegrendel@theriver.com
- # Web http://personal.riverusers.com/~thegrendel/
-
- GRLIB=graphics.lib
- VIDDRVR=\borlandc\bgi\egavgaf.obj
- GOTHFNT=\borlandc\bgi\gothf.obj
- TRIPFNT=\borlandc\bgi\tripf.obj
-
-
- chessclk.exe: chessclk.cpp oscr.hpp chessclk.hpp sound.obj
- BCC -Ox -3 chessclk sound.obj $(GRLIB) $(VIDDRVR) $(GOTHFNT) $(TRIPFNT)
-
- sound.obj: sound.c
- BCC -Ox -3 -c sound.c
-
- clean:
- del *.obj
-
-