
CCFLAGS= -I$(DADIM) -g
LDFLAGS= $(DADIM)/dadim.a

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

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

run: test2
	./test2

clean: 
	rm -f test2 test2.exe test2.o *~
