summaryrefslogtreecommitdiff
path: root/src/piraha/Makefile
diff options
context:
space:
mode:
authorsbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-02-26 22:45:13 +0000
committersbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2013-02-26 22:45:13 +0000
commit8735c439a15ed19e666922981efb63ca56b7fd32 (patch)
treedbb53fa7738ad77166921e6e81a321bd2f86787e /src/piraha/Makefile
parent2808b605fea61bbd9ff50a46020061579fb19f41 (diff)
Fix a namespace issue
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4967 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/piraha/Makefile')
-rw-r--r--src/piraha/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/piraha/Makefile b/src/piraha/Makefile
index 4463a251..7528fc54 100644
--- a/src/piraha/Makefile
+++ b/src/piraha/Makefile
@@ -1,12 +1,14 @@
# Build the standalone tool
#
+CXX = g++
+CXXFLAGS = -Wall
SRCS = AutoGrammar.cc Bracket.cc Dot.cc End.cc \
Generic.cc Grammar.cc Group.cc ILiteral.cc \
Literal.cc Lookup.cc Matcher.cc Multi.cc \
Or.cc ReParse.cc Seq.cc smart_ptr.cc Start.cc
generic : $(SRCS) Piraha.hpp smart_ptr.hpp
- g++ -Wall -I . -g -o generic $(SRCS)
+ $(CXX) -I . -g -o generic $(SRCS)
clean :
rm -f generic