home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-06 | 742 b | 35 lines |
- #
- # uncomment and change this if not defined in the environment
- # TCCLIB= c:\bin\tcc\lib
- #
-
- !if !$d(MODEL)
- MODEL= l
- !endif
-
- !if $d(DEBUG)
- TCCDBG= -v
- !endif
-
- TCCEXE= test.exe wintest.exe winclip.exe cliptest.exe rgbtest.exe framtest.exe \
- colorops.exe blittest.exe fonttest.exe curstest.exe mousetst.exe \
- circtest.exe polytest.exe arctest.exe testpatt.exe linetest.exe
-
- all: $(TCCEXE)
-
- .c.exe:
- tcc -m$(MODEL) $(TCCDBG) -w -O -G -Z -I../include $*.c $(TCCLIB)\wildargs.obj ..\lib\grx$(MODEL).lib
- -del $*.obj
-
- redo:
- cd ..\src
- !if $d(DEBUG)
- make.exe -fmakefile.tcc -DDEBUG
- !else
- make.exe -fmakefile.tcc
- !endif
- cd ..\test
-
- $(TCCEXE): test.h ../include/grx.h ../include/mousex.h ../lib/grx$(MODEL).lib
-