.SUFFIXES: .c .b .a86

OBJ = ../../obj
INCLUDE = ../../include

all: term

term:	term.b ah.b ah2.b bell.b
	cc86 -o term term.b ah.b ah2.b bell.b -lh19

lint:
	lint86 term.c -lh19 -lc

install:
	mv term.com ${OBJ}

.c.b:
	cc86 -c -DDEBUG $*.c

.a86.b:
	a86 $*
