summaryrefslogtreecommitdiff
path: root/src/piraha/Makefile
blob: 45e4f4dc4e8545a9fd76278a8de5c7e9dc4948a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Build the standalone tool
#
CXX = g++
CXXFLAGS =  -Wall -Wreturn-type
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
	$(CXX) -I . -g -o generic $(SRCS)

clean :
	rm -f generic