home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / DOOG / CTASK.ZIP / TESTH.TC < prev    next >
Text File  |  1989-12-24  |  692b  |  26 lines

  1. #
  2. #  --- Version 2.0 89-12-24 00:14 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: TEST.C
  5. #
  6. #    "reqopt" contains required options, and shouldn't normally be changed.
  7. #    "optopt" lists optional optimization options, and may be changed.
  8. #    "model"  is the memory model letter to use (all except Tiny).
  9. #    "lib"    is the Turbo C library path
  10. #
  11. reqopt=-c -N- -a- -u -K
  12. optopt=-d -G -O -k- -w
  13. model=h
  14. lib=c:\tc\lib
  15.  
  16. .c.obj:
  17.    tcc $(reqopt) $(optopt) -m$(model) $*.c
  18.  
  19. test.exe:   test.obj  ctsuptc.lib ctasktc.lib
  20.    tlink /m $(lib)\c0$(model) $*,$*,$*,ctsuptch ctasktch $(lib)\c$(model)
  21.  
  22. test.obj:     test.c tsk.h tskconf.h
  23.  
  24.  
  25.