mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 01:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
GCC=g++
 | 
						|
 | 
						|
all: strops_test slice_test
 | 
						|
 | 
						|
slice_test: slice_test.cpp ../slice_array.hpp
 | 
						|
	$(GCC) $< -o $@
 | 
						|
 | 
						|
strops_test: strops_test.cpp ../stringops.hpp ../stringops.cpp
 | 
						|
	$(GCC) $< -o $@ ../stringops.cpp
 | 
						|
 | 
						|
clean:
 | 
						|
	rm *_test
 |