CC=g++

PROG=sqm
CPPFLAGS += -I../DIM/dim
LDLIBS += -lpthread

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

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