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