Clean Makefile indentation.

This commit is contained in:
Fabien Freling 2014-07-16 22:07:30 +02:00
parent c918ca5504
commit 20055e22c5
2 changed files with 5 additions and 6 deletions

View file

@ -1,8 +1,8 @@
CXX = clang++
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror
DEFINES = -DSIMD
BUILD_DIR=/tmp
IMG=img/lena.ppm
CXX = clang++
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror
DEFINES = -DSIMD
BUILD_DIR = /tmp
IMG = img/lena.ppm
all: rotation.cpp
$(CXX) $(CXXFLAGS) $(DEFINES) $< -o $(BUILD_DIR)/rotation