Tizen 2.1 base
[external/ragel.git] / common / Makefile.in
1 #
2 #   Copyright 2001-2006 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 = -Iaapl
22 DEFS =
23
24 CFLAGS = -g -Wall
25 LDFLAGS =
26
27 SUBDIRS = codegen test examples doc
28
29 CC_SRCS = \
30         rlparse.cpp rlscan.cpp main.cpp parsetree.cpp \
31         parsedata.cpp fsmstate.cpp fsmbase.cpp fsmattach.cpp \
32         fsmmin.cpp fsmgraph.cpp fsmap.cpp xmlcodegen.cpp
33
34 GEN_SRC = version.h
35
36 LIBS = @LIBS@
37 PREFIX = @prefix@
38
39 #*************************************
40
41 include ../version.mk
42
43 # Programs
44 CXX = @CXX@
45
46 # What kind of header does bison put out?
47 BISON_HEAD_SUFFIX = @BISON_HEAD_SUFFIX@
48
49 # Get objects and dependencies from sources.
50 RAGEL_OBJS = $(RAGEL_CC_SRCS:%.cpp=%.o)
51 RLCG_OBJS = $(RLCG_CC_SRCS:%.cpp=%.o)
52 DEPS = $(RAGEL_CC_SRCS:%.cpp=.%.d) $(RLCG_CC_SRCS:%.cpp=.%.d)
53
54 # Rules.
55 all: $(GEN_SRC)
56
57 version.h: ../version.mk
58         echo '#define VERSION "$(VERSION)"' > version.h
59         echo '#define PUBDATE "$(PUBDATE)"' >> version.h
60
61 %.o: %.cpp
62         @$(CXX) -M $(DEFS) $(INCS) $< > .$*.d
63         $(CXX) -c $(CFLAGS) $(DEFS) $(INCS) -o $@ $<
64
65 distclean: clean
66         rm -f Makefile config.h
67
68 clean:
69         rm -f tags .*.d *.o version.h
70
71 -include $(DEPS)