##############################################
# Makefile for expierimental fmtdump program #
#					     #
# Tim Morgan  4/26/88			     #
##############################################

SITEDIR=..
OPT=-O
CFLAGS=$(OPT) -I$(SITEDIR)
LDFLAGS=-s

fmtdump:	fmtdump.c texd.h tex.h memory.h ${SITEDIR}/site.h coerce.h
		$(CC) $(CFLAGS) $(LDFLAGS) -o fmtdump fmtdump.c

texd.h:		../ctex/texd.h
		cp ../ctex/texd.h .
tex.h:		../ctex/tex.h
		cp ../ctex/tex.h .
coerce.h:	../ctex/coerce.h
		cp ../ctex/coerce.h .
