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

  1. #
  2. #  --- Version 2.0 89-12-23 23:22 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: SNAP.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=l
  14. lib=c:\tc\lib
  15.  
  16. .c.obj:
  17.    tcc $(reqopt) $(optopt) -m$(model) $*.c
  18.  
  19. snap.exe:     snap.obj ctsuptc.lib ctasktc.lib
  20.    tlink /m $(lib)\c0$(model) $*,$*,$*,ctsuptc ctasktc $(lib)\c$(model)
  21.  
  22. snap.obj:     snap.c tsk.h tskconf.h
  23.  
  24.  
  25.  
  26.