EXAMPLES =	e_example matrix hilbert pi_example itsyst \
		swanseatest swanseatest-2 mp_extension



CXXFLAGS = -O2 -Wall -I.. -I../backend_includes $(OPTION) 
CXX = g++

LOADLIBES = -L.. -lREALS -lm 

all: $(EXAMPLES) 

$(EXAMPLES) : ../libREALS.a

clean:
	rm -f *.o gmon.out $(EXAMPLES)

