home *** CD-ROM | disk | FTP | other *** search
- #
- # --- Version 2.0 89-12-23 23:23 ---
- #
- # CTask sample applications Make-File for Borland's make.
- # Application: SPAWN.C
- #
- # "reqopt" contains required options, and shouldn't normally be changed.
- # "optopt" lists optional optimization options, and may be changed.
- # "model" is the memory model letter to use (all except Tiny).
- # "lib" is the Turbo C library path
- #
- reqopt=-c -N- -a- -u -K
- optopt=-d -G -O -k- -w
- model=l
- lib=c:\tc\lib
-
- .c.obj:
- tcc $(reqopt) $(optopt) -m$(model) $*.c
-
- spawn.exe: spawn.obj ctsuptc.lib ctasktc.lib
- tlink /m $(lib)\c0$(model) $*,$*,$*,ctsuptc ctasktc $(lib)\c$(model)
-
- spawn.obj: spawn.c tsk.h tskconf.h
-
-