# *** Note ***  Compilation will go faster if you have the libraries in
# RamDisk.  This makefile lets the user decide if they wish to have it there
# or not
#
SRC = vt100.c init.c window.c xmodem.c remote.c kermit.c
OBJ = vt100.o init.o window.o xmodem.o remote.o kermit.o
HDR = vt100.h

all: vt100

vt100: $(OBJ)
	ln -v -w -o vt100 $(OBJ) -lc

vt100.syms: vt100.h
	echo

vt100.o: vt100.c vt100.h
	cc +Hvt100.syms vt100.c

init.o: init.c vt100.syms vt100.h
	cc +Ivt100.syms init.c

window.o: window.c vt100.syms vt100.h
	cc +Ivt100.syms window.c

xmodem.o: xmodem.c vt100.syms vt100.h
	cc +Ivt100.syms xmodem.c

remote.o: remote.c vt100.syms vt100.h
	cc +Ivt100.syms remote.c

kermit.o: kermit.c vt100.syms vt100.h
	cc +Ivt100.syms kermit.c
