home *** CD-ROM | disk | FTP | other *** search
/ Zodiac Super OZ / MEDIADEPOT.ISO / FILES / 16 / FREEDOS.ZIP / FD_A4PRE.ZIP / SOURCE / SORT.ZIP / SORT.MK < prev    next >
Text File  |  1995-05-23  |  478b  |  13 lines

  1. # This is the makefile for sort.  It works with Turbo C 2.0, but 
  2. # with a few simple mods, it should work with most compilers.
  3. # To sort files of any size, you must use the large memory model.
  4. # Be sure to change the paths in the tlink command to reflect
  5. # your configuration.
  6.  
  7. reqopt=-c -N- -a- -u -K 
  8. optopt=-d -G -O -k- -w -v -vi 
  9. sort.exe:    sort.obj
  10.    tlink /v/l \tc\lib\c0l /c sort.obj,sort.exe,,\tc\lib\cl
  11. sort.obj: sort.c
  12.     tcc -ml $(reqopt) $(optopt) sort.c
  13.