]> git.ipfire.org Git - people/ms/libloc.git/blob - Makefile.am
perl: Verify database when it is being opened
[people/ms/libloc.git] / Makefile.am
1 EXTRA_DIST =
2 CLEANFILES =
3 INSTALL_DIRS =
4 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
5 AM_MAKEFLAGS = --no-print-directory
6
7 SUBDIRS = . po
8 BINDINGS =
9
10 OS = $(shell uname -s)
11
12 DEBIAN_TARBALL_NAME = $(PACKAGE_NAME)_$(PACKAGE_VERSION).orig.tar.xz
13
14 CLEANFILES += \
15 $(DEBIAN_TARBALL_NAME)
16
17 if ENABLE_PERL
18 BINDINGS += perl
19 endif
20
21 AM_CPPFLAGS = \
22 -include $(top_builddir)/config.h \
23 -DSYSCONFDIR=\""$(sysconfdir)"\" \
24 -I${top_srcdir}/src
25
26 AM_CFLAGS = ${my_CFLAGS} \
27 -ffunction-sections \
28 -fdata-sections
29
30 AM_LDFLAGS =
31
32 # leaving a space here to work around automake's conditionals
33 ifeq ($(OS),Darwin)
34 AM_LDFLAGS += -Wl,-dead_strip
35 else
36 AM_LDFLAGS += \
37 -Wl,--as-needed \
38 -Wl,--gc-sections
39 endif
40
41 LIBLOC_CURRENT=0
42 LIBLOC_REVISION=0
43 LIBLOC_AGE=0
44
45 DISTCHECK_CONFIGURE_FLAGS = \
46 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
47
48 SED_PROCESS = \
49 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(SED) \
50 -e 's,@VERSION\@,$(VERSION),g' \
51 -e 's,@prefix\@,$(prefix),g' \
52 -e 's,@exec_prefix\@,$(exec_prefix),g' \
53 -e 's,@bindir\@,$(bindir),g' \
54 -e 's,@libdir\@,$(libdir),g' \
55 -e 's,@includedir\@,$(includedir),g' \
56 -e 's,@databasedir\@,$(databasedir),g' \
57 < $< > $@ || rm $@
58
59 databasedir = $(datadir)/location
60 pkgconfigdir = $(libdir)/pkgconfig
61
62 %: %.in Makefile
63 $(SED_PROCESS)
64
65 @INTLTOOL_POLICY_RULE@
66
67 # ------------------------------------------------------------------------------
68
69 AM_V_ASCIIDOC = $(AM_V_ASCIIDOC_$(V))
70 AM_V_ASCIIDOC_ = $(AM_V_ASCIIDOC_$(AM_DEFAULT_VERBOSITY))
71 AM_V_ASCIIDOC_0 = @echo " ASCIIDOC" $@;
72
73 AM_V_XSLT = $(AM_V_XSLT_$(V))
74 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
75 AM_V_XSLT_0 = @echo " XSLT " $@;
76
77 # ------------------------------------------------------------------------------
78
79 .PHONY: update-po
80 update-po:
81 $(MAKE) -C po update-po
82
83 EXTRA_DIST += \
84 examples/private-key.pem \
85 examples/public-key.pem \
86 examples/python/create-database.py \
87 examples/python/read-database.py
88
89 pkginclude_HEADERS = \
90 src/loc/libloc.h \
91 src/loc/as.h \
92 src/loc/compat.h \
93 src/loc/country.h \
94 src/loc/database.h \
95 src/loc/format.h \
96 src/loc/network.h \
97 src/loc/private.h \
98 src/loc/stringpool.h \
99 src/loc/resolv.h \
100 src/loc/writer.h
101
102 lib_LTLIBRARIES = \
103 src/libloc.la
104
105 src_libloc_la_SOURCES = \
106 src/libloc.c \
107 src/as.c \
108 src/country.c \
109 src/database.c \
110 src/network.c \
111 src/resolv.c \
112 src/stringpool.c \
113 src/writer.c
114
115 EXTRA_DIST += src/libloc.sym
116
117 src_libloc_la_CFLAGS = \
118 $(AM_CFLAGS) \
119 -DLIBLOC_PRIVATE \
120 -fvisibility=hidden
121
122 src_libloc_la_LDFLAGS = \
123 $(AM_LDFLAGS) \
124 -version-info $(LIBLOC_CURRENT):$(LIBLOC_REVISION):$(LIBLOC_AGE)
125
126 if HAVE_LD_VERSION_SCRIPT
127 src_libloc_la_LDFLAGS += -Wl,--version-script=$(top_srcdir)/src/libloc.sym
128 else
129 src_libloc_la_LDFLAGS += -export-symbols $(top_srcdir)/src/libloc.sym
130 endif
131
132 src_libloc_la_LIBADD = \
133 $(OPENSSL_LIBS) \
134 $(RESOLV_LIBS)
135
136 src_libloc_la_DEPENDENCIES = \
137 ${top_srcdir}/src/libloc.sym
138
139 pkgconfig_DATA = \
140 src/libloc.pc
141
142 EXTRA_DIST += \
143 src/libloc.pc.in
144
145 CLEANFILES += \
146 src/libloc.pc
147
148 pyexec_LTLIBRARIES = \
149 src/python/location.la
150
151 src_python_location_la_SOURCES = \
152 src/python/locationmodule.c \
153 src/python/locationmodule.h \
154 src/python/as.c \
155 src/python/as.h \
156 src/python/country.c \
157 src/python/country.h \
158 src/python/database.c \
159 src/python/database.h \
160 src/python/network.c \
161 src/python/network.h \
162 src/python/writer.c \
163 src/python/writer.h
164
165 src_python_location_la_CFLAGS = \
166 $(AM_CFLAGS) \
167 $(PYTHON_CFLAGS)
168
169 src_python_location_la_LDFLAGS = \
170 $(AM_LDFLAGS) \
171 -shared \
172 -module \
173 -avoid-version
174
175 src_python_location_la_LIBADD = \
176 src/libloc.la \
177 $(PYTHON_LIBS)
178
179 # Compile & install bindings
180 all-local: $(foreach binding,$(BINDINGS),build-$(binding))
181 check-local: $(foreach binding,$(BINDINGS),check-$(binding))
182 install-exec-local: $(foreach binding,$(BINDINGS),install-$(binding))
183 clean-local: $(foreach binding,$(BINDINGS),clean-$(binding))
184 uninstall-local: $(foreach binding,$(BINDINGS),uninstall-$(binding))
185
186 # Perl Bindings
187 EXTRA_DIST += \
188 src/perl/.gitignore \
189 src/perl/Location.xs \
190 src/perl/MANIFEST \
191 src/perl/Makefile.PL \
192 src/perl/lib/Location.pm \
193 src/perl/t/Location.t \
194 src/perl/typemap
195
196 .PHONY: build-perl
197 build-perl:
198 @mkdir -p $(builddir)/src/perl/{lib,t}
199 @test -e $(builddir)/src/perl/Location.xs || ln -s --relative $(srcdir)/src/perl/Location.xs $(builddir)/src/perl/
200 @test -e $(builddir)/src/perl/MANIFEST || ln -s --relative $(srcdir)/src/perl/MANIFEST $(builddir)/src/perl/
201 @test -e $(builddir)/src/perl/Makefile.PL || ln -s --relative $(srcdir)/src/perl/Makefile.PL $(builddir)/src/perl/
202 @test -e $(builddir)/src/perl/lib/Location.pm || ln -s --relative $(srcdir)/src/perl/lib/Location.pm $(builddir)/src/perl/lib/
203 @test -e $(builddir)/src/perl/t/Location.t || ln -s --relative $(srcdir)/src/perl/t/Location.t $(builddir)/src/perl/t/
204 @test -e $(builddir)/src/perl/typemap || ln -s --relative $(srcdir)/src/perl/typemap $(builddir)/src/perl/
205
206 cd $(builddir)/src/perl && $(PERL) Makefile.PL PREFIX="$(prefix)" \
207 INC="-I$(abs_srcdir)/src" LIBS="-L$(abs_builddir)/src/.libs -lloc"
208 cd $(builddir)/src/perl && $(MAKE) LD_RUN_PATH=
209
210 .PHONY: check-perl
211 check-perl: testdata.db
212 cd $(builddir)/src/perl && $(MAKE) LD_LIBRARY_PATH="$(abs_builddir)/src/.libs" test \
213 database="../../$<" keyfile="$(abs_srcdir)/examples/public-key.pem"
214
215 .PHONY: install-perl
216 install-perl:
217 cd $(builddir)/src/perl && $(MAKE) install
218
219 .PHONY: clean-perl
220 clean-perl:
221 cd $(builddir)/src/perl && $(MAKE) distclean
222
223 .PHONY: uninstall-perl
224 uninstall-perl:
225 rm -rvf \
226 $(DESTDIR)/$(prefix)/lib/*/perl/*/Location.pm \
227 $(DESTDIR)/$(prefix)/lib/*/perl/*/auto/Location \
228 $(DESTDIR)/$(prefix)/lib/*/perl/*/perllocal.pod \
229 $(DESTDIR)/$(prefix)/man/man3/Location.3pm
230
231 bin_SCRIPTS = \
232 src/python/location-downloader \
233 src/python/location-query
234
235 EXTRA_DIST += \
236 src/python/location-downloader.in \
237 src/python/location-query.in
238
239 CLEANFILES += \
240 src/python/location-downloader \
241 src/python/location-query
242 # ------------------------------------------------------------------------------
243
244 if HAVE_SYSTEMD
245 systemdsystemunit_DATA = \
246 src/systemd/location-downloader.service \
247 src/systemd/location-downloader.timer
248
249 CLEANFILES += \
250 $(systemdsystemunit_DATA)
251
252 INSTALL_DIRS += \
253 $(systemdsystemunitdir)
254 endif
255
256 EXTRA_DIST += \
257 src/systemd/location-downloader.service.in \
258 src/systemd/location-downloader.timer.in
259
260 # ------------------------------------------------------------------------------
261
262 TESTS_CFLAGS = \
263 $(AM_CFLAGS) \
264 -DLIBLOC_PRIVATE \
265 -DABS_SRCDIR=\"$(abs_srcdir)\"
266
267 TESTS = \
268 src/test-libloc \
269 src/test-stringpool \
270 src/test-database \
271 src/test-as \
272 src/test-network \
273 src/test-country
274
275 CLEANFILES += \
276 test.db \
277 testdata.db
278
279 testdata.db: examples/python/create-database.py
280 PYTHONPATH=$(abs_builddir)/src/python/.libs \
281 ABS_SRCDIR="$(abs_srcdir)" \
282 $(PYTHON) $< $@
283
284 check_PROGRAMS = \
285 src/test-libloc \
286 src/test-stringpool \
287 src/test-database \
288 src/test-as \
289 src/test-network \
290 src/test-country
291
292 src_test_libloc_SOURCES = \
293 src/test-libloc.c
294
295 src_test_libloc_CFLAGS = \
296 $(TESTS_CFLAGS)
297
298 src_test_libloc_LDADD = \
299 src/libloc.la
300
301 src_test_as_SOURCES = \
302 src/test-as.c
303
304 src_test_as_CFLAGS = \
305 $(TESTS_CFLAGS)
306
307 src_test_as_LDADD = \
308 src/libloc.la
309
310 src_test_country_SOURCES = \
311 src/test-country.c
312
313 src_test_country_CFLAGS = \
314 $(TESTS_CFLAGS)
315
316 src_test_country_LDADD = \
317 src/libloc.la
318
319 src_test_network_SOURCES = \
320 src/test-network.c
321
322 src_test_network_CFLAGS = \
323 $(TESTS_CFLAGS)
324
325 src_test_network_LDADD = \
326 src/libloc.la
327
328 src_test_stringpool_SOURCES = \
329 src/test-stringpool.c
330
331 src_test_stringpool_CFLAGS = \
332 $(TESTS_CFLAGS)
333
334 src_test_stringpool_LDADD = \
335 src/libloc.la
336
337 src_test_database_SOURCES = \
338 src/test-database.c
339
340 src_test_database_CFLAGS = \
341 $(TESTS_CFLAGS)
342
343 src_test_database_LDADD = \
344 src/libloc.la
345
346 # ------------------------------------------------------------------------------
347
348 MANPAGES = \
349 man/location-downloader.8 \
350 man/location-query.8
351
352 MANPAGES_TXT = $(patsubst %.8,%.txt,$(MANPAGES))
353 MANPAGES_HTML = $(patsubst %.txt,%.html,$(MANPAGES_TXT))
354 MANPAGES_XML = $(patsubst %.txt,%.xml,$(MANPAGES_TXT))
355
356 .PHONY: man
357 man: $(MANPAGES) $(MANPAGES_HTML)
358
359 if ENABLE_MANPAGES
360 man_MANS = \
361 $(MANPAGES)
362 endif
363
364 CLEANFILES += \
365 $(MANPAGES) \
366 $(MANPAGES_HTML) \
367 $(MANPAGES_XML)
368
369 EXTRA_DIST += \
370 man/asciidoc.conf \
371 $(MANPAGES_TXT)
372
373 XSLTPROC_FLAGS = \
374 --nonet \
375 --stringparam man.output.quietly 1 \
376 --stringparam funcsynopsis.style ansi \
377 --stringparam man.th.extra1.suppress 1 \
378 --stringparam man.authors.section.enabled 1 \
379 --stringparam man.copyright.section.enabled 1
380
381 XSLTPROC_COMMAND_MAN = \
382 $(AM_V_XSLT)$(MKDIR_P) $(dir $@) && \
383 $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
384 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
385
386 # Let XSLT find its source on Mac OS X
387 ifeq ($(OS),Darwin)
388 export XML_CATALOG_FILES = /usr/local/etc/xml/catalog
389 endif
390
391 man/%.xml: man/%.txt man/asciidoc.conf
392 $(AM_V_ASCIIDOC)$(MKDIR_P) $(dir $@) && \
393 $(ASCIIDOC) \
394 -f $(abs_srcdir)/man/asciidoc.conf \
395 -d manpage -b docbook -o $@ $<
396
397 man/%.8: man/%.xml
398 $(XSLTPROC_COMMAND_MAN)
399
400 man/%.html: man/%.txt man/asciidoc.conf
401 $(AM_V_ASCIIDOC)$(MKDIR_P) $(dir $@) && \
402 $(ASCIIDOC) \
403 -f $(abs_srcdir)/man/asciidoc.conf \
404 -b html5 -a icons -a theme=flask -o $@ $<
405
406 .PHONY: upload-man
407 upload-man: $(MANPAGES_HTML)
408 rsync -avHz --delete --progress $(MANPAGES_HTML) ms@fs01.haj.ipfire.org:/pub/man-pages/$(PACKAGE_NAME)/
409
410 $(DEBIAN_TARBALL_NAME): dist
411 cp -v $(distdir).tar.xz $@
412
413 .PHONY: debian
414 debian: $(DEBIAN_TARBALL_NAME)
415 debuild -i -us -uc -b