CC=g++

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

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

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