home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
sysutl
/
history.arc
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1988-03-19
|
338b
|
24 lines
OBJS = edit.obj history.obj setup.obj
CFLAGS = -mt -f- -K -O -Z -M -y
.c.obj:
tcc -c $(CFLAGS) $<
.asm.obj:
tcc -c $(CFLAGS) $<
history.com: $(OBJS)
tcc -ehistory $(CFLAGS) $(OBJS)
exe2com history
install: nul
copy history.com \bin
clean: nul
del *.obj
del *.sym
del *.map
del history.com
del *.bak