Fix CI scripts.

This commit is contained in:
Syoyo Fujita
2016-04-18 17:59:17 +09:00
parent 1e663342bf
commit 90d33c33c0
3 changed files with 8 additions and 14 deletions

View File

@@ -1,7 +1,10 @@
.PHONY: clean
CXX ?= g++
CXXFLAGS ?= -g -O2
tester: tester.cc
g++ -g -O0 -o tester tester.cc
$(CXX) $(CXXFLAGS) -o tester tester.cc
all: tester