OBJS	= tek.o vt100.o window.o remote.o xmodem.o kermit.o \
		  init.o script.o expand.o

tek	: $(OBJS)
	ln -v -o tek $(OBJS) -lm -lc

tek.o	: tek.c vt100.h tek.h
		cc tek.c

vt100.o	: vt100.c vt100.h tek.h
		cc vt100.c

window.o	: window.c vt100.h tek.h
			cc window.c

remote.o	: remote.c vt100.h tek.h
			cc remote.c

xmodem.o	: xmodem.c vt100.h tek.h
			cc xmodem.c

kermit.o	: kermit.c vt100.h tek.h
			cc kermit.c

script.o	: script.c vt100.h tek.h
			cc script.c

init.o		: init.c vt100.h tek.h
			cc init.c

expand.o	: expand.c vt100.h tek.h
			cc expand.c
