Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Contents of /trunk/src/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 359 - (show annotations) (download)
Sat Apr 10 18:33:20 2010 UTC (14 years, 11 months ago) by amb
File size: 2705 byte(s)
Added file of translations and language selection.

1 # $Header: /home/amb/CVS/routino/src/Makefile,v 1.30 2010-04-10 18:33:20 amb Exp $
2 #
3 # Source code Makefile
4 #
5 # Part of the Routino routing software.
6 #
7 # This file Copyright 2008-2010 Andrew M. Bishop
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU Affero General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU Affero General Public License for more details.
18 #
19 # You should have received a copy of the GNU Affero General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #
22
23 # Programs
24
25 CC=gcc
26 LD=gcc
27
28 LEX=flex
29
30 # Program options
31
32 CFLAGS=-Wall -Wmissing-prototypes
33 #CFLAGS+= -Wextra -pedantic -std=c99
34 LDFLAGS=-lm -lc
35
36 CFLAGS+= -O3
37 CFLAGS+= -O0 -g
38 #CFLAGS+= -pg
39 #CFLAGS+= --coverage
40
41 LDFLAGS+=
42 #LDFLAGS+= -pg -static
43 #LDFLAGS+= --coverage
44
45 LEXFLAGS=
46
47 # Compilation targets
48
49 C=$(wildcard *.c)
50 D=$(foreach f,$(C),$(addprefix .deps/,$(addsuffix .d,$(basename $f))))
51
52 EXE=planetsplitter filedumper router
53
54 ########
55
56 all : $(EXE)
57 -[ -d ../web/bin ] && cp $(EXE) ../web/bin
58 cd xml && $(MAKE) CC="$(CC)" LD="$(LD)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
59
60 ########
61
62 PLANETSPLITTER_OBJ=planetsplitter.o \
63 nodesx.o segmentsx.o waysx.o superx.o \
64 ways.o \
65 files.o \
66 results.o queue.o sorting.o \
67 osmparser.o
68
69 planetsplitter : $(PLANETSPLITTER_OBJ)
70 $(LD) $(PLANETSPLITTER_OBJ) -o $@ $(LDFLAGS)
71
72 ########
73
74 FILEDUMPER_OBJ=filedumper.o \
75 nodes.o segments.o ways.o \
76 files.o \
77 visualiser.o
78
79 filedumper : $(FILEDUMPER_OBJ)
80 $(LD) $(FILEDUMPER_OBJ) -o $@ $(LDFLAGS)
81
82 ########
83
84 ROUTER_OBJ=router.o \
85 nodes.o segments.o ways.o \
86 files.o profiles.o xmlparse.o \
87 optimiser.o output.o results.o queue.o translations.o
88
89 router : $(ROUTER_OBJ)
90 $(LD) $(ROUTER_OBJ) -o $@ $(LDFLAGS)
91
92 ########
93
94 xmlparse.c : xmlparse.l
95 $(LEX) $(LEXFLAGS) $<
96 -@mv lex.yy.c xmlparse.c
97 @echo Created xmlparse.c
98
99 ########
100
101 %.o : %.c
102 $(CC) -c $(CFLAGS) $< -o $@ -MMD -MP -MF $(addprefix .deps/,$(addsuffix .d,$(basename $<)))
103
104 ########
105
106 clean:
107 rm -f *.o
108 rm -f *~
109 cd xml && $(MAKE) clean
110
111 ########
112
113 distclean: clean
114 -[ -d ../web/bin ] && cd ../web/bin/ && rm -f $(EXE)
115 -rm -f $(EXE)
116 -rm -f $(D)
117 -rm -fr .deps
118 cd xml && $(MAKE) distclean
119
120 ########
121
122 .deps : .FORCE
123 @[ -d .deps ] || mkdir $@
124
125 $(D) : .deps
126 @touch $@
127
128 include $(D)
129
130 ########
131
132 .FORCE :

Properties

Name Value
cvs:description Makefile.