CFLAGS=-g -c -w 
LFLAGS=-g 
CC=g++

test: test.cpp mdispatch.hpp graph.hpp infer_disp.hpp
	${CC} ${LFLAGS} test.cpp -o test

mdispatch.hpp:
graph.hpp:
infer_disp.hpp:

run: all
	./test

all: test

clean:
	rm *~ *.o test core
