mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			410 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			410 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SOURCES		= ApproxTests.cpp ClassTests.cpp ConditionTests.cpp \
 | 
						|
		  ExceptionTests.cpp GeneratorTests.cpp MessageTests.cpp \
 | 
						|
		  MiscTests.cpp TestMain.cpp TrickyTests.cpp \
 | 
						|
		  catch_self_test.cpp
 | 
						|
OBJECTS		= $(patsubst %.cpp, %.o, $(SOURCES))
 | 
						|
 | 
						|
CXXFLAGS	= -I../../include
 | 
						|
 | 
						|
main: $(OBJECTS)
 | 
						|
	$(CXX) -o $@ $^
 | 
						|
 | 
						|
junit: main
 | 
						|
	-./main -r junit > junit.xml
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f $(OBJECTS) main junit.xml
 | 
						|
 | 
						|
.PHONY: main junit
 |