#
# This file makes routines that are used everywhere
# 

SITEDIR=/
CC=lc
OPT=-f8 -m2 -O
CFLAGS=-b0 -i$(SITEDIR) -r0 -v $(OPT)


.SUFFIXES:
.SUFFIXES: .o .c
.c.o:
		$(CC) $(CFLAGS) $*.c


default:	all

triptrap:	all

all:		extra.o main.o


extra.o:	extra.c extra.h $(SITEDIR)site.h

main.o:		main.c extra.h $(SITEDIR)site.h

# We don't make `texmf.o', since the TeX and Metafont need to use
# different names, hence they need different .o files.


clean:
		delete extra.o main.o fileio.o QUIET

veryclean:	clean
