#  Makefile for TeXtyl
#	Tue May 26 1987    John S. Renner
#  be sure to edit texpaths.h to reflect local directory conventions
#    before compiling
textyl: textyl.pas tylext.o tylext.h
	/lib/cpp -P  textyl.pas textyl.p
	pc -w  -c  textyl.p
	rm -f textyl.p
	pc  -o textyl textyl.o tylext.o

SRCS = textyl.pas.aa textyl.pas.ab textyl.pas.ac \
	textyl.pas.ad textyl.pas.ae textyl.pas.af \
	textyl.pas.ag textyl.pas.ah

textyl.pas: $(SRCS)
	cat $(SRCS) > textyl.pas

tylext.o: tylext.c texpaths.h h00vars.h
	cc -c tylext.c

clean:
	/bin/rm  -f  *.o textyl.p

