mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			471 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			471 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| SOURCES =	ApproxTests.cpp \
 | |
| 			ClassTests.cpp \
 | |
| 			ConditionTests.cpp \
 | |
|       		ExceptionTests.cpp \
 | |
|       		GeneratorTests.cpp \
 | |
|       		MessageTests.cpp \
 | |
|       		MiscTests.cpp \
 | |
|       		TestMain.cpp \
 | |
|       		TrickyTests.cpp \
 | |
|       		BDDTests.cpp \
 | |
|       		VariadicMacrosTests.cpp \
 | |
|       		catch_self_test.cpp
 | |
| OBJECTS    = $(patsubst %.cpp, %.o, $(SOURCES))
 | |
| CXX = g++
 | |
| CXXFLAGS  = -I../../include
 | |
| 
 | |
| CatchSelfTest: $(OBJECTS)
 | |
| 	$(CXX) -o $@ $^
 | |
| 
 | |
| clean:
 | |
| 	rm -f $(OBJECTS)
 | 
