# Makefile for c3eval.  The Crypt(3) Evaluation Engine. 
# copyRITE 1996, a guild production 
# daemon9

LIBS = -lm

c3eval: c3eval.c $(LIBS) 

install: c3eval
	install -m755 c3eval /usr/bin
	install -s c3eval /usr/bin
clean:
	rm -f *.o c3eval

