Routino SVN Repository Browser

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

ViewVC logotype

Annotation of /trunk/src/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 397 - (hide annotations) (download)
Tue May 18 18:39:37 2010 UTC (14 years, 10 months ago) by amb
File size: 3042 byte(s)
Add tagmodifier program.

1 amb 397 # $Header: /home/amb/CVS/routino/src/Makefile,v 1.33 2010-05-18 18:39:37 amb Exp $
2 amb 2 #
3 amb 333 # Source code Makefile
4 amb 2 #
5 amb 151 # Part of the Routino routing software.
6 amb 2 #
7 amb 333 # This file Copyright 2008-2010 Andrew M. Bishop
8 amb 151 #
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 amb 2
23     # Programs
24    
25     CC=gcc
26     LD=gcc
27    
28 amb 333 LEX=flex
29    
30 amb 2 # Program options
31    
32 amb 240 CFLAGS=-Wall -Wmissing-prototypes
33     #CFLAGS+= -Wextra -pedantic -std=c99
34     LDFLAGS=-lm -lc
35 amb 2
36 amb 240 CFLAGS+= -O3
37 amb 359 CFLAGS+= -O0 -g
38 amb 240 #CFLAGS+= -pg
39     #CFLAGS+= --coverage
40    
41     LDFLAGS+=
42     #LDFLAGS+= -pg -static
43     #LDFLAGS+= --coverage
44    
45 amb 333 LEXFLAGS=
46    
47 amb 384 # Required to use stdio with files > 2GiB on 32-bit system.
48    
49     FLAGS64=-D_FILE_OFFSET_BITS=64
50    
51 amb 2 # Compilation targets
52    
53     C=$(wildcard *.c)
54 amb 91 D=$(foreach f,$(C),$(addprefix .deps/,$(addsuffix .d,$(basename $f))))
55 amb 2
56 amb 397 EXE=planetsplitter router filedumper tagmodifier
57 amb 333
58 amb 2 ########
59    
60     all : $(EXE)
61 amb 312 -[ -d ../web/bin ] && cp $(EXE) ../web/bin
62 amb 340 cd xml && $(MAKE) CC="$(CC)" LD="$(LD)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
63 amb 2
64     ########
65    
66 amb 161 PLANETSPLITTER_OBJ=planetsplitter.o \
67     nodesx.o segmentsx.o waysx.o superx.o \
68 amb 365 ways.o types.o \
69 amb 353 files.o \
70 amb 333 results.o queue.o sorting.o \
71 amb 397 xmlparse.o tagging.o osmparser.o
72 amb 2
73     planetsplitter : $(PLANETSPLITTER_OBJ)
74     $(LD) $(PLANETSPLITTER_OBJ) -o $@ $(LDFLAGS)
75    
76     ########
77    
78 amb 397 ROUTER_OBJ=router.o \
79     nodes.o segments.o ways.o types.o \
80     files.o profiles.o xmlparse.o \
81     optimiser.o output.o results.o queue.o translations.o
82    
83     router : $(ROUTER_OBJ)
84     $(LD) $(ROUTER_OBJ) -o $@ $(LDFLAGS)
85    
86     ########
87    
88 amb 161 FILEDUMPER_OBJ=filedumper.o \
89 amb 365 nodes.o segments.o ways.o types.o \
90 amb 186 files.o \
91     visualiser.o
92 amb 2
93     filedumper : $(FILEDUMPER_OBJ)
94     $(LD) $(FILEDUMPER_OBJ) -o $@ $(LDFLAGS)
95    
96     ########
97    
98 amb 397 TAGMODIFIER_OBJ=tagmodifier.o \
99     files.o \
100     xmlparse.o tagging.o
101 amb 2
102 amb 397 tagmodifier : $(TAGMODIFIER_OBJ)
103     $(LD) $(TAGMODIFIER_OBJ) -o $@ $(LDFLAGS)
104 amb 2
105     ########
106    
107 amb 333 xmlparse.c : xmlparse.l
108 amb 353 $(LEX) $(LEXFLAGS) $<
109 amb 333 -@mv lex.yy.c xmlparse.c
110     @echo Created xmlparse.c
111    
112     ########
113    
114 amb 2 %.o : %.c
115 amb 384 $(CC) -c $(CFLAGS) $(FLAGS64) $< -o $@ -MMD -MP -MF $(addprefix .deps/,$(addsuffix .d,$(basename $<)))
116 amb 2
117     ########
118    
119     clean:
120     rm -f *.o
121     rm -f *~
122 amb 340 cd xml && $(MAKE) clean
123 amb 2
124     ########
125    
126     distclean: clean
127 amb 192 -[ -d ../web/bin ] && cd ../web/bin/ && rm -f $(EXE)
128 amb 2 -rm -f $(EXE)
129     -rm -f $(D)
130 amb 153 -rm -fr .deps
131 amb 340 cd xml && $(MAKE) distclean
132 amb 2
133     ########
134    
135 amb 91 .deps : .FORCE
136 amb 94 @[ -d .deps ] || mkdir $@
137 amb 91
138 amb 353 $(D) : .deps
139 amb 2 @touch $@
140    
141     include $(D)
142    
143     ########
144    
145     .FORCE :

Properties

Name Value
cvs:description Makefile.