# usage:
# make produces a program $EXECNAME.
# make clean cleans up.


# Set your compiler here
CPP=g++
# Set your compiler flags here
CPPFLAGS= -c -Wall
# Set your executable name here
EXECNAME = match
# Set your rm here
RM=rm

all:
	$(CPP) $(CPPFLAGS) graph_interface.c -o $(EXECNAME).o
	$(CPP) $(EXECNAME).o	 -o $(EXECNAME)
clean:
	rm  *.o $(EXECNAME)
