# 
#	FIG : Facility for Interactive Generation of figures
#
HEADERS = const.h object.h choices.h

CFLAGS =  -O

LIBS = -lsuntool -lsunwindow -lpixrect -lm


fig2tex : fig2tex.c $(HEADERS)
	cc $(CFLAGS) fig2tex.c -lm -o fig2tex 

install : fig2tex
	install -s -m 775 fig2tex /usr/local

#########
clean : 
	rm -f *.o fig2tex core

