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

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

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

clean: 
	rm -f test1 test1.o
