chiark / gitweb /
cgroup: when comparing agent paths, use path_equal()
[elogind.git] / Makefile.am
1 #  -*- Mode: makefile; indent-tabs-mode: t -*-
2 #
3 #  This file is part of elogind.
4 #
5 #  Copyright 2010-2012 Lennart Poettering
6 #  Copyright 2010-2012 Kay Sievers
7 #  Copyright 2013 Zbigniew Jędrzejewski-Szmek
8 #  Copyright 2013 David Strauss
9 #
10 #  elogind is free software; you can redistribute it and/or modify it
11 #  under the terms of the GNU Lesser General Public License as published by
12 #  the Free Software Foundation; either version 2.1 of the License, or
13 #  (at your option) any later version.
14 #
15 #  elogind is distributed in the hope that it will be useful, but
16 #  WITHOUT ANY WARRANTY; without even the implied warranty of
17 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 #  Lesser General Public License for more details.
19 #
20 #  You should have received a copy of the GNU Lesser General Public License
21 #  along with elogind; If not, see <http://www.gnu.org/licenses/>.
22
23 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
24 AM_MAKEFLAGS = --no-print-directory
25 AUTOMAKE_OPTIONS = color-tests parallel-tests
26
27 GCC_COLORS ?= 'ooh, shiny!'
28 export GCC_COLORS
29
30 SUBDIRS = . po
31
32 # remove targets if the command fails
33 .DELETE_ON_ERROR:
34
35 # keep intermediate files
36 .SECONDARY:
37
38 # Keep the test-suite.log
39 .PRECIOUS: $(TEST_SUITE_LOG) Makefile
40
41 LIBELOGIND_CURRENT=10
42 LIBELOGIND_REVISION=2
43 LIBELOGIND_AGE=10
44
45 # Dirs of external packages
46 dbuspolicydir=@dbuspolicydir@
47 dbussystemservicedir=@dbussystemservicedir@
48 pamlibdir=@pamlibdir@
49 pamconfdir=@pamconfdir@
50 pkgconfigdatadir=$(datadir)/pkgconfig
51 pkgconfiglibdir=$(libdir)/pkgconfig
52 polkitpolicydir=$(datadir)/polkit-1/actions
53 bashcompletiondir=@bashcompletiondir@
54 zshcompletiondir=@zshcompletiondir@
55
56 # Our own, non-special dirs
57 pkgsysconfdir=$(sysconfdir)/elogind
58 pkgincludedir=$(includedir)/elogind
59 udevrulesdir=@udevrulesdir@
60 udevbindir=@udevbindir@
61 udevlibexecdir=$(udevbindir)
62 udevhomedir=$(udevlibexecdir)
63 udevhwdbdir=$(udevlibexecdir)/hwdb.d
64 factory_pamdir = $(datadir)/factory/etc/pam.d
65
66 # And these are the special ones for /
67 rootprefix=@rootprefix@
68 rootbindir=$(rootprefix)/bin
69 rootlibexecdir=$(rootprefix)/lib/elogind
70
71 EXTRA_DIST =
72 BUILT_SOURCES =
73 INSTALL_EXEC_HOOKS =
74 UNINSTALL_EXEC_HOOKS =
75 INSTALL_DATA_HOOKS =
76 UNINSTALL_DATA_HOOKS =
77 DISTCLEAN_LOCAL_HOOKS =
78 CLEAN_LOCAL_HOOKS =
79 pkginclude_HEADERS =
80 noinst_LTLIBRARIES =
81 lib_LTLIBRARIES =
82 noinst_DATA =
83 pkgconfiglib_DATA =
84 polkitpolicy_in_files =
85 polkitpolicy_files =
86 dist_udevrules_DATA =
87 nodist_udevrules_DATA =
88 dist_pkgsysconf_DATA =
89 dist_dbuspolicy_DATA =
90 dist_dbussystemservice_DATA =
91 check_PROGRAMS =
92 check_DATA =
93 tests=
94 manual_tests =
95 if ENABLE_TESTS
96 noinst_PROGRAMS = $(manual_tests) $(tests)
97 TESTS = $(tests)
98 else
99 noinst_PROGRAMS =
100 TESTS =
101 endif
102
103 in_files = $(filter %.in,$(EXTRA_DIST))
104 in_in_files = $(filter %.in.in, $(in_files))
105 m4_files = $(filter %.m4,$(EXTRA_DIST) $(in_files:.m4.in=.m4))
106
107 CLEANFILES = $(BUILT_SOURCES) \
108         $(pkgconfiglib_DATA) \
109         $(in_files:.in=) $(in_in_files:.in.in=) \
110         $(m4_files:.m4=)
111
112 .PHONY: $(INSTALL_EXEC_HOOKS) $(UNINSTALL_EXEC_HOOKS) \
113         $(INSTALL_DATA_HOOKS) $(UNINSTALL_DATA_HOOKS) \
114         $(DISTCLEAN_LOCAL_HOOKS) $(CLEAN_LOCAL_HOOKS)
115
116 AM_CPPFLAGS = \
117         -include $(top_builddir)/config.h \
118         -DPKGSYSCONFDIR=\"$(pkgsysconfdir)\" \
119         -DCERTIFICATE_ROOT=\"$(CERTIFICATEROOT)\" \
120         -DELOGIND_CGROUP_AGENT_PATH=\"$(rootlibexecdir)/elogind-cgroups-agent\" \
121         -DROOTPREFIX=\"$(rootprefix)\" \
122         -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \
123         -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
124         -DKEXEC=\"$(KEXEC)\" \
125         -DLIBDIR=\"$(libdir)\" \
126         -DROOTLIBDIR=\"$(rootlibdir)\" \
127         -DROOTLIBEXECDIR=\"$(rootlibexecdir)\" \
128         -DTEST_DIR=\"$(abs_top_srcdir)/test\" \
129         -I $(top_srcdir)/src \
130         -I $(top_builddir)/src/basic \
131         -I $(top_srcdir)/src/basic \
132         -I $(top_srcdir)/src/shared \
133         -I $(top_builddir)/src/shared \
134         -I $(top_srcdir)/src/login \
135         -I $(top_srcdir)/src/systemd \
136         -I $(top_builddir)/src/core \
137         -I $(top_srcdir)/src/libudev \
138         -I $(top_srcdir)/src/udev \
139         -I $(top_srcdir)/src/core \
140         -I $(top_srcdir)/src/libelogind/sd-bus \
141         -I $(top_srcdir)/src/libelogind/sd-event \
142         -I $(top_srcdir)/src/libelogind/sd-login \
143         -I $(top_srcdir)/src/libelogind/sd-netlink \
144         $(OUR_CPPFLAGS)
145
146 AM_CFLAGS = $(OUR_CFLAGS)
147 AM_LDFLAGS = $(OUR_LDFLAGS)
148
149 # ------------------------------------------------------------------------------
150 define move-to-rootlibdir
151         if test "$(libdir)" != "$(rootlibdir)"; then \
152                 $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
153                 so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
154                 rm -f $(DESTDIR)$(libdir)/$$libname && \
155                 $(LN_S) --relative -f $(DESTDIR)$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
156                 mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
157         fi
158 endef
159
160 install-touch-usr-hook:
161         touch -c $(DESTDIR)/$(prefix)
162
163 INSTALL_EXEC_HOOKS += \
164         install-touch-usr-hook
165
166
167 # ------------------------------------------------------------------------------
168 AM_V_M4 = $(AM_V_M4_$(V))
169 AM_V_M4_ = $(AM_V_M4_$(AM_DEFAULT_VERBOSITY))
170 AM_V_M4_0 = @echo "  M4      " $@;
171
172 AM_V_XSLT = $(AM_V_XSLT_$(V))
173 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
174 AM_V_XSLT_0 = @echo "  XSLT    " $@;
175
176 AM_V_GPERF = $(AM_V_GPERF_$(V))
177 AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
178 AM_V_GPERF_0 = @echo "  GPERF   " $@;
179
180 AM_V_LN = $(AM_V_LN_$(V))
181 AM_V_LN_ = $(AM_V_LN_$(AM_DEFAULT_VERBOSITY))
182 AM_V_LN_0 = @echo "  LN      " $@;
183
184 AM_V_RM = $(AM_V_RM_$(V))
185 AM_V_RM_ = $(AM_V_RM_$(AM_DEFAULT_VERBOSITY))
186 AM_V_RM_0 = @echo "  RM      " $@;
187
188 # ------------------------------------------------------------------------------
189 rootbin_PROGRAMS =
190 bin_PROGRAMS =
191 rootlibexec_PROGRAMS =
192
193 dist_doc_DATA = \
194         README \
195         NEWS \
196         LICENSE.LGPL2.1 \
197         LICENSE.GPL2 \
198         DISTRO_PORTING
199
200 @INTLTOOL_POLICY_RULE@
201
202 # ------------------------------------------------------------------------------
203
204 MANPAGES =
205 MANPAGES_ALIAS =
206
207 include Makefile-man.am
208
209 .PHONY: man update-man-list
210 man: $(MANPAGES) $(MANPAGES_ALIAS) $(HTML_FILES) $(HTML_ALIAS)
211
212 XML_FILES = \
213         ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
214 HTML_FILES = \
215         ${XML_FILES:.xml=.html}
216 HTML_ALIAS = \
217         ${patsubst %.1,%.html,${patsubst %.3,%.html,${patsubst %.5,%.html,${patsubst %.7,%.html,${patsubst %.8,%.html,$(MANPAGES_ALIAS)}}}}}
218
219 if ENABLE_MANPAGES
220 man_MANS = \
221         $(MANPAGES) \
222         $(MANPAGES_ALIAS)
223
224 noinst_DATA += \
225         $(HTML_FILES) \
226         $(HTML_ALIAS)
227
228 CLEANFILES += \
229         $(man_MANS) \
230         $(HTML_FILES) \
231         $(HTML_ALIAS)
232
233 docs/html/man:
234         $(AM_V_at)$(MKDIR_P) $(dir $@)
235         $(AM_V_LN)$(LN_S) -f ../../man $@
236
237 noinst_DATA += \
238         docs/html/man
239
240 CLEANFILES += \
241         docs/html/man
242
243 if HAVE_PYTHON
244 man/index.html: man/systemd.index.html
245         $(AM_V_LN)$(LN_S) -f systemd.index.html $@
246
247 noinst_DATA += \
248         man/index.html
249
250 CLEANFILES += \
251         man/index.html
252
253 XML_GLOB = $(wildcard $(top_srcdir)/man/*.xml)
254 NON_INDEX_XML_FILES = $(filter-out man/systemd.index.xml,$(XML_FILES))
255 SOURCE_XML_FILES = ${patsubst %,$(top_srcdir)/%,$(filter-out man/systemd.directives.xml,$(NON_INDEX_XML_FILES))}
256
257 # This target should only be run manually. It recreates Makefile-man.am
258 # file in the source directory based on all man/*.xml files. Run it after
259 # adding, removing, or changing the conditional in a man page.
260 update-man-list: $(top_srcdir)/tools/make-man-rules.py $(XML_GLOB)
261         $(AM_V_GEN)$(PYTHON) $^ > $(top_srcdir)/Makefile-man.tmp
262         $(AM_V_at)mv $(top_srcdir)/Makefile-man.tmp $(top_srcdir)/Makefile-man.am
263         @echo "Makefile-man.am has been regenerated"
264
265 man/systemd.index.xml: $(top_srcdir)/tools/make-man-index.py $(NON_INDEX_XML_FILES)
266         $(AM_V_at)$(MKDIR_P) $(dir $@)
267         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
268
269 man/systemd.directives.xml: $(top_srcdir)/tools/make-directive-index.py man/custom-entities.ent $(SOURCE_XML_FILES)
270         $(AM_V_at)$(MKDIR_P) $(dir $@)
271         $(AM_V_GEN)$(PYTHON) $< $@ $(SOURCE_XML_FILES)
272
273 CLEANFILES += \
274         man/systemd.index.xml \
275         man/systemd.directives.xml
276
277 EXTRA_DIST += \
278         tools/make-man-rules.py
279
280 endif
281
282 endif
283
284 EXTRA_DIST += \
285         $(filter-out man/systemd.directives.xml,$(XML_FILES)) \
286         $(HTML_FILES) \
287         $(HTML_ALIAS) \
288         $(man_MANS) \
289         $(NULL)
290
291 # ------------------------------------------------------------------------------
292 noinst_LTLIBRARIES += \
293         libbasic.la
294
295 libbasic_la_SOURCES = \
296         src/basic/missing.h \
297         src/basic/capability.c \
298         src/basic/capability.h \
299         src/basic/conf-files.c \
300         src/basic/conf-files.h \
301         src/basic/hostname-util.h \
302         src/basic/hostname-util.c \
303         src/basic/unit-name.c \
304         src/basic/unit-name.h \
305         src/basic/util.c \
306         src/basic/util.h \
307         src/basic/path-util.c \
308         src/basic/path-util.h \
309         src/basic/time-util.c \
310         src/basic/time-util.h \
311         src/basic/signal-util.c \
312         src/basic/signal-util.h \
313         src/basic/mempool.c \
314         src/basic/mempool.h \
315         src/basic/hashmap.c \
316         src/basic/hashmap.h \
317         src/basic/siphash24.c \
318         src/basic/siphash24.h \
319         src/basic/prioq.c \
320         src/basic/prioq.h \
321         src/basic/strv.c \
322         src/basic/strv.h \
323         src/basic/log.c \
324         src/basic/log.h \
325         src/basic/bus-label.c \
326         src/basic/bus-label.h \
327         src/basic/virt.c \
328         src/basic/virt.h \
329         src/basic/smack-util.c \
330         src/basic/smack-util.h \
331         src/basic/utf8.c \
332         src/basic/utf8.h \
333         src/basic/gunicode.c \
334         src/basic/gunicode.h \
335         src/basic/fileio.c \
336         src/basic/fileio.h \
337         src/basic/mkdir.c \
338         src/basic/mkdir.h \
339         src/basic/cgroup-util.c \
340         src/basic/cgroup-util.h \
341         src/basic/errno-list.c \
342         src/basic/errno-list.h \
343         src/basic/terminal-util.c \
344         src/basic/terminal-util.h \
345         src/basic/login-util.h \
346         src/basic/login-util.c \
347         src/basic/audit.c \
348         src/basic/audit.h \
349         src/basic/memfd-util.c \
350         src/basic/memfd-util.h \
351         src/basic/process-util.c \
352         src/basic/process-util.h \
353         src/basic/random-util.c \
354         src/basic/random-util.h \
355         src/basic/verbs.c \
356         src/basic/verbs.h \
357         src/basic/label.c \
358         src/basic/label.h \
359         src/basic/selinux-util.c \
360         src/basic/selinux-util.h \
361         src/basic/mkdir-label.c \
362         src/basic/fileio-label.c \
363         src/basic/fileio-label.h \
364         src/basic/rm-rf.c \
365         src/basic/rm-rf.h
366
367 nodist_libbasic_la_SOURCES = \
368         src/basic/errno-from-name.h \
369         src/basic/errno-to-name.h \
370         src/basic/cap-from-name.h \
371         src/basic/cap-to-name.h
372
373 libbasic_la_CFLAGS = \
374         $(AM_CFLAGS) \
375         $(SELINUX_CFLAGS) \
376         $(CAP_CFLAGS) \
377         -pthread
378
379 libbasic_la_LIBADD = \
380         $(SELINUX_LIBS) \
381         $(CAP_LIBS) \
382         -ldl \
383         -lrt \
384         -lm
385
386 # -----------------------------------------------------------------------------
387 noinst_LTLIBRARIES += \
388         libshared.la
389
390 libshared_la_SOURCES = \
391         src/shared/sleep-config.c \
392         src/shared/sleep-config.h \
393         src/shared/conf-parser.c \
394         src/shared/conf-parser.h \
395         src/shared/pager.c \
396         src/shared/pager.h \
397         src/shared/spawn-polkit-agent.c \
398         src/shared/spawn-polkit-agent.h \
399         src/shared/clean-ipc.c \
400         src/shared/clean-ipc.h \
401         src/shared/cgroup-show.c \
402         src/shared/cgroup-show.h \
403         src/shared/bus-util.c \
404         src/shared/bus-util.h
405
406 if HAVE_ACL
407 libshared_la_SOURCES += \
408         src/shared/acl-util.c \
409         src/shared/acl-util.h
410 endif
411
412 libshared_la_CFLAGS = \
413         $(AM_CFLAGS) \
414         $(ACL_CFLAGS) \
415         $(LIBIDN_CFLAGS) \
416         $(SECCOMP_CFLAGS)
417
418 libshared_la_LIBADD = \
419         libelogind-internal.la \
420         $(UDEV_LIBS) \
421         $(ACL_LIBS) \
422         $(LIBIDN_LIBS) \
423         $(SECCOMP_LIBS)
424
425 gperf_txt_sources = \
426         src/basic/errno-list.txt \
427         src/basic/af-list.txt \
428         src/basic/arphrd-list.txt \
429         src/basic/cap-list.txt
430
431 BUILT_SOURCES += \
432         $(gperf_gperf_m4_sources:-gperf.gperf.m4=-gperf.c) \
433         $(gperf_gperf_sources:-gperf.gperf=-gperf.c) \
434         $(gperf_txt_sources:-list.txt=-from-name.h) \
435         $(gperf_txt_sources:-list.txt=-to-name.h)
436
437 CLEANFILES += \
438         $(gperf_txt_sources:-list.txt=-from-name.gperf)
439 DISTCLEANFILES = \
440         $(gperf_txt_sources)
441
442 EXTRA_DIST += \
443         $(gperf_gperf_m4_sources) \
444         $(gperf_gperf_sources)
445
446 CLEANFILES += \
447         $(gperf_txt_sources)
448
449 %-from-name.gperf: %-list.txt
450         $(AM_V_at)$(MKDIR_P) $(dir $@)
451         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct $(notdir $*)_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
452
453 %-from-name.h: %-from-name.gperf
454         $(AM_V_at)$(MKDIR_P) $(dir $@)
455         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_$(notdir $*) -H hash_$(notdir $*)_name -p -C <$< >$@
456
457
458 src/basic/errno-list.txt:
459         $(AM_V_at)$(MKDIR_P) $(dir $@)
460         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include errno.h - </dev/null | $(AWK) '/^#define[ \t]+E[^ _]+[ \t]+/ { print $$2; }' >$@
461
462 src/basic/errno-to-name.h: src/basic/errno-list.txt
463         $(AM_V_at)$(MKDIR_P) $(dir $@)
464         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const errno_names[] = { "} !/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
465
466
467 src/basic/af-list.txt:
468         $(AM_V_at)$(MKDIR_P) $(dir $@)
469         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/socket.h - </dev/null | grep -v AF_UNSPEC | grep -v AF_MAX | $(AWK) '/^#define[ \t]+AF_[^ \t]+[ \t]+PF_[^ \t]/ { print $$2; }' >$@
470
471 src/basic/af-to-name.h: src/basic/af-list.txt
472         $(AM_V_at)$(MKDIR_P) $(dir $@)
473         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const af_names[] = { "} !/AF_FILE/ && !/AF_ROUTE/ && !/AF_LOCAL/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
474
475
476 src/basic/arphrd-list.txt:
477         $(AM_V_at)$(MKDIR_P) $(dir $@)
478         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include net/if_arp.h - </dev/null | $(AWK) '/^#define[ \t]+ARPHRD_[^ \t]+[ \t]+[^ \t]/ { print $$2; }' | sed -e 's/ARPHRD_//' >$@
479
480 src/basic/arphrd-to-name.h: src/basic/arphrd-list.txt
481         $(AM_V_at)$(MKDIR_P) $(dir $@)
482         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const arphrd_names[] = { "} !/CISCO/ { printf "[ARPHRD_%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
483
484 src/basic/arphrd-from-name.gperf: src/basic/arphrd-list.txt
485         $(AM_V_at)$(MKDIR_P) $(dir $@)
486         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct arphrd_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, ARPHRD_%s\n", $$1, $$1 }' <$< >$@
487
488
489 src/basic/cap-list.txt:
490         $(AM_V_at)$(MKDIR_P) $(dir $@)
491         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/capability.h -include missing.h - </dev/null | $(AWK) '/^#define[ \t]+CAP_[A-Z_]+[ \t]+/ { print $$2; }' | grep -v CAP_LAST_CAP >$@
492
493 src/basic/cap-to-name.h: src/basic/cap-list.txt
494         $(AM_V_at)$(MKDIR_P) $(dir $@)
495         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const capability_names[] = { "} { printf "[%s] = \"%s\",\n", $$1, tolower($$1) } END{print "};"}' <$< >$@
496
497 src/basic/cap-from-name.gperf: src/basic/cap-list.txt
498         $(AM_V_at)$(MKDIR_P) $(dir $@)
499         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct capability_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
500
501 src/basic/cap-from-name.h: src/basic/cap-from-name.gperf
502         $(AM_V_at)$(MKDIR_P) $(dir $@)
503         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_capability -H hash_capability_name -p -C <$< >$@
504
505 # ------------------------------------------------------------------------------
506
507 if HAVE_PAM
508 dist_factory_pam_DATA = \
509         factory/etc/pam.d/system-auth \
510         factory/etc/pam.d/other
511 endif
512
513 # ------------------------------------------------------------------------------
514 rootlibexec_PROGRAMS += \
515         elogind-cgroups-agent
516
517 elogind_cgroups_agent_SOURCES = \
518         src/cgroups-agent/cgroups-agent.c
519
520 elogind_cgroups_agent_LDADD = \
521         libshared.la
522
523 # ------------------------------------------------------------------------------
524 libelogind_internal_la_SOURCES = \
525         src/systemd/sd-bus.h \
526         src/systemd/sd-bus-protocol.h \
527         src/systemd/sd-bus-vtable.h \
528         src/systemd/sd-event.h \
529         src/systemd/sd-netlink.h \
530         src/systemd/sd-login.h \
531         src/systemd/sd-id128.h \
532         src/systemd/sd-daemon.h \
533         src/systemd/sd-path.h \
534         src/libelogind/libelogind.sym \
535         src/libelogind/sd-bus/sd-bus.c \
536         src/libelogind/sd-bus/bus-control.c \
537         src/libelogind/sd-bus/bus-control.h \
538         src/libelogind/sd-bus/bus-error.c \
539         src/libelogind/sd-bus/bus-error.h \
540         src/libelogind/sd-bus/bus-common-errors.h \
541         src/libelogind/sd-bus/bus-common-errors.c \
542         src/libelogind/sd-bus/bus-internal.c \
543         src/libelogind/sd-bus/bus-internal.h \
544         src/libelogind/sd-bus/bus-socket.c \
545         src/libelogind/sd-bus/bus-socket.h \
546         src/libelogind/sd-bus/bus-kernel.c \
547         src/libelogind/sd-bus/bus-kernel.h \
548         src/libelogind/sd-bus/bus-container.c \
549         src/libelogind/sd-bus/bus-container.h \
550         src/libelogind/sd-bus/bus-message.c \
551         src/libelogind/sd-bus/bus-message.h \
552         src/libelogind/sd-bus/bus-creds.c \
553         src/libelogind/sd-bus/bus-creds.h \
554         src/libelogind/sd-bus/bus-signature.c \
555         src/libelogind/sd-bus/bus-signature.h \
556         src/libelogind/sd-bus/bus-type.c \
557         src/libelogind/sd-bus/bus-type.h \
558         src/libelogind/sd-bus/bus-match.c \
559         src/libelogind/sd-bus/bus-match.h \
560         src/libelogind/sd-bus/bus-bloom.c \
561         src/libelogind/sd-bus/bus-bloom.h \
562         src/libelogind/sd-bus/bus-introspect.c \
563         src/libelogind/sd-bus/bus-introspect.h \
564         src/libelogind/sd-bus/bus-objects.c \
565         src/libelogind/sd-bus/bus-objects.h \
566         src/libelogind/sd-bus/bus-gvariant.c \
567         src/libelogind/sd-bus/bus-gvariant.h \
568         src/libelogind/sd-bus/bus-convenience.c \
569         src/libelogind/sd-bus/bus-track.c \
570         src/libelogind/sd-bus/bus-track.h \
571         src/libelogind/sd-bus/bus-slot.c \
572         src/libelogind/sd-bus/bus-slot.h \
573         src/libelogind/sd-bus/bus-protocol.h \
574         src/libelogind/sd-event/sd-event.c \
575         src/libelogind/sd-event/event-util.h \
576         src/libelogind/sd-id128/sd-id128.c \
577         src/libelogind/sd-daemon/sd-daemon.c \
578         src/libelogind/sd-login/sd-login.c \
579         src/libelogind/sd-path/sd-path.c
580
581 libelogind_internal_la_LIBADD = \
582         libbasic.la \
583         -lresolv
584
585 noinst_LTLIBRARIES += \
586         libelogind-internal.la
587
588 EXTRA_DIST += \
589         src/libelogind/libelogind.pc.in \
590         src/libelogind/sd-bus/DIFFERENCES \
591         src/libelogind/sd-bus/GVARIANT-SERIALIZATION
592
593 libelogind_la_SOURCES = \
594         $(libelogind_internal_la_SOURCES)
595
596 nodist_libelogind_la_SOURCES = \
597         $(nodist_libelogind_internal_la_SOURCES)
598
599 libelogind_la_CFLAGS = \
600         $(libelogind_internal_la_CFLAGS)
601
602 libelogind_la_LDFLAGS = \
603         $(AM_LDFLAGS) \
604         -version-info $(LIBELOGIND_CURRENT):$(LIBELOGIND_REVISION):$(LIBELOGIND_AGE) \
605         -Wl,--version-script=$(top_srcdir)/src/libelogind/libelogind.sym
606
607 libelogind_la_LIBADD = \
608         $(libelogind_internal_la_LIBADD)
609
610 libelogind-install-hook:
611         libname=libelogind.so && $(move-to-rootlibdir)
612
613 libelogind-uninstall-hook:
614         rm -f $(DESTDIR)$(rootlibdir)/libelogind.so*
615
616 INSTALL_EXEC_HOOKS += libelogind-install-hook
617 UNINSTALL_EXEC_HOOKS += libelogind-uninstall-hook
618
619 pkgconfiglib_DATA += \
620         src/libelogind/libelogind.pc
621
622 pkginclude_HEADERS += \
623         src/systemd/sd-bus.h \
624         src/systemd/sd-bus-protocol.h \
625         src/systemd/sd-bus-vtable.h \
626         src/systemd/sd-event.h \
627         src/systemd/sd-login.h \
628         src/systemd/sd-id128.h \
629         src/systemd/sd-daemon.h
630
631 lib_LTLIBRARIES += \
632         libelogind.la
633
634 # ------------------------------------------------------------------------------
635 elogind_SOURCES = \
636         src/login/logind.c \
637         src/login/logind.h
638
639 nodist_elogind_SOURCES = \
640         src/login/logind-gperf.c
641
642 elogind_LDADD = \
643         libelogind-core.la
644
645 libelogind_core_la_SOURCES = \
646         src/login/logind-core.c \
647         src/login/logind-device.c \
648         src/login/logind-device.h \
649         src/login/logind-button.c \
650         src/login/logind-button.h \
651         src/login/logind-action.c \
652         src/login/logind-action.h \
653         src/login/logind-seat.c \
654         src/login/logind-seat.h \
655         src/login/logind-session.c \
656         src/login/logind-session.h \
657         src/login/logind-session-device.c \
658         src/login/logind-session-device.h \
659         src/login/logind-user.c \
660         src/login/logind-user.h \
661         src/login/logind-inhibit.c \
662         src/login/logind-inhibit.h \
663         src/login/logind-dbus.c \
664         src/login/logind-session-dbus.c \
665         src/login/logind-seat-dbus.c \
666         src/login/logind-user-dbus.c \
667         src/login/logind-utmp.c \
668         src/login/logind-acl.h
669
670 libelogind_core_la_LIBADD = \
671         libshared.la
672
673 if HAVE_ACL
674 libelogind_core_la_SOURCES += \
675         src/login/logind-acl.c
676 endif
677
678 noinst_LTLIBRARIES += \
679         libelogind-core.la
680
681 rootlibexec_PROGRAMS += \
682         elogind
683
684 loginctl_SOURCES = \
685         src/login/loginctl.c \
686         src/login/sysfs-show.h \
687         src/login/sysfs-show.c
688
689 loginctl_LDADD = \
690         libshared.la
691
692 rootbin_PROGRAMS += \
693         loginctl
694
695 if ENABLE_BASH_COMPLETION
696 dist_bashcompletion_DATA = \
697         shell-completion/bash/loginctl
698 endif
699
700 if ENABLE_ZSH_COMPLETION
701 dist_zshcompletion_DATA = \
702         shell-completion/zsh/_loginctl \
703         shell-completion/zsh/_elogind-inhibit
704 endif
705
706 elogind_inhibit_SOURCES = \
707         src/login/inhibit.c
708
709 elogind_inhibit_LDADD = \
710         libshared.la
711
712 rootbin_PROGRAMS += \
713         elogind-inhibit
714
715 test_login_SOURCES = \
716         src/libelogind/sd-login/test-login.c
717
718 test_login_LDADD = \
719         libshared.la
720
721 test_login_shared_SOURCES = \
722         src/login/test-login-shared.c
723
724 test_login_shared_LDADD = \
725         libshared.la
726
727 test_inhibit_SOURCES = \
728         src/login/test-inhibit.c
729
730 test_inhibit_LDADD = \
731         libshared.la
732
733 test_login_tables_SOURCES = \
734         src/login/test-login-tables.c
735
736 test_login_tables_LDADD = \
737         libelogind-core.la
738
739 manual_tests += \
740         test-login \
741         test-inhibit
742
743 tests += \
744         test-login-tables \
745         test-login-shared
746
747 if HAVE_PAM
748 pam_elogind_la_SOURCES = \
749         src/login/pam_elogind.sym \
750         src/login/pam_elogind.c
751
752 pam_elogind_la_CFLAGS = \
753         $(AM_CFLAGS) \
754         $(PAM_CFLAGS)
755
756 pam_elogind_la_LDFLAGS = \
757         $(AM_LDFLAGS) \
758         -module \
759         -export-dynamic \
760         -avoid-version \
761         -shared \
762         -Wl,--version-script=$(top_srcdir)/src/login/pam_elogind.sym
763
764 pam_elogind_la_LIBADD = \
765         libshared.la \
766         $(PAM_LIBS)
767
768 pamlib_LTLIBRARIES = \
769         pam_elogind.la
770
771 dist_pamconf_DATA = \
772         src/login/elogind-user
773
774 endif
775
776 dist_dbussystemservice_DATA += \
777         src/login/org.freedesktop.login1.service
778
779 dist_dbuspolicy_DATA += \
780         src/login/org.freedesktop.login1.conf
781
782 dist_pkgsysconf_DATA += \
783         src/login/elogind.conf
784
785 polkitpolicy_files += \
786         src/login/org.freedesktop.login1.policy
787
788 dist_udevrules_DATA += \
789         src/login/70-uaccess.rules \
790         src/login/70-power-switch.rules
791
792 nodist_udevrules_DATA += \
793         src/login/71-seat.rules \
794         src/login/73-seat-late.rules
795
796 polkitpolicy_in_files += \
797         src/login/org.freedesktop.login1.policy.in
798
799 gperf_gperf_sources = \
800         src/login/logind-gperf.gperf
801
802 EXTRA_DIST += \
803         src/login/71-seat.rules.in \
804         src/login/73-seat-late.rules.in
805
806 # ------------------------------------------------------------------------------
807 substitutions = \
808        '|rootlibexecdir=$(rootlibexecdir)|' \
809        '|rootbindir=$(rootbindir)|' \
810        '|bindir=$(bindir)|' \
811        '|pkgsysconfdir=$(pkgsysconfdir)|' \
812        '|pkgdatadir=$(pkgdatadir)|' \
813        '|udevhwdbdir=$(udevhwdbdir)|' \
814        '|udevrulesdir=$(udevrulesdir)|' \
815        '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
816        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
817        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
818        '|PACKAGE_URL=$(PACKAGE_URL)|' \
819        '|prefix=$(prefix)|' \
820        '|exec_prefix=$(exec_prefix)|' \
821        '|libdir=$(libdir)|' \
822        '|includedir=$(includedir)|' \
823        '|VERSION=$(VERSION)|' \
824        '|rootprefix=$(rootprefix)|' \
825        '|udevlibexecdir=$(udevlibexecdir)|' \
826        '|SUSHELL=$(SUSHELL)|' \
827        '|SULOGIN=$(SULOGIN)|' \
828        '|DEBUGTTY=$(DEBUGTTY)|' \
829        '|KILL=$(KILL)|' \
830        '|KMOD=$(KMOD)|' \
831        '|MKDIR_P=$(MKDIR_P)|' \
832        '|QUOTAON=$(QUOTAON)|' \
833        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
834        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
835        '|PYTHON=$(PYTHON)|' \
836        '|NTP_SERVERS=$(NTP_SERVERS)|' \
837        '|DNS_SERVERS=$(DNS_SERVERS)|' \
838        '|systemuidmax=$(SYSTEM_UID_MAX)|' \
839        '|systemgidmax=$(SYSTEM_GID_MAX)|' \
840        '|TTY_GID=$(TTY_GID)|'
841
842 SED_PROCESS = \
843         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
844         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
845                 < $< > $@
846
847 man/%: man/%.in
848         $(SED_PROCESS)
849
850 sysctl.d/%: sysctl.d/%.in
851         $(SED_PROCESS)
852
853 %.pc: %.pc.in
854         $(SED_PROCESS)
855
856 %.conf: %.conf.in
857         $(SED_PROCESS)
858
859 shell-completion/%: shell-completion/%.in
860         $(SED_PROCESS)
861
862 %.rules: %.rules.in
863         $(SED_PROCESS)
864
865 %.conf: %.conf.in
866         $(SED_PROCESS)
867
868 %.sh: %.sh.in
869         $(SED_PROCESS)
870         $(AM_V_GEN)chmod +x $@
871
872 src/%.c: src/%.gperf
873         $(AM_V_at)$(MKDIR_P) $(dir $@)
874         $(AM_V_GPERF)$(GPERF) < $< > $@
875
876 src/%: src/%.m4
877         $(AM_V_at)$(MKDIR_P) $(dir $@)
878         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
879
880 sysusers.d/%: sysusers.d/%.m4
881         $(AM_V_at)$(MKDIR_P) $(dir $@)
882         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
883
884 tmpfiles.d/%: tmpfiles.d/%.m4
885         $(AM_V_at)$(MKDIR_P) $(dir $@)
886         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
887
888
889 units/%: units/%.m4
890         $(AM_V_at)$(MKDIR_P) $(dir $@)
891         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
892
893 units/user/%: units/user/%.m4
894         $(AM_V_at)$(MKDIR_P) $(dir $@)
895         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
896
897 if ENABLE_POLKIT
898 nodist_polkitpolicy_DATA = \
899         $(polkitpolicy_files)
900 endif
901
902 EXTRA_DIST += \
903         $(polkitpolicy_in_files)
904
905 # ------------------------------------------------------------------------------
906 if ENABLE_MANPAGES
907 man/custom-entities.ent: configure.ac
908         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
909         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
910          printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
911          > $@ # '
912
913 CLEANFILES += \
914         man/custom-entities.ent
915
916 XSLTPROC_FLAGS = \
917         --nonet \
918         --xinclude \
919         --stringparam man.output.quietly 1 \
920         --stringparam funcsynopsis.style ansi \
921         --stringparam man.authors.section.enabled 0 \
922         --stringparam man.copyright.section.enabled 0 \
923         --stringparam elogind.version $(VERSION) \
924         --path '$(builddir)/man:$(srcdir)/man'
925
926 XSLTPROC_PROCESS_MAN = \
927         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
928
929 XSLTPROC_PROCESS_HTML = \
930         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
931
932 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
933         $(XSLTPROC_PROCESS_MAN)
934
935 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
936         $(XSLTPROC_PROCESS_MAN)
937
938 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
939         $(XSLTPROC_PROCESS_MAN)
940
941 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
942         $(XSLTPROC_PROCESS_MAN)
943
944 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
945         $(XSLTPROC_PROCESS_MAN)
946
947 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
948         $(XSLTPROC_PROCESS_HTML)
949
950 define html-alias
951         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
952 endef
953
954 endif
955
956 EXTRA_DIST += \
957         man/custom-html.xsl \
958         man/custom-man.xsl
959
960 install-exec-hook: $(INSTALL_EXEC_HOOKS)
961
962 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
963
964 install-data-hook: $(INSTALL_DATA_HOOKS)
965
966 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
967
968 clean-local: $(CLEAN_LOCAL_HOOKS)
969         rm -rf $(abs_srcdir)/install-tree
970         rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
971               $(abs_srcdir)/hwdb/iab.txt
972
973 DISTCHECK_CONFIGURE_FLAGS = \
974         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
975         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
976         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
977         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
978         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
979         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
980         --with-rootprefix=$$dc_install_base \
981         --enable-compat-libs
982
983 DISTCHECK_CONFIGURE_FLAGS += \
984         --with-sysvinit-path= \
985         --with-sysvrcnd-path=
986
987 if ENABLE_SPLIT_USR
988 DISTCHECK_CONFIGURE_FLAGS += \
989         --enable-split-usr
990 else
991 DISTCHECK_CONFIGURE_FLAGS += \
992         --disable-split-usr
993 endif
994
995 #
996 # Require python when making dist
997 #
998 .PHONY: dist-check-python dist-check-compat-libs dist-check-help
999 dist-check-python:
1000
1001 dist-check-compat-libs:
1002
1003 dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS)
1004         for i in $(abspath $^); do                                             \
1005             if $$i  --help | grep -v 'default:' | grep -E -q '.{80}.' ; then   \
1006                 echo "$(basename $$i) --help output is too wide:";             \
1007                 $$i  --help | awk 'length > 80' | grep -E --color=yes '.{80}'; \
1008                 exit 1;                                                        \
1009             fi; done
1010
1011 dist: dist-check-python dist-check-compat-libs
1012
1013 .PHONY: git-tag
1014 git-tag:
1015         git tag -s "v$(VERSION)" -m "elogind $(VERSION)"
1016
1017 .PHONY: install-tree
1018 install-tree: all
1019         rm -rf $(abs_srcdir)/install-tree
1020         $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
1021         tree $(abs_srcdir)/install-tree
1022
1023 # Let's run all tests of the test suite, but under valgrind. Let's
1024 # exclude the one perl script we have in there
1025 .PHONY: valgrind-tests
1026 valgrind-tests: $(TESTS)
1027         $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
1028                 if file $$f | grep -q shell; then \
1029                 echo -e "$${x}Skipping non-binary $$f"; else \
1030                 echo -e "$${x}Running $$f"; \
1031                 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
1032                 x="\n\n"; \
1033         done
1034
1035 exported-%: %
1036         $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
1037
1038 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
1039         $(AM_V_GEN)cat $^ > $@
1040
1041 .PHONY: check-api-docs
1042 check-api-docs: exported man
1043         $(AM_V_GEN)for symbol in `cat exported` ; do \
1044                 if test -f $(builddir)/man/$$symbol.html ; then \
1045                         echo "  Symbol $$symbol() is documented." ; \
1046                 else \
1047                         echo "‣ Symbol $$symbol() lacks documentation." ; \
1048                 fi ; \
1049         done
1050
1051 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
1052 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
1053
1054 undefined defined: $(ALL_OBJECTS)
1055         $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
1056                 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
1057         done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
1058
1059 CLEANFILES += \
1060         defined \
1061         undefined
1062
1063 .PHONY: check-api-unused
1064 check-api-unused: defined undefined exported
1065         ( cat exported undefined ) | sort -u  | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
1066
1067 .PHONY: check-includes
1068 check-includes: $(top_srcdir)/tools/check-includes.pl
1069         $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
1070                 | xargs $(top_srcdir)/tools/check-includes.pl
1071
1072 EXTRA_DIST += \
1073         $(top_srcdir)/tools/check-includes.pl
1074
1075 # Stupid test that everything purported to be exported really is
1076 define generate-sym-test
1077         $(AM_V_at)$(MKDIR_P) $(dir $@)
1078         $(AM_V_at)printf '#include <stdio.h>\n' > $@
1079         $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
1080         $(AM_V_at)printf 'void* functions[] = {\n' >> $@
1081         $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
1082         $(AM_V_at)printf '};\nint main(void) {\n' >> $@
1083         $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
1084         $(AM_V_at)printf 'return 0; }\n' >> $@
1085 endef
1086
1087 test-libelogind-sym.c: \
1088                 $(top_builddir)/src/libelogind/libelogind.sym \
1089                 src/systemd/sd-daemon.h \
1090                 src/systemd/sd-login.h \
1091                 src/systemd/sd-bus.h \
1092                 src/systemd/sd-path.h \
1093                 src/systemd/sd-event.h
1094         $(generate-sym-test)
1095
1096 test_libelogind_sym_SOURCES = \
1097         test-libelogind-sym.c
1098 test_libelogind_sym_LDADD = \
1099         libelogind.la
1100
1101 BUILT_SOURCES += \
1102         $(test_libelogind_sym_SOURCES)
1103
1104 tests += \
1105         test-libelogind-sym
1106
1107 .PHONY: cppcheck
1108 cppcheck:
1109         cppcheck --enable=all -q $(top_srcdir)
1110
1111 # Used to extract compile flags for YCM.
1112 print-%:
1113         @echo $($*)
1114
1115 git-contrib:
1116         @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u
1117
1118 EXTRA_DIST += \
1119         tools/gdb-sd_dump_hashmaps.py
1120
1121 list-keys:
1122         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --list-keys
1123
1124 add-key:
1125         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --import -