#submakefile

CC = g++

CPPFLAGS = -g

OUTPUT= prop_test

OBJS = testpropaccum.o dll.o propaccumulator.o

compiler : $(OBJS)
	$(CC) $(CPPFLAGS) $(OBJS) -o $(OUTPUT) 
%.o: %.cpp
	$(CC) $(CPPFLAGS) -c $<


clean :
	-rm $(OUTPUT)
	-rm $(OBJS)
	-rm *.o





