Contents of /trunk/src/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 78 - (show annotations)
Sun Feb 15 12:07:04 2009 UTC (15 years, 3 months ago) by harbaum
File size: 10746 byte(s)
Removal of unused gnomecancas/xml parser code
1 #
2 # Copyright (C) 2008 Till Harbaum <till@harbaum.org>.
3 #
4 # This file is part of OSM2Go.
5 #
6 # OSM2Go is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # OSM2Go is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with OSM2Go. If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 APP = osm2go
21 PREFIX ?= /usr/local
22
23 PKGS = gtk+-2.0 libxml-2.0 goocanvas libcurl gthread-2.0 \
24 gnome-vfs-module-2.0 libgnome-2.0
25
26 OBJS = main.o map.o osm.o osm_api.o wms.o \
27 statusbar.o project.o settings.o pos.o diff.o map_hl.o \
28 iconbar.o info.o icon.o track.o gps.o canvas_goocanvas.o \
29 area_edit.o josm_presets.o relation_edit.o misc.o map_edit.o \
30 josm_elemstyles.o style.o net_io.o banner.o undo.o
31
32 DEFS = -DPACKAGE=\"$(APP)\" -DPREFIX=\"$(PREFIX)\" -DUSE_GOOCANVAS
33 CFLAGS = -Wall -O2 $(DEFS) `pkg-config --cflags $(PKGS)`
34 LDFLAGS = `pkg-config --libs $(PKGS)`
35
36 all: $(APP)
37
38 %.o: %.c
39 gcc $(CFLAGS) -o $@ -c $<
40
41 $(APP): $(OBJS)
42 gcc $(LDFLAGS) -o $@ $(OBJS)
43
44 clean:
45 rm -f osm2go *.o *~ */*~ \#*\# version.h *.bak
46
47 install: $(APP)
48 install $(APP) $(DESTDIR)$(PREFIX)/bin
49
50 -include ../version.mk
51
52 dep: version.h
53 makedepend -Y *.c
54
55 # DO NOT DELETE
56
57 area_edit.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
58 area_edit.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
59 area_edit.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
60 area_edit.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
61 area_edit.o: net_io.h banner.h
62 banner.o: banner.h appdata.h version.h pos.h osm.h canvas.h undo.h map.h
63 banner.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h settings.h
64 banner.o: diff.h iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
65 banner.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
66 banner.o: net_io.h
67 canvas_gnomecanvas.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h
68 canvas_gnomecanvas.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
69 canvas_gnomecanvas.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
70 canvas_gnomecanvas.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
71 canvas_gnomecanvas.o: josm_elemstyles.h style.h net_io.h banner.h
72 canvas_goocanvas.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h
73 canvas_goocanvas.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
74 canvas_goocanvas.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
75 canvas_goocanvas.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
76 canvas_goocanvas.o: josm_elemstyles.h style.h net_io.h banner.h
77 dbus.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
78 dbus.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
79 dbus.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
80 dbus.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
81 dbus.o: banner.h
82 diff.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
83 diff.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
84 diff.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
85 diff.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
86 diff.o: banner.h
87 gps.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
88 gps.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
89 gps.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
90 gps.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
91 gps.o: banner.h
92 icon.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
93 icon.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
94 icon.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
95 icon.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
96 icon.o: banner.h
97 iconbar.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
98 iconbar.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
99 iconbar.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
100 iconbar.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
101 iconbar.o: net_io.h banner.h
102 info.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
103 info.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
104 info.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
105 info.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
106 info.o: banner.h
107 josm_elemstyles.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h
108 josm_elemstyles.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
109 josm_elemstyles.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
110 josm_elemstyles.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
111 josm_elemstyles.o: josm_elemstyles.h style.h net_io.h banner.h
112 josm_presets.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h
113 josm_presets.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
114 josm_presets.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h wms.h
115 josm_presets.o: josm_presets.h relation_edit.h misc.h map_edit.h
116 josm_presets.o: josm_elemstyles.h style.h net_io.h banner.h
117 main.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
118 main.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
119 main.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
120 main.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
121 main.o: banner.h
122 map.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
123 map.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
124 map.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
125 map.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
126 map.o: banner.h
127 map_edit.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
128 map_edit.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
129 map_edit.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
130 map_edit.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
131 map_edit.o: net_io.h banner.h
132 map_hl.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
133 map_hl.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
134 map_hl.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
135 map_hl.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
136 map_hl.o: net_io.h banner.h
137 misc.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
138 misc.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
139 misc.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
140 misc.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
141 misc.o: banner.h
142 net_io.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
143 net_io.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
144 net_io.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
145 net_io.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
146 net_io.o: net_io.h banner.h
147 osm.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
148 osm.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
149 osm.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
150 osm.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
151 osm.o: banner.h
152 osm_api.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
153 osm_api.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
154 osm_api.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
155 osm_api.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
156 osm_api.o: net_io.h banner.h
157 pos.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
158 pos.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
159 pos.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
160 pos.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
161 pos.o: banner.h
162 project.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
163 project.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
164 project.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
165 project.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
166 project.o: net_io.h banner.h
167 relation_edit.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h
168 relation_edit.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
169 relation_edit.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
170 relation_edit.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
171 relation_edit.o: josm_elemstyles.h style.h net_io.h banner.h
172 settings.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
173 settings.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
174 settings.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
175 settings.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
176 settings.o: net_io.h banner.h
177 statusbar.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
178 statusbar.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
179 statusbar.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
180 statusbar.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
181 statusbar.o: net_io.h banner.h
182 style.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
183 style.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
184 style.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
185 style.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
186 style.o: banner.h
187 track.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
188 track.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
189 track.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
190 track.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
191 track.o: banner.h
192 undo.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
193 undo.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
194 undo.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
195 undo.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
196 undo.o: banner.h
197 wms.o: appdata.h version.h pos.h osm.h canvas.h undo.h map.h map_hl.h
198 wms.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
199 wms.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
200 wms.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
201 wms.o: banner.h