
LDFLAGS= -ldadim
CCFLAGS= -g


.cpp.o:
	g++ -c $(CCFLAGS) $< -o $@

test: test.o
	g++ $< $(LDFLAGS) -o $@

run: test
	./test

clean: 
	rm -f test test.exe *~ *.o data.csv

test.o: ../hjm.h