CC=g++

PROG=DColl
CPPFLAGS += -I../DIM
LDLIBS += -lpthread

$(PROG): $(PROG).o ../Evidence.o ../DIM/libdim.a

clean:
	@rm -f $(PROG) $(PROG).o
	
