]> git.ipfire.org Git - people/ms/libloc.git/blob - Makefile.am
Import our public signing key
[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-exporter \
234 src/python/location-query
235
236 EXTRA_DIST += \
237 src/python/location-downloader.in \
238 src/python/location-exporter.in \
239 src/python/location-query.in
240
241 CLEANFILES += \
242 src/python/location-downloader \
243 src/python/location-exporter \
244 src/python/location-query
245
246 # ------------------------------------------------------------------------------
247
248 if HAVE_SYSTEMD
249 systemdsystemunit_DATA = \
250 src/systemd/location-downloader.service \
251 src/systemd/location-downloader.timer
252
253 CLEANFILES += \
254 $(systemdsystemunit_DATA)
255
256 INSTALL_DIRS += \
257 $(systemdsystemunitdir)
258 endif
259
260 EXTRA_DIST += \
261 src/systemd/location-downloader.service.in \
262 src/systemd/location-downloader.timer.in
263
264 # ------------------------------------------------------------------------------
265
266 dist_database_DATA = \
267 src/signing-key.pem
268
269 # ------------------------------------------------------------------------------
270
271 TESTS_CFLAGS = \
272 $(AM_CFLAGS) \
273 -DLIBLOC_PRIVATE \
274 -DABS_SRCDIR=\"$(abs_srcdir)\"
275
276 TESTS = \
277 src/test-libloc \
278 src/test-stringpool \
279 src/test-database \
280 src/test-as \
281 src/test-network \
282 src/test-country
283
284 CLEANFILES += \
285 test.db \
286 testdata.db
287
288 testdata.db: examples/python/create-database.py
289 PYTHONPATH=$(abs_builddir)/src/python/.libs \
290 ABS_SRCDIR="$(abs_srcdir)" \
291 $(PYTHON) $< $@
292
293 check_PROGRAMS = \
294 src/test-libloc \
295 src/test-stringpool \
296 src/test-database \
297 src/test-as \
298 src/test-network \
299 src/test-country
300
301 src_test_libloc_SOURCES = \
302 src/test-libloc.c
303
304 src_test_libloc_CFLAGS = \
305 $(TESTS_CFLAGS)
306
307 src_test_libloc_LDADD = \
308 src/libloc.la
309
310 src_test_as_SOURCES = \
311 src/test-as.c
312
313 src_test_as_CFLAGS = \
314 $(TESTS_CFLAGS)
315
316 src_test_as_LDADD = \
317 src/libloc.la
318
319 src_test_country_SOURCES = \
320 src/test-country.c
321
322 src_test_country_CFLAGS = \
323 $(TESTS_CFLAGS)
324
325 src_test_country_LDADD = \
326 src/libloc.la
327
328 src_test_network_SOURCES = \
329 src/test-network.c
330
331 src_test_network_CFLAGS = \
332 $(TESTS_CFLAGS)
333
334 src_test_network_LDADD = \
335 src/libloc.la
336
337 src_test_stringpool_SOURCES = \
338 src/test-stringpool.c
339
340 src_test_stringpool_CFLAGS = \
341 $(TESTS_CFLAGS)
342
343 src_test_stringpool_LDADD = \
344 src/libloc.la
345
346 src_test_database_SOURCES = \
347 src/test-database.c
348
349 src_test_database_CFLAGS = \
350 $(TESTS_CFLAGS)
351
352 src_test_database_LDADD = \
353 src/libloc.la
354
355 # ------------------------------------------------------------------------------
356
357 MANPAGES = \
358 man/location-downloader.8 \
359 man/location-query.8
360
361 MANPAGES_TXT = $(patsubst %.8,%.txt,$(MANPAGES))
362 MANPAGES_HTML = $(patsubst %.txt,%.html,$(MANPAGES_TXT))
363 MANPAGES_XML = $(patsubst %.txt,%.xml,$(MANPAGES_TXT))
364
365 .PHONY: man
366 man: $(MANPAGES) $(MANPAGES_HTML)
367
368 if ENABLE_MANPAGES
369 man_MANS = \
370 $(MANPAGES)
371 endif
372
373 CLEANFILES += \
374 $(MANPAGES) \
375 $(MANPAGES_HTML) \
376 $(MANPAGES_XML)
377
378 EXTRA_DIST += \
379 man/asciidoc.conf \
380 $(MANPAGES_TXT)
381
382 XSLTPROC_FLAGS = \
383 --nonet \
384 --stringparam man.output.quietly 1 \
385 --stringparam funcsynopsis.style ansi \
386 --stringparam man.th.extra1.suppress 1 \
387 --stringparam man.authors.section.enabled 1 \
388 --stringparam man.copyright.section.enabled 1
389
390 XSLTPROC_COMMAND_MAN = \
391 $(AM_V_XSLT)$(MKDIR_P) $(dir $@) && \
392 $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) \
393 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
394
395 # Let XSLT find its source on Mac OS X
396 ifeq ($(OS),Darwin)
397 export XML_CATALOG_FILES = /usr/local/etc/xml/catalog
398 endif
399
400 man/%.xml: man/%.txt man/asciidoc.conf
401 $(AM_V_ASCIIDOC)$(MKDIR_P) $(dir $@) && \
402 $(ASCIIDOC) \
403 -f $(abs_srcdir)/man/asciidoc.conf \
404 -d manpage -b docbook -o $@ $<
405
406 man/%.8: man/%.xml
407 $(XSLTPROC_COMMAND_MAN)
408
409 man/%.html: man/%.txt man/asciidoc.conf
410 $(AM_V_ASCIIDOC)$(MKDIR_P) $(dir $@) && \
411 $(ASCIIDOC) \
412 -f $(abs_srcdir)/man/asciidoc.conf \
413 -b html5 -a icons -a theme=flask -o $@ $<
414
415 .PHONY: upload-man
416 upload-man: $(MANPAGES_HTML)
417 rsync -avHz --delete --progress $(MANPAGES_HTML) ms@fs01.haj.ipfire.org:/pub/man-pages/$(PACKAGE_NAME)/
418
419 $(DEBIAN_TARBALL_NAME): dist
420 cp -v $(distdir).tar.xz $@
421
422 .PHONY: debian
423 debian: $(DEBIAN_TARBALL_NAME)
424 debuild -i -us -uc -b