8a17f7b8d8
There is a bug for rotation = pi / 2
10 lines
174 B
Makefile
10 lines
174 B
Makefile
CXX = clang++
|
|
CXXFLAGS = -std=c++11 -W -Wall -O3 #-Werror
|
|
BUILD_DIR=/tmp
|
|
|
|
all: rotation.cpp
|
|
$(CXX) $(CXXFLAGS) $< -o $(BUILD_DIR)/rotation
|
|
|
|
clean:
|
|
@rm -f *~ *.o .*.swp
|