13 lines
		
	
	
		
			285 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			Makefile
		
	
	
	
| 
 | |
| 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
 | |
| 
 |