# Get the macros used to build the simulation library
include ../../make.inc
INCLUDE += -I../../src

example: 
	$(CXX) $(CFLAGS) $(INCLUDE) sim.cpp -L../../src -lthyme $(LIBS) 

clean:
	rm -f *.o a.out *.dat *.gnu
