
# Makefile for library files by C.W. Kessler 04/95

STUFF=README Makefile
DELFILES=fcc.dvi fcc.ps fcc.log fcc.aux

all:    fcc.ps

fcc.dvi:		fcc.tex
	latex fcc ; latex fcc

fcc.ps: fcc.dvi
	dvips fcc

clean:
	rm -f $(DELFILES)

