CC=g++

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

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

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