#$Id: makefile,v 1.16 1995/01/16 09:15:41 rl Rel $
#
#	pp - pretty printer
#
#	Author:
#		Dr. Zvi Har'El,
#		Department of Mathematics,
#		Technion, Israel Institute of Technology,
#		Haifa 32000, Israel.
#		E-Mail: rl@math.technion.ac.il

#################
# Configuration #
#################

#	Lexical Analyzer:
#	either Gnu's
LEX =		flex
LIB =		-lfl	
#	or
#LEX =		lex
#LIB =		-ll

#	C Compiler:
#	either Gnu's
CC =		gcc
#	or
#CC =		cc

#	Typesetting Program:
#	either Gnu's
OFF =		-DTROFF=\"groff\"
#	or ditroff with alternate fonts
#OFF =		-DTROFF=\"troff_p\" -DALT_FONTS 
#	or
#OFF =

#	Debugging/Optimization Options:
# either Gnu's
OPT =		-g -O
#	or
#OPT =

#########
# RULES #
#########

pp:	pp.c
	$(CC) $(OFF) $(OPT) pp.c $(LIB) -o pp

pp.c:	pp.l
	$(LEX) -t pp.l >pp.c
