15 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CXX     = clang++
 | 
						|
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -Werror -g
 | 
						|
BUILD_DIR=/tmp
 | 
						|
 | 
						|
all: rotation.cpp
 | 
						|
	$(CXX) $(CXXFLAGS) $< -o $(BUILD_DIR)/rotation
 | 
						|
 | 
						|
clean:
 | 
						|
	@rm -f *~ *.o .*.swp *.ppm
 | 
						|
 | 
						|
run: all
 | 
						|
	$(BUILD_DIR)/rotation img/lena.ppm
 | 
						|
 | 
						|
cachegrind: all
 | 
						|
	valgrind --tool=cachegrind $(BUILD_DIR)/rotation img/lena.ppm
 |