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