Contents of /trunk/src/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 143 - (show annotations)
Tue Mar 24 13:22:57 2009 UTC (15 years, 2 months ago) by harbaum
File size: 10447 byte(s)
Basics of canvas internal object detection
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 = @PACKAGE@
21 PREFIX ?= @prefix@
22 EXTRA_OBJS = @EXTRA_OBJS@
23 VERSION = $${VERSION_PREFIX}@PACKAGE_VERSION@$${VERSION_SUFFIX}
24
25 bindir = @bindir@
26
27
28 OBJS = main.o map.o osm.o osm_api.o wms.o \
29 statusbar.o project.o settings.o pos.o diff.o map_hl.o \
30 iconbar.o info.o icon.o track.o gps.o canvas_goocanvas.o \
31 area_edit.o josm_presets.o relation_edit.o misc.o map_edit.o \
32 josm_elemstyles.o style.o net_io.o banner.o undo.o canvas.o \
33 $(EXTRA_OBJS)
34
35 DEFS = -DPACKAGE=\"$(APP)\" -DPREFIX=\"@prefix@\" -DVERSION=\"$(VERSION)\"
36 CFLAGS = -Wall $(DEFS) @CFLAGS@
37 LDFLAGS = @LIBS@
38
39 all: $(APP)
40
41 %.o: %.c
42 gcc $(CFLAGS) -o $@ -c $<
43
44 $(APP): $(OBJS)
45 gcc $(LDFLAGS) -o $@ $(OBJS)
46
47 clean:
48 rm -f osm2go *.o *~ */*~ \#*\# version.h *.bak
49
50 install: $(APP)
51 install -d $(DESTDIR)$(PREFIX)$(bindir)
52 install $(APP) $(DESTDIR)$(PREFIX)$(bindir)
53
54 # DO NOT DELETE
55
56 area_edit.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
57 area_edit.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
58 area_edit.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
59 area_edit.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
60 area_edit.o: net_io.h banner.h
61 banner.o: banner.h appdata.h pos.h osm.h canvas.h undo.h map.h
62 banner.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h settings.h
63 banner.o: diff.h iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
64 banner.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
65 banner.o: net_io.h
66 canvas_gnomecanvas.o: appdata.h pos.h osm.h canvas.h undo.h map.h
67 canvas_gnomecanvas.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
68 canvas_gnomecanvas.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
69 canvas_gnomecanvas.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
70 canvas_gnomecanvas.o: josm_elemstyles.h style.h net_io.h banner.h
71 canvas_goocanvas.o: appdata.h pos.h osm.h canvas.h undo.h map.h
72 canvas_goocanvas.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
73 canvas_goocanvas.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
74 canvas_goocanvas.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
75 canvas_goocanvas.o: josm_elemstyles.h style.h net_io.h banner.h
76 dbus.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
77 dbus.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
78 dbus.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
79 dbus.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
80 dbus.o: banner.h
81 diff.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
82 diff.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
83 diff.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
84 diff.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
85 diff.o: banner.h
86 gps.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
87 gps.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
88 gps.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
89 gps.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
90 gps.o: banner.h
91 icon.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
92 icon.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
93 icon.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
94 icon.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
95 icon.o: banner.h
96 iconbar.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
97 iconbar.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
98 iconbar.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
99 iconbar.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
100 iconbar.o: net_io.h banner.h
101 info.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
102 info.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
103 info.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
104 info.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
105 info.o: banner.h
106 josm_elemstyles.o: appdata.h pos.h osm.h canvas.h undo.h map.h
107 josm_elemstyles.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
108 josm_elemstyles.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
109 josm_elemstyles.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
110 josm_elemstyles.o: josm_elemstyles.h style.h net_io.h banner.h
111 josm_presets.o: appdata.h pos.h osm.h canvas.h undo.h map.h
112 josm_presets.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
113 josm_presets.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h wms.h
114 josm_presets.o: josm_presets.h relation_edit.h misc.h map_edit.h
115 josm_presets.o: josm_elemstyles.h style.h net_io.h banner.h
116 main.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
117 main.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
118 main.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
119 main.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
120 main.o: banner.h
121 map.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
122 map.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
123 map.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
124 map.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
125 map.o: banner.h
126 map_edit.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
127 map_edit.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
128 map_edit.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
129 map_edit.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
130 map_edit.o: net_io.h banner.h
131 map_hl.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
132 map_hl.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
133 map_hl.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
134 map_hl.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
135 map_hl.o: net_io.h banner.h
136 misc.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
137 misc.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
138 misc.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
139 misc.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
140 misc.o: banner.h
141 net_io.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
142 net_io.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
143 net_io.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
144 net_io.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
145 net_io.o: net_io.h banner.h
146 osm.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
147 osm.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
148 osm.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
149 osm.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
150 osm.o: banner.h
151 osm_api.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
152 osm_api.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
153 osm_api.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
154 osm_api.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
155 osm_api.o: net_io.h banner.h
156 pos.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
157 pos.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
158 pos.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
159 pos.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
160 pos.o: banner.h
161 project.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
162 project.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
163 project.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
164 project.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
165 project.o: net_io.h banner.h
166 relation_edit.o: appdata.h pos.h osm.h canvas.h undo.h map.h
167 relation_edit.o: map_hl.h osm_api.h project.h statusbar.h area_edit.h
168 relation_edit.o: settings.h diff.h iconbar.h icon.h info.h track.h gps.h
169 relation_edit.o: wms.h josm_presets.h relation_edit.h misc.h map_edit.h
170 relation_edit.o: josm_elemstyles.h style.h net_io.h banner.h
171 settings.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
172 settings.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
173 settings.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
174 settings.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
175 settings.o: net_io.h banner.h
176 statusbar.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
177 statusbar.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
178 statusbar.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
179 statusbar.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h
180 statusbar.o: net_io.h banner.h
181 style.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
182 style.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
183 style.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
184 style.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
185 style.o: banner.h
186 track.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
187 track.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
188 track.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
189 track.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
190 track.o: banner.h
191 undo.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
192 undo.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
193 undo.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
194 undo.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
195 undo.o: banner.h
196 wms.o: appdata.h pos.h osm.h canvas.h undo.h map.h map_hl.h
197 wms.o: osm_api.h project.h statusbar.h area_edit.h settings.h diff.h
198 wms.o: iconbar.h icon.h info.h track.h gps.h wms.h josm_presets.h
199 wms.o: relation_edit.h misc.h map_edit.h josm_elemstyles.h style.h net_io.h
200 wms.o: banner.h