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 >
Wrap
Text File
|
1995-05-23
|
478b
|
13 lines
# This is the makefile for sort. It works with Turbo C 2.0, but
# with a few simple mods, it should work with most compilers.
# To sort files of any size, you must use the large memory model.
# Be sure to change the paths in the tlink command to reflect
# your configuration.
reqopt=-c -N- -a- -u -K
optopt=-d -G -O -k- -w -v -vi
sort.exe: sort.obj
tlink /v/l \tc\lib\c0l /c sort.obj,sort.exe,,\tc\lib\cl
sort.obj: sort.c
tcc -ml $(reqopt) $(optopt) sort.c