rotate-me-fast/Makefile

10 lines
188 B
Makefile
Raw Normal View History

2014-06-18 08:47:10 +02:00
CXX = clang++
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -Werror -g
2014-06-18 08:47:10 +02:00
BUILD_DIR=/tmp
all: rotation.cpp
$(CXX) $(CXXFLAGS) $< -o $(BUILD_DIR)/rotation
clean:
@rm -f *~ *.o .*.swp