#
#  This makefile works for building on june
#
HOME = ../..
WFF = ${HOME}/wff

# Add -DBINARY to accept input in binary instead of ascii

CFLAGS =  -O -I$(WFF)/include -DTRUE=1 -DFALSE=0 -DREAL=double 


RENAISSANCE = ..
LIBS = $(RENAISSANCE)/Lib/libgraphics.a \
       $(RENAISSANCE)/Chaucer/interpreter.a \
	 -ll -lm

WFF.O = $(WFF)/bin/wff.o

OBJ = Cdf.o CubicFilter.o null.o \
	${WFF.O} 

Reconstruct: Reconstruct.o ${OBJ}
	${CC} ${CFLAGS} -o Reconstruct Reconstruct.o ${OBJ} ${LIBS}



