######################################################################
#
# Makefile to build vt100 terminal emulator
#
#	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)
		cc -o vt100 $(OBJS)

vt100.o :	vt100.c $(INCL)
		cc -c $(CFLAGS) vt100.c

init.o :	init.c $(INCL)
		cc -c $(CFLAGS) init.c

window.o :	window.c $(INCL)
		cc -c $(CFLAGS) window.c

xmodem.o :	xmodem.c $(INCL)
		cc -c $(CFLAGS) xmodem.c

remote.o :	remote.c $(INCL)
		cc -c $(CFLAGS) remote.c

kermit.o :	kermit.c $(INCL)
		cc -c $(CFLAGS) kermit.c

script.o :	script.c $(INCL)
		cc -c $(CFLAGS) script.c

expand.o :	expand.c $(INCL)
		cc -c $(CFLAGS) expand.c


