COMMON := ../../common
include $(COMMON)/Makefile

.PHONY: all clean

all: match.o 

match.o: match.h match.c

clean:
	rm -fr *.o
