Initial commit
This commit is contained in:
commit
4bf69e8204
5 changed files with 500 additions and 0 deletions
9
Makefile
Normal file
9
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue