home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 1.0 KB | 41 lines |
-
- !include ..\..\..\source\make.cfg
-
- EXEC=..\exec
-
- all : $(EXEC)\ttt.exe \
- $(EXEC)\ttt.pcx \
- $(EXEC)\ttt.gfx \
- $(EXEC)\ttt.sfx
- echo done
-
- $(EXEC)\ttt.gfx : gfx\x.pcx \
- gfx\o.pcx \
- gfx\horiz.pcx \
- gfx\vert.pcx \
- gfx\slant1.pcx \
- gfx\slant2.pcx
- gfxmake $(EXEC)\ttt.gfx $**
-
- $(EXEC)\ttt.sfx : sfx\iwin.voc \
- sfx\youwin.voc \
- sfx\tie.voc \
- sfx\notthere.voc \
- sfx\hmm.voc \
- sfx\ohno.voc \
- sfx\nowwhat.voc
- sfxmake $(EXEC)\ttt.sfx $**
-
- $(EXEC)\ttt.pcx : gfx\ttt.pcx
- copy gfx\ttt.pcx $(EXEC)\ttt.pcx
-
- $(EXEC)\ttt.exe : main.obj ttt.obj piece.obj $(THXLIB)
- $(LINK) main ttt piece,$(EXEC)\ttt,, $(FGLIB) $(THXLIB) $(CLIB)
- !if $d(FGLITE)
- echo > $(EXEC)\tt.bat $(FASTGRAF)\fgdriver
- echo >> $(EXEC)\tt.bat ttt
- echo >> $(EXEC)\tt.bat $(FASTGRAF)\fgdriver /U
- !endif
-
-
-