######################################################################
#
# Makefile to build vt100 terminal emulator
#
#	v2.4 861214 DBW - lots of fixes/additions (see readme file)
#	v2.3 861101 DBW - minor bug fixes
#	v2.2 861012 DBW	- more of the same
#	v2.1 860915 DBW - new features (see README)
#	     860823 DBW - Integrated and rewrote lots of code
#	v2.0 860809 DBW	- Major release.. LOTS of changes
# 	v1.1 860720 DBW	- Switches, 80 cols, colors, bug fixes
# 	v1.0 860712 DBW	- First version released
#
#
# Don't forget to define the right compiler (MANX or LATTICE) in VT100.H
#
######################################################################

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

INCL	= vt100.h
#INCL	= 

vt100	: $(OBJS)
	ln -v -o vt100 $(OBJS) -lc

vt100.o	: vt100.c $(INCL)
	cc +Hvt100.syms vt100.c

init.o	: init.c $(INCL)
	cc +Ivt100.syms init.c

window.o : window.c $(INCL)
	cc +Ivt100.syms window.c

xmodem.o : xmodem.c $(INCL)
	cc +Ivt100.syms xmodem.c

remote.o : remote.c $(INCL)
	cc +Ivt100.syms remote.c

kermit.o : kermit.c $(INCL)
	cc +Ivt100.syms kermit.c

script.o : script.c $(INCL)
	cc +Ivt100.syms script.c

expand.o : expand.c $(INCL)
	cc +Ivt100.syms expand.c


