home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-02-20 | 594 b | 23 lines |
-
- #My favorite flags to Turbo C. Only one really necessary is -ml for large
- #model.
- CFLAGS= -Z -O -w-par -wstv -c -ml -d
-
- #Where Turbo C library is on my machine. You might need to change this line.
- LDIR= C:\TC
-
- .c.obj:
- tcc $(CFLAGS) $*.c
-
- all: play.exe slicefli.exe allflis.exe
- @echo made all fli.lib test programs.
-
- play.exe: play.obj
- tlink $(LDIR)\c0l play, play, play, fli $(LDIR)\cl
-
- slicefli.exe: slicefli.obj
- tlink $(LDIR)\c0l slicefli, slicefli, slicefli, fli $(LDIR)\cl
-
- allflis.exe: allflis.obj
- tlink $(LDIR)\c0l allflis, allflis, allflis, fli $(LDIR)\cl
-