Initial commit

This commit is contained in:
Fabien Freling 2014-06-18 08:47:10 +02:00
commit 4bf69e8204
5 changed files with 500 additions and 0 deletions

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
CXX = clang++
CXXFLAGS = -std=c++11 -W -Wall -Werror -O3
BUILD_DIR=/tmp
all: rotation.cpp
$(CXX) $(CXXFLAGS) $< -o $(BUILD_DIR)/rotation
clean:
@rm -f *~ *.o .*.swp