# Makefile for semiautomatically translated gftype
# This will go away eventually when the MFware have been added to
# web2c's repetoire.

OPT=-O
CFLAGS=$(OPT)
LDFLAGS=-s

gftype:		gftype.o extra.o
		$(CC) $(CFLAGS) $(LDFLAGS) -o gftype gftype.o extra.o
gftype.o:	gftype.c mf.h mf_vars.h
extra.o:	extra.c mf.h mf_vars.h
