CXX = g++ CXXFLAGS = -std=c++11 -Wall -O2 -fsanitize=address -fsanitize=undefined LDLIBS = -l:libboost_unit_test_framework.a test_mwmatching: test_mwmatching.cpp mwmatching.h $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS) .PHONY: clean clean: $(RM) test_mwmatching