If the condition embedding code runs out of available characters in the
[external/ragel.git] / ragel / Makefile.in
1 #
2 #   Copyright 2001-2007 Adrian Thurston <thurston@cs.queensu.ca>
3 #
4
5 #   This file is part of Ragel.
6 #
7 #   Ragel is free software; you can redistribute it and/or modify
8 #   it under the terms of the GNU General Public License as published by
9 #   the Free Software Foundation; either version 2 of the License, or
10 #   (at your option) any later version.
11 #
12 #   Ragel is distributed in the hope that it will be useful,
13 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #   GNU General Public License for more details.
16 #
17 #   You should have received a copy of the GNU General Public License
18 #   along with Ragel; if not, write to the Free Software
19 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
20
21 INCS += -I../common -I../aapl
22 DEFS +=
23
24 CFLAGS += -g -Wall
25 LDFLAGS +=
26
27 CC_SRCS = \
28         main.cpp parsetree.cpp parsedata.cpp fsmstate.cpp fsmbase.cpp \
29         fsmattach.cpp fsmmin.cpp fsmgraph.cpp fsmap.cpp xmlcodegen.cpp \
30         rlscan.cpp rlparse.cpp
31
32 GEN_SRC = rlscan.cpp rlparse.h rlparse.cpp
33
34 LIBS = ../common/common.a
35
36 #*************************************
37
38 prefix = @prefix@
39
40 BUILD_PARSERS = @BUILD_PARSERS@
41
42 # Programs
43 CXX = @CXX@
44
45 # Get objects and dependencies from sources.
46 OBJS = $(CC_SRCS:%.cpp=%.o)
47 DEPS = $(CC_SRCS:%.cpp=.%.d)
48
49 # Rules.
50 all: ragel
51
52 ragel: $(GEN_SRC) $(OBJS) $(LIBS)
53         $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
54
55 ifeq ($(BUILD_PARSERS),true)
56
57 rlparse.h: rlparse.kh
58         kelbt -o $@ $<
59
60 rlparse.cpp: rlparse.kl rlparse.kh
61         kelbt -o $@ $<
62
63 # This dependency comes from the import of the parser defines
64 # into the scanner.
65 rlscan.cpp: rlparse.h
66
67 rlscan.cpp: rlscan.rl
68         ragel $< | rlgen-cd -G2 -o $@
69
70 endif
71
72 %.o: %.cpp
73         @$(CXX) -M $(DEFS) $(INCS) $< > .$*.d
74         $(CXX) -c $(CFLAGS) $(DEFS) $(INCS) -o $@ $<
75
76 distclean: clean
77         rm -f Makefile 
78
79 ifeq ($(BUILD_PARSERS),true)
80 EXTRA_CLEAN = $(GEN_SRC)
81 endif
82
83 clean:
84         rm -f tags .*.d *.o ragel $(EXTRA_CLEAN)
85
86 install: all
87         install -d $(prefix)/bin
88         install -s ragel $(prefix)/bin/ragel
89
90 -include $(DEPS)