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
