rotate-me-fast/Makefile
Fabien Freling 8a17f7b8d8 Draw rotated outlines.
There is a bug for rotation = pi / 2
2014-06-19 00:05:49 +02:00

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