chiark / gitweb /
Remove librt check
[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=6
42 LIBELOGIND_REVISION=0
43 LIBELOGIND_AGE=6
44
45 # Dirs of external packages
46 dbuspolicydir=@dbuspolicydir@
47 dbussessionservicedir=@dbussessionservicedir@
48 dbussystemservicedir=@dbussystemservicedir@
49 pamlibdir=@pamlibdir@
50 pamconfdir=@pamconfdir@
51 pkgconfiglibdir=$(libdir)/pkgconfig
52 polkitpolicydir=$(datadir)/polkit-1/actions
53 bashcompletiondir=@bashcompletiondir@
54 zshcompletiondir=@zshcompletiondir@
55 varlogdir=$(localstatedir)/log
56 elogindstatedir=$(localstatedir)/lib/elogind
57 catalogstatedir=$(elogindstatedir)/catalog
58 xinitrcdir=$(sysconfdir)/X11/xinit/xinitrc.d
59
60 # Our own, non-special dirs
61 pkgsysconfdir=$(sysconfdir)/elogind
62 userunitdir=$(prefix)/lib/elogind/user
63 userpresetdir=$(prefix)/lib/elogind/user-preset
64 tmpfilesdir=$(prefix)/lib/tmpfiles.d
65 sysusersdir=$(prefix)/lib/sysusers.d
66 sysctldir=$(prefix)/lib/sysctl.d
67 binfmtdir=$(prefix)/lib/binfmt.d
68 modulesloaddir=$(prefix)/lib/modules-load.d
69 networkdir=$(rootprefix)/lib/elogind/network
70 pkgincludedir=$(includedir)/elogind
71 systemgeneratordir=$(rootlibexecdir)/system-generators
72 usergeneratordir=$(prefix)/lib/elogind/user-generators
73 systemshutdowndir=$(rootlibexecdir)/system-shutdown
74 systemsleepdir=$(rootlibexecdir)/system-sleep
75 systemunitdir=$(rootprefix)/lib/elogind/system
76 systempresetdir=$(rootprefix)/lib/elogind/system-preset
77 udevrulesdir=$(rootprefix)/lib/udev/rules.d
78 catalogdir=$(prefix)/lib/elogind/catalog
79 kernelinstalldir = $(prefix)/lib/kernel/install.d
80 factory_etcdir = $(prefix)/share/factory/etc
81 factory_pamdir = $(prefix)/share/factory/etc/pam.d
82 bootlibdir = $(prefix)/lib/elogind/boot/efi
83
84 # And these are the special ones for /
85 rootprefix=@rootprefix@
86 rootbindir=$(rootprefix)/bin
87 rootlibexecdir=$(rootprefix)/lib/elogind
88
89 EXTRA_DIST =
90 BUILT_SOURCES =
91 INSTALL_EXEC_HOOKS =
92 UNINSTALL_EXEC_HOOKS =
93 INSTALL_DATA_HOOKS =
94 UNINSTALL_DATA_HOOKS =
95 DISTCLEAN_LOCAL_HOOKS =
96 CLEAN_LOCAL_HOOKS =
97 pkginclude_HEADERS =
98 noinst_LTLIBRARIES =
99 lib_LTLIBRARIES =
100 include_HEADERS =
101 noinst_DATA =
102 pkgconfiglib_DATA =
103 polkitpolicy_in_in_files =
104 polkitpolicy_in_files =
105 polkitpolicy_files =
106 dist_pkgsysconf_DATA =
107 nodist_pkgsysconf_DATA =
108 dist_pkgdata_DATA =
109 dist_dbuspolicy_DATA =
110 dist_dbussystemservice_DATA =
111 dist_systemunit_DATA_busnames =
112 dist_sysusers_DATA =
113 check_PROGRAMS =
114 check_DATA =
115 tests=
116 manual_tests =
117 TEST_EXTENSIONS = .py
118 PY_LOG_COMPILER = $(PYTHON)
119 if ENABLE_TESTS
120 noinst_PROGRAMS = $(manual_tests) $(tests)
121 TESTS = $(tests)
122 else
123 noinst_PROGRAMS =
124 TESTS =
125 endif
126
127 in_files = $(filter %.in,$(EXTRA_DIST))
128 in_in_files = $(filter %.in.in, $(in_files))
129 m4_files = $(filter %.m4,$(EXTRA_DIST) $(in_files:.m4.in=.m4))
130
131 CLEANFILES = $(BUILT_SOURCES) \
132         $(pkgconfiglib_DATA) \
133         $(in_files:.in=) $(in_in_files:.in.in=) \
134         $(m4_files:.m4=)
135
136 .PHONY: $(INSTALL_EXEC_HOOKS) $(UNINSTALL_EXEC_HOOKS) \
137         $(INSTALL_DATA_HOOKS) $(UNINSTALL_DATA_HOOKS) \
138         $(DISTCLEAN_LOCAL_HOOKS) $(CLEAN_LOCAL_HOOKS)
139
140 # FIXME a different pkttyagent path...
141
142 AM_CPPFLAGS = \
143         -include $(top_builddir)/config.h \
144         -DPKGSYSCONFDIR=\"$(pkgsysconfdir)\" \
145         -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
146         -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
147         -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
148         -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
149         -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
150         -DUSER_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/user\" \
151         -DUSER_DATA_UNIT_PATH=\"$(userunitdir)\" \
152         -DCERTIFICATE_ROOT=\"$(CERTIFICATEROOT)\" \
153         -DCATALOG_DATABASE=\"$(catalogstatedir)/database\" \
154         -DROOTPREFIX=\"$(rootprefix)\" \
155         -DRANDOM_SEED_DIR=\"$(localstatedir)/lib/elogind/\" \
156         -DRANDOM_SEED=\"$(localstatedir)/lib/elogind/random-seed\" \
157         -DSYSTEM_GENERATOR_PATH=\"$(systemgeneratordir)\" \
158         -DUSER_GENERATOR_PATH=\"$(usergeneratordir)\" \
159         -DSYSTEM_SHUTDOWN_PATH=\"$(systemshutdowndir)\" \
160         -DSYSTEM_SLEEP_PATH=\"$(systemsleepdir)\" \
161         -DELOGIND_KBD_MODEL_MAP=\"$(pkgdatadir)/kbd-model-map\" \
162         -DELOGIND_LANGUAGE_FALLBACK_MAP=\"$(pkgdatadir)/language-fallback-map\" \
163         -DX_SERVER=\"$(bindir)/X\" \
164         -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
165         -DKEXEC=\"$(KEXEC)\" \
166         -DLIBDIR=\"$(libdir)\" \
167         -DROOTLIBDIR=\"$(rootlibdir)\" \
168         -DROOTLIBEXECDIR=\"$(rootlibexecdir)\" \
169         -DTEST_DIR=\"$(abs_top_srcdir)/test\" \
170         -I $(top_srcdir)/src \
171         -I $(top_builddir)/src/shared \
172         -I $(top_srcdir)/src/shared \
173         -I $(top_srcdir)/src/login \
174         -I $(top_srcdir)/src/systemd \
175         -I $(top_srcdir)/src/libelogind/sd-bus \
176         -I $(top_srcdir)/src/libelogind/sd-event \
177         -I $(top_srcdir)/src/libelogind/sd-device \
178         $(UDEV_CFLAGS) \
179         $(OUR_CPPFLAGS)
180
181 AM_CFLAGS = $(OUR_CFLAGS)
182 AM_LDFLAGS = $(OUR_LDFLAGS)
183
184 # ------------------------------------------------------------------------------
185 define move-to-rootlibdir
186         if test "$(libdir)" != "$(rootlibdir)"; then \
187                 $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
188                 so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
189                 rm -f $(DESTDIR)$(libdir)/$$libname && \
190                 $(LN_S) --relative -f $(DESTDIR)$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
191                 mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
192         fi
193 endef
194
195 INSTALL_DIRS =
196
197 SHUTDOWN_TARGET_WANTS =
198 LOCAL_FS_TARGET_WANTS =
199 MULTI_USER_TARGET_WANTS =
200 GRAPHICAL_TARGET_WANTS =
201 RESCUE_TARGET_WANTS =
202 SYSINIT_TARGET_WANTS =
203 SOCKETS_TARGET_WANTS =
204 BUSNAMES_TARGET_WANTS =
205 TIMERS_TARGET_WANTS =
206 USER_SOCKETS_TARGET_WANTS =
207 USER_DEFAULT_TARGET_WANTS =
208 USER_BUSNAMES_TARGET_WANTS =
209
210 SYSTEM_UNIT_ALIASES =
211 USER_UNIT_ALIASES =
212 GENERAL_ALIASES =
213
214 install-target-wants-hook:
215         what="$(SHUTDOWN_TARGET_WANTS)" && wants=shutdown.target && dir=$(systemunitdir) && $(add-wants)
216         what="$(LOCAL_FS_TARGET_WANTS)" && wants=local-fs.target && dir=$(systemunitdir) && $(add-wants)
217         what="$(MULTI_USER_TARGET_WANTS)" && wants=multi-user.target && dir=$(systemunitdir) && $(add-wants)
218         what="$(GRAPHICAL_TARGET_WANTS)" && wants=graphical.target && dir=$(systemunitdir) && $(add-wants)
219         what="$(RESCUE_TARGET_WANTS)" && wants=rescue.target && dir=$(systemunitdir) && $(add-wants)
220         what="$(SYSINIT_TARGET_WANTS)" && wants=sysinit.target && dir=$(systemunitdir) && $(add-wants)
221         what="$(SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(systemunitdir) && $(add-wants)
222         what="$(TIMERS_TARGET_WANTS)" && wants=timers.target && dir=$(systemunitdir) && $(add-wants)
223         what="$(SLICES_TARGET_WANTS)" && wants=slices.target && dir=$(systemunitdir) && $(add-wants)
224         what="$(USER_SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(userunitdir) && $(add-wants)
225         what="$(USER_DEFAULT_TARGET_WANTS)" && wants=default.target && dir=$(userunitdir) && $(add-wants)
226
227 install-busnames-target-wants-hook:
228         what="$(BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(systemunitdir) && $(add-wants)
229         what="$(USER_BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(userunitdir) && $(add-wants)
230
231 define add-wants
232         [ -z "$$what" ] || ( \
233           dir=$(DESTDIR)$$dir/$$wants.wants && \
234           $(MKDIR_P) -m 0755 $$dir && \
235           cd $$dir && \
236           rm -f $$what && \
237           for i in $$what; do $(LN_S) ../$$i . || exit $$? ; done )
238 endef
239
240 install-directories-hook:
241         $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
242
243 install-aliases-hook:
244         set -- $(SYSTEM_UNIT_ALIASES) && \
245                 dir=$(systemunitdir) && $(install-aliases)
246         set -- $(USER_UNIT_ALIASES) && \
247                 dir=$(userunitdir) && $(install-relative-aliases)
248         set -- $(GENERAL_ALIASES) && \
249                 dir= && $(install-relative-aliases)
250
251 define install-aliases
252         while [ -n "$$1" ]; do \
253                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
254                 rm -f $(DESTDIR)$$dir/$$2 && \
255                 $(LN_S) $$1 $(DESTDIR)$$dir/$$2 && \
256                 shift 2 || exit $$?; \
257         done
258 endef
259
260 define install-relative-aliases
261         while [ -n "$$1" ]; do \
262                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
263                 rm -f $(DESTDIR)$$dir/$$2 && \
264                 $(LN_S) --relative $(DESTDIR)$$1 $(DESTDIR)$$dir/$$2 && \
265                 shift 2 || exit $$?; \
266         done
267 endef
268
269 install-touch-usr-hook:
270         touch -c $(DESTDIR)/$(prefix)
271
272 INSTALL_EXEC_HOOKS += \
273         install-target-wants-hook \
274         install-directories-hook \
275         install-aliases-hook \
276         install-touch-usr-hook
277
278 if ENABLE_KDBUS
279 INSTALL_EXEC_HOOKS += \
280         install-busnames-target-wants-hook
281 endif
282
283 # ------------------------------------------------------------------------------
284 AM_V_M4 = $(AM_V_M4_$(V))
285 AM_V_M4_ = $(AM_V_M4_$(AM_DEFAULT_VERBOSITY))
286 AM_V_M4_0 = @echo "  M4      " $@;
287
288 AM_V_XSLT = $(AM_V_XSLT_$(V))
289 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
290 AM_V_XSLT_0 = @echo "  XSLT    " $@;
291
292 AM_V_GPERF = $(AM_V_GPERF_$(V))
293 AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
294 AM_V_GPERF_0 = @echo "  GPERF   " $@;
295
296 AM_V_LN = $(AM_V_LN_$(V))
297 AM_V_LN_ = $(AM_V_LN_$(AM_DEFAULT_VERBOSITY))
298 AM_V_LN_0 = @echo "  LN      " $@;
299
300 AM_V_RM = $(AM_V_RM_$(V))
301 AM_V_RM_ = $(AM_V_RM_$(AM_DEFAULT_VERBOSITY))
302 AM_V_RM_0 = @echo "  RM      " $@;
303
304 # ------------------------------------------------------------------------------
305 rootbin_PROGRAMS =
306 bin_PROGRAMS =
307 rootlibexec_PROGRAMS =
308 systemgenerator_PROGRAMS =
309 dist_bashcompletion_DATA =
310 dist_zshcompletion_DATA =
311
312 dist_doc_DATA = \
313         README \
314         NEWS \
315         LICENSE.LGPL2.1 \
316         LICENSE.GPL2 \
317         LICENSE.MIT \
318         src/libelogind/sd-bus/PORTING-DBUS1 \
319         src/libelogind/sd-bus/DIFFERENCES \
320         src/libelogind/sd-bus/GVARIANT-SERIALIZATION
321
322 @INTLTOOL_POLICY_RULE@
323
324 # ------------------------------------------------------------------------------
325
326 MANPAGES =
327 MANPAGES_ALIAS =
328
329 include Makefile-man.am
330
331 .PHONY: man update-man-list
332 man: $(MANPAGES) $(MANPAGES_ALIAS) $(HTML_FILES) $(HTML_ALIAS)
333
334 XML_FILES = \
335         ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
336 HTML_FILES = \
337         ${XML_FILES:.xml=.html}
338 HTML_ALIAS = \
339         ${patsubst %.1,%.html,${patsubst %.3,%.html,${patsubst %.5,%.html,${patsubst %.7,%.html,${patsubst %.8,%.html,$(MANPAGES_ALIAS)}}}}}
340
341 if ENABLE_MANPAGES
342 man_MANS = \
343         $(MANPAGES) \
344         $(MANPAGES_ALIAS)
345
346 noinst_DATA += \
347         $(HTML_FILES) \
348         $(HTML_ALIAS)
349
350 CLEANFILES += \
351         $(man_MANS) \
352         $(HTML_FILES) \
353         $(HTML_ALIAS)
354
355 docs/html/man:
356         $(AM_V_at)$(MKDIR_P) $(dir $@)
357         $(AM_V_LN)$(LN_S) -f ../../man $@
358
359 noinst_DATA += \
360         docs/html/man
361
362 CLEANFILES += \
363         docs/html/man
364
365 endif
366
367 EXTRA_DIST += \
368         $(XML_FILES) \
369         $(HTML_FILES) \
370         $(HTML_ALIAS) \
371         $(man_MANS) \
372         tools/make-man-index.py \
373         tools/make-directive-index.py \
374         tools/xml_helper.py
375
376 # ------------------------------------------------------------------------------
377 noinst_LTLIBRARIES += \
378         libelogind-shared.la
379
380 libelogind_shared_la_SOURCES = \
381         src/shared/capability.c \
382         src/shared/capability.h \
383         src/shared/linux/auto_dev-ioctl.h \
384         src/shared/ioprio.h \
385         src/shared/missing.h \
386         src/shared/initreq.h \
387         src/shared/securebits.h \
388         src/shared/special.h \
389         src/shared/list.h \
390         src/shared/unaligned.h \
391         src/shared/macro.h \
392         src/shared/def.h \
393         src/shared/sparse-endian.h \
394         src/shared/refcnt.h \
395         src/shared/udev-util.h \
396         src/shared/device-nodes.c \
397         src/shared/device-nodes.h \
398         src/shared/util.c \
399         src/shared/util.h \
400         src/shared/virt.c \
401         src/shared/virt.h \
402         src/shared/architecture.c \
403         src/shared/architecture.h \
404         src/shared/efivars.c \
405         src/shared/efivars.h \
406         src/shared/fstab-util.c \
407         src/shared/fstab-util.h \
408         src/shared/path-util.c \
409         src/shared/path-util.h \
410         src/shared/time-util.c \
411         src/shared/time-util.h \
412         src/shared/locale-util.c \
413         src/shared/locale-util.h \
414         src/shared/mempool.c \
415         src/shared/mempool.h \
416         src/shared/hashmap.c \
417         src/shared/hashmap.h \
418         src/shared/siphash24.c \
419         src/shared/siphash24.h \
420         src/shared/set.h \
421         src/shared/fdset.c \
422         src/shared/fdset.h \
423         src/shared/prioq.c \
424         src/shared/prioq.h \
425         src/shared/sleep-config.c \
426         src/shared/sleep-config.h \
427         src/shared/strv.c \
428         src/shared/strv.h \
429         src/shared/env-util.c \
430         src/shared/env-util.h \
431         src/shared/strbuf.c \
432         src/shared/strbuf.h \
433         src/shared/strxcpyx.c \
434         src/shared/strxcpyx.h \
435         src/shared/conf-parser.c \
436         src/shared/conf-parser.h \
437         src/shared/log.c \
438         src/shared/log.h \
439         src/shared/ratelimit.h \
440         src/shared/ratelimit.c \
441         src/shared/exit-status.c \
442         src/shared/exit-status.h \
443         src/shared/utf8.c \
444         src/shared/utf8.h \
445         src/shared/gunicode.c \
446         src/shared/gunicode.h \
447         src/shared/pager.c \
448         src/shared/pager.h \
449         src/shared/socket-util.c \
450         src/shared/socket-util.h \
451         src/shared/in-addr-util.c \
452         src/shared/in-addr-util.h \
453         src/shared/ether-addr-util.h \
454         src/shared/conf-files.c \
455         src/shared/conf-files.h \
456         src/shared/cgroup-util.c \
457         src/shared/cgroup-util.h \
458         src/shared/cgroup-show.c \
459         src/shared/cgroup-show.h \
460         src/shared/unit-name.c \
461         src/shared/unit-name.h \
462         src/shared/watchdog.c \
463         src/shared/watchdog.h \
464         src/shared/replace-var.c \
465         src/shared/replace-var.h \
466         src/shared/spawn-polkit-agent.c \
467         src/shared/spawn-polkit-agent.h \
468         src/shared/clock-util.c \
469         src/shared/clock-util.h \
470         src/shared/calendarspec.c \
471         src/shared/calendarspec.h \
472         src/shared/fileio.c \
473         src/shared/fileio.h \
474         src/shared/output-mode.h \
475         src/shared/MurmurHash2.c \
476         src/shared/MurmurHash2.h \
477         src/shared/acpi-fpdt.h \
478         src/shared/acpi-fpdt.c \
479         src/shared/boot-timestamps.h \
480         src/shared/boot-timestamps.c \
481         src/shared/mkdir.c \
482         src/shared/mkdir.h \
483         src/shared/smack-util.c \
484         src/shared/smack-util.h \
485         src/shared/apparmor-util.c \
486         src/shared/apparmor-util.h \
487         src/shared/ima-util.c \
488         src/shared/ima-util.h \
489         src/shared/ptyfwd.c \
490         src/shared/ptyfwd.h \
491         src/shared/errno-list.c \
492         src/shared/errno-list.h \
493         src/shared/af-list.c \
494         src/shared/af-list.h \
495         src/shared/arphrd-list.c \
496         src/shared/arphrd-list.h \
497         src/shared/cap-list.c \
498         src/shared/cap-list.h \
499         src/shared/audit.c \
500         src/shared/audit.h \
501         src/shared/xml.c \
502         src/shared/xml.h \
503         src/shared/json.c \
504         src/shared/json.h \
505         src/shared/selinux-util.c \
506         src/shared/selinux-util.h \
507         src/shared/label.c \
508         src/shared/label.h \
509         src/shared/socket-label.c \
510         src/shared/mkdir-label.c \
511         src/shared/fileio-label.h \
512         src/shared/fileio-label.c \
513         src/shared/bus-label.c \
514         src/shared/bus-label.h \
515         src/shared/gpt.h \
516         src/shared/clean-ipc.h \
517         src/shared/clean-ipc.c \
518         src/shared/login-shared.c \
519         src/shared/login-shared.h \
520         src/shared/ring.c \
521         src/shared/ring.h \
522         src/shared/barrier.c \
523         src/shared/barrier.h \
524         src/shared/pty.c \
525         src/shared/pty.h \
526         src/shared/async.c \
527         src/shared/async.h \
528         src/shared/base-filesystem.c \
529         src/shared/base-filesystem.h \
530         src/shared/memfd-util.c \
531         src/shared/memfd-util.h \
532         src/shared/uid-range.c \
533         src/shared/uid-range.h \
534         src/shared/nss-util.h \
535         src/shared/verbs.c \
536         src/shared/verbs.h \
537         src/shared/sigbus.c \
538         src/shared/sigbus.h \
539         src/shared/build.h \
540         src/shared/import-util.c \
541         src/shared/import-util.h \
542         src/shared/sysctl-util.c \
543         src/shared/sysctl-util.h
544
545 nodist_libelogind_shared_la_SOURCES = \
546         src/shared/errno-from-name.h \
547         src/shared/errno-to-name.h \
548         src/shared/af-from-name.h \
549         src/shared/af-to-name.h \
550         src/shared/arphrd-from-name.h \
551         src/shared/arphrd-to-name.h \
552         src/shared/cap-from-name.h \
553         src/shared/cap-to-name.h
554
555 libelogind_shared_la_CFLAGS = \
556         $(AM_CFLAGS) \
557         $(CAP_CFLAGS) \
558         $(SECCOMP_CFLAGS) \
559         -pthread
560
561 libelogind_shared_la_LIBADD = \
562         $(CAP_LIBS) \
563         -lm
564
565 # ------------------------------------------------------------------------------
566 if HAVE_ACL
567 noinst_LTLIBRARIES += \
568         libelogind-acl.la
569
570 libelogind_acl_la_SOURCES = \
571         src/shared/acl-util.c \
572         src/shared/acl-util.h
573
574 libelogind_acl_la_CFLAGS = \
575         $(AM_CFLAGS) \
576         $(ACL_CFLAGS)
577
578 libelogind_acl_la_LIBADD = \
579         $(ACL_LIBS)
580 endif
581
582 gperf_txt_sources = \
583         src/shared/errno-list.txt \
584         src/shared/af-list.txt \
585         src/shared/arphrd-list.txt \
586         src/shared/cap-list.txt
587
588 BUILT_SOURCES += \
589         $(gperf_gperf_sources:-gperf.gperf=-gperf.c) \
590         $(gperf_txt_sources:-list.txt=-from-name.h) \
591         $(gperf_txt_sources:-list.txt=-to-name.h)
592
593 CLEANFILES += \
594         $(gperf_txt_sources:-list.txt=-from-name.gperf)
595 DISTCLEANFILES = \
596         $(gperf_txt_sources)
597
598 EXTRA_DIST += \
599         $(gperf_gperf_m4_sources) \
600         $(gperf_gperf_sources) \
601         $(gperf_txt_sources:-list.txt=-from-name.gperf)
602
603 CLEANFILES += \
604         $(gperf_txt_sources)
605
606 %-from-name.gperf: %-list.txt
607         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct $(notdir $*)_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
608
609 %-from-name.h: %-from-name.gperf
610         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_$(notdir $*) -H hash_$(notdir $*)_name -p -C <$< >$@
611
612
613 src/shared/errno-list.txt:
614         $(AM_V_at)$(MKDIR_P) $(dir $@)
615         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include errno.h - </dev/null | $(AWK) '/^#define[ \t]+E[^ _]+[ \t]+/ { print $$2; }' >$@
616
617 src/shared/errno-to-name.h: src/shared/errno-list.txt
618         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const errno_names[] = { "} !/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
619
620
621 src/shared/af-list.txt:
622         $(AM_V_at)$(MKDIR_P) $(dir $@)
623         $(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; }' >$@
624
625 src/shared/af-to-name.h: src/shared/af-list.txt
626         $(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 "};"}' <$< >$@
627
628
629 src/shared/arphrd-list.txt:
630         $(AM_V_at)$(MKDIR_P) $(dir $@)
631         $(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_//' >$@
632
633 src/shared/arphrd-to-name.h: src/shared/arphrd-list.txt
634         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const arphrd_names[] = { "} !/CISCO/ { printf "[ARPHRD_%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
635
636 src/shared/arphrd-from-name.gperf: src/shared/arphrd-list.txt
637         $(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 }' <$< >$@
638
639
640 src/shared/cap-list.txt:
641         $(AM_V_at)$(MKDIR_P) $(dir $@)
642         $(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 >$@
643
644 src/shared/cap-to-name.h: src/shared/cap-list.txt
645         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const capability_names[] = { "} { printf "[%s] = \"%s\",\n", $$1, tolower($$1) } END{print "};"}' <$< >$@
646
647 src/shared/cap-from-name.gperf: src/shared/cap-list.txt
648         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct capability_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
649
650 src/shared/cap-from-name.h: src/shared/cap-from-name.gperf
651         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_capability -H hash_capability_name -p -C <$< >$@
652
653 # ------------------------------------------------------------------------------
654 dist_factory_etc_DATA = \
655         factory/etc/nsswitch.conf
656
657 if HAVE_PAM
658 dist_factory_pam_DATA = \
659         factory/etc/pam.d/system-auth \
660         factory/etc/pam.d/other
661 endif
662
663 # ------------------------------------------------------------------------------
664 noinst_LTLIBRARIES += \
665         libelogind-internal.la
666
667 libelogind_internal_la_SOURCES = \
668         src/systemd/sd-bus.h \
669         src/systemd/sd-bus-protocol.h \
670         src/systemd/sd-bus-vtable.h \
671         src/systemd/sd-utf8.h \
672         src/systemd/sd-event.h \
673         src/systemd/sd-rtnl.h \
674         src/systemd/sd-resolve.h \
675         src/systemd/sd-login.h \
676         src/systemd/sd-id128.h \
677         src/systemd/sd-daemon.h \
678         src/systemd/sd-path.h \
679         src/systemd/sd-network.h \
680         src/systemd/sd-device.h \
681         src/libelogind/sd-bus/sd-bus.c \
682         src/libelogind/sd-bus/bus-control.c \
683         src/libelogind/sd-bus/bus-control.h \
684         src/libelogind/sd-bus/bus-error.c \
685         src/libelogind/sd-bus/bus-error.h \
686         src/libelogind/sd-bus/bus-common-errors.h \
687         src/libelogind/sd-bus/bus-common-errors.c \
688         src/libelogind/sd-bus/bus-internal.c \
689         src/libelogind/sd-bus/bus-internal.h \
690         src/libelogind/sd-bus/bus-socket.c \
691         src/libelogind/sd-bus/bus-socket.h \
692         src/libelogind/sd-bus/bus-kernel.c \
693         src/libelogind/sd-bus/bus-kernel.h \
694         src/libelogind/sd-bus/bus-container.c \
695         src/libelogind/sd-bus/bus-container.h \
696         src/libelogind/sd-bus/bus-message.c \
697         src/libelogind/sd-bus/bus-message.h \
698         src/libelogind/sd-bus/bus-creds.c \
699         src/libelogind/sd-bus/bus-creds.h \
700         src/libelogind/sd-bus/bus-signature.c \
701         src/libelogind/sd-bus/bus-signature.h \
702         src/libelogind/sd-bus/bus-type.c \
703         src/libelogind/sd-bus/bus-type.h \
704         src/libelogind/sd-bus/bus-match.c \
705         src/libelogind/sd-bus/bus-match.h \
706         src/libelogind/sd-bus/bus-bloom.c \
707         src/libelogind/sd-bus/bus-bloom.h \
708         src/libelogind/sd-bus/bus-introspect.c \
709         src/libelogind/sd-bus/bus-introspect.h \
710         src/libelogind/sd-bus/bus-objects.c \
711         src/libelogind/sd-bus/bus-objects.h \
712         src/libelogind/sd-bus/bus-gvariant.c \
713         src/libelogind/sd-bus/bus-gvariant.h \
714         src/libelogind/sd-bus/bus-convenience.c \
715         src/libelogind/sd-bus/bus-track.c \
716         src/libelogind/sd-bus/bus-track.h \
717         src/libelogind/sd-bus/bus-util.c \
718         src/libelogind/sd-bus/bus-util.h \
719         src/libelogind/sd-bus/bus-slot.c \
720         src/libelogind/sd-bus/bus-slot.h \
721         src/libelogind/sd-bus/bus-protocol.h \
722         src/libelogind/sd-bus/kdbus.h \
723         src/libelogind/sd-utf8/sd-utf8.c \
724         src/libelogind/sd-event/sd-event.c \
725         src/libelogind/sd-event/event-util.h \
726         src/libelogind/sd-rtnl/sd-rtnl.c \
727         src/libelogind/sd-rtnl/rtnl-internal.h \
728         src/libelogind/sd-rtnl/rtnl-message.c \
729         src/libelogind/sd-rtnl/rtnl-types.h \
730         src/libelogind/sd-rtnl/rtnl-types.c \
731         src/libelogind/sd-rtnl/rtnl-util.h \
732         src/libelogind/sd-rtnl/rtnl-util.c \
733         src/libelogind/sd-rtnl/local-addresses.h \
734         src/libelogind/sd-rtnl/local-addresses.c \
735         src/libelogind/sd-id128/sd-id128.c \
736         src/libelogind/sd-daemon/sd-daemon.c \
737         src/libelogind/sd-login/sd-login.c \
738         src/libelogind/sd-path/sd-path.c \
739         src/libelogind/sd-network/sd-network.c \
740         src/libelogind/sd-network/network-util.h \
741         src/libelogind/sd-network/network-util.c \
742         src/libelogind/sd-device/device-internal.h \
743         src/libelogind/sd-device/device-util.h \
744         src/libelogind/sd-device/sd-device.c \
745         src/libelogind/sd-device/device-private.c \
746         src/libelogind/sd-device/device-private.h
747
748 nodist_libelogind_internal_la_SOURCES = \
749         src/libelogind/libelogind.sym
750
751 libelogind_internal_la_CFLAGS = \
752         $(AM_CFLAGS) \
753         -pthread
754
755 BUILT_SOURCES += \
756        src/libelogind/libelogind.sym
757
758
759 libelogind_internal_la_LIBADD = \
760         libelogind-shared.la
761
762 libelogind_internal_la_LDFLAGS = \
763         $(AM_LDFLAGS) \
764         -version-info $(LIBELOGIND_CURRENT):$(LIBELOGIND_REVISION):$(LIBELOGIND_AGE) \
765         -Wl,--version-script=$(top_builddir)/src/libelogind/libelogind.sym
766
767 libelogind-install-hook:
768         libname=libelogind.so && $(move-to-rootlibdir)
769
770 libelogind-uninstall-hook:
771         rm -f $(DESTDIR)$(rootlibdir)/libelogind.so*
772
773 INSTALL_EXEC_HOOKS += libelogind-install-hook
774 UNINSTALL_EXEC_HOOKS += libelogind-uninstall-hook
775
776 pkgconfiglib_DATA += \
777         src/libelogind/libsystemd.pc
778
779 pkginclude_HEADERS += \
780         src/systemd/sd-login.h
781
782 # ------------------------------------------------------------------------------
783 elogind_SOURCES = \
784         src/login/logind.c \
785         src/login/logind.h
786
787 nodist_elogind_SOURCES = \
788         src/login/logind-gperf.c
789
790 elogind_LDADD = \
791         libelogind-core.la
792
793 libelogind_core_la_SOURCES = \
794         src/login/logind-core.c \
795         src/login/logind-device.c \
796         src/login/logind-device.h \
797         src/login/logind-button.c \
798         src/login/logind-button.h \
799         src/login/logind-action.c \
800         src/login/logind-action.h \
801         src/login/logind-seat.c \
802         src/login/logind-seat.h \
803         src/login/logind-session.c \
804         src/login/logind-session.h \
805         src/login/logind-session-device.c \
806         src/login/logind-session-device.h \
807         src/login/logind-user.c \
808         src/login/logind-user.h \
809         src/login/logind-inhibit.c \
810         src/login/logind-inhibit.h \
811         src/login/logind-dbus.c \
812         src/login/logind-session-dbus.c \
813         src/login/logind-seat-dbus.c \
814         src/login/logind-user-dbus.c \
815         src/login/logind-acl.h
816
817 libelogind_core_la_LIBADD = \
818         $(UDEV_LIBS) \
819         libelogind-internal.la
820
821 if HAVE_ACL
822 libelogind_core_la_SOURCES += \
823         src/login/logind-acl.c
824
825 libelogind_core_la_LIBADD += \
826         libelogind-acl.la
827 endif
828
829 noinst_LTLIBRARIES += \
830         libelogind-core.la
831
832 rootlibexec_PROGRAMS += \
833         elogind
834
835 loginctl_SOURCES = \
836         src/login/loginctl.c \
837         src/login/sysfs-show.h \
838         src/login/sysfs-show.c
839
840 loginctl_LDADD = \
841         $(UDEV_LIBS) \
842         libelogind-internal.la \
843         libelogind-shared.la
844
845 rootbin_PROGRAMS += \
846         loginctl
847
848 dist_bashcompletion_DATA += \
849         shell-completion/bash/loginctl
850
851 dist_zshcompletion_DATA += \
852         shell-completion/zsh/_loginctl \
853         shell-completion/zsh/_systemd-inhibit
854
855 systemd_inhibit_SOURCES = \
856         src/login/inhibit.c
857
858 systemd_inhibit_LDADD = \
859         libelogind-internal.la \
860         libelogind-shared.la
861
862 rootbin_PROGRAMS += \
863         systemd-inhibit
864
865 test_login_SOURCES = \
866         src/libelogind/sd-login/test-login.c
867
868 test_login_LDADD = \
869         libelogind-internal.la \
870         libelogind-shared.la
871
872 test_login_shared_SOURCES = \
873         src/login/test-login-shared.c
874
875 test_login_shared_LDADD = \
876         libelogind-internal.la \
877         libelogind-shared.la
878
879 test_inhibit_SOURCES = \
880         src/login/test-inhibit.c
881
882 test_inhibit_LDADD = \
883         libelogind-internal.la \
884         libelogind-shared.la
885
886 test_login_tables_SOURCES = \
887         src/login/test-login-tables.c
888
889 test_login_tables_LDADD = \
890         libelogind-core.la
891
892 manual_tests += \
893         test-login \
894         test-inhibit
895
896 tests += \
897         test-login-tables \
898         test-login-shared
899
900 if HAVE_PAM
901 pam_elogind_la_SOURCES = \
902         src/login/pam_elogind.sym \
903         src/login/pam_elogind.c
904
905 pam_elogind_la_CFLAGS = \
906         $(AM_CFLAGS) \
907         $(PAM_CFLAGS) \
908         -fvisibility=hidden
909
910 pam_elogind_la_LDFLAGS = \
911         $(AM_LDFLAGS) \
912         -module \
913         -export-dynamic \
914         -avoid-version \
915         -shared \
916         -Wl,--version-script=$(top_srcdir)/src/login/pam_elogind.sym
917
918 pam_elogind_la_LIBADD = \
919         libelogind-internal.la \
920         $(PAM_LIBS)
921
922 pamlib_LTLIBRARIES = \
923         pam_elogind.la
924
925 dist_pamconf_DATA = \
926         src/login/elogind-user
927
928 endif
929
930 dist_dbussystemservice_DATA += \
931         src/login/org.freedesktop.login1.service
932
933 dist_dbuspolicy_DATA += \
934         src/login/org.freedesktop.login1.conf
935
936 dist_pkgsysconf_DATA += \
937         src/login/logind.conf
938
939 polkitpolicy_files += \
940         src/login/org.freedesktop.login1.policy
941
942 INSTALL_DIRS += \
943         $(elogindstatedir)
944
945 SYSTEM_UNIT_ALIASES += \
946         elogind.service dbus-org.freedesktop.login1.service
947
948 dist_udevrules_DATA = \
949         src/login/70-uaccess.rules \
950         src/login/70-power-switch.rules
951
952 nodist_udevrules_DATA = \
953         src/login/71-seat.rules \
954         src/login/73-seat-late.rules
955
956 polkitpolicy_in_files += \
957         src/login/org.freedesktop.login1.policy.in
958
959 gperf_gperf_sources = \
960         src/login/logind-gperf.gperf
961
962 EXTRA_DIST += \
963         src/login/71-seat.rules.in \
964         src/login/73-seat-late.rules.in
965
966 # ------------------------------------------------------------------------------
967 substitutions = \
968        '|rootlibexecdir=$(rootlibexecdir)|' \
969        '|rootbindir=$(rootbindir)|' \
970        '|bindir=$(bindir)|' \
971        '|pkgsysconfdir=$(pkgsysconfdir)|' \
972        '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
973        '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
974        '|pkgdatadir=$(pkgdatadir)|' \
975        '|systemunitdir=$(systemunitdir)|' \
976        '|userunitdir=$(userunitdir)|' \
977        '|systempresetdir=$(systempresetdir)|' \
978        '|userpresetdir=$(userpresetdir)|' \
979        '|udevrulesdir=$(udevrulesdir)|' \
980        '|catalogdir=$(catalogdir)|' \
981        '|tmpfilesdir=$(tmpfilesdir)|' \
982        '|sysusersdir=$(sysusersdir)|' \
983        '|sysctldir=$(sysctldir)|' \
984        '|systemgeneratordir=$(systemgeneratordir)|' \
985        '|usergeneratordir=$(usergeneratordir)|' \
986        '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
987        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
988        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
989        '|PACKAGE_URL=$(PACKAGE_URL)|' \
990        '|RANDOM_SEED_DIR=$(localstatedir)/lib/elogind/|' \
991        '|RANDOM_SEED=$(localstatedir)/lib/elogind/random-seed|' \
992        '|prefix=$(prefix)|' \
993        '|exec_prefix=$(exec_prefix)|' \
994        '|libdir=$(libdir)|' \
995        '|includedir=$(includedir)|' \
996        '|VERSION=$(VERSION)|' \
997        '|rootprefix=$(rootprefix)|' \
998        '|udevlibexecdir=$(udevlibexecdir)|' \
999        '|SUSHELL=$(SUSHELL)|' \
1000        '|DEBUGTTY=$(DEBUGTTY)|' \
1001        '|MKDIR_P=$(MKDIR_P)|' \
1002        '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
1003        '|VARLOGDIR=$(varlogdir)|' \
1004        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
1005        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
1006        '|PYTHON=$(PYTHON)|' \
1007        '|PYTHON_BINARY=$(PYTHON_BINARY)|' \
1008        '|NTP_SERVERS=$(NTP_SERVERS)|' \
1009        '|DNS_SERVERS=$(DNS_SERVERS)|' \
1010        '|systemuidmax=$(SYSTEM_UID_MAX)|' \
1011        '|systemgidmax=$(SYSTEM_GID_MAX)|' \
1012        '|TTY_GID=$(TTY_GID)|' \
1013        '|systemsleepdir=$(systemsleepdir)|' \
1014        '|systemshutdowndir=$(systemshutdowndir)|' \
1015        '|binfmtdir=$(binfmtdir)|' \
1016        '|modulesloaddir=$(modulesloaddir)|'
1017
1018 SED_PROCESS = \
1019         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
1020         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
1021                 < $< > $@
1022
1023 units/%: units/%.in
1024         $(SED_PROCESS)
1025
1026 man/%: man/%.in
1027         $(SED_PROCESS)
1028
1029 sysctl.d/%: sysctl.d/%.in
1030         $(SED_PROCESS)
1031
1032 %.pc: %.pc.in
1033         $(SED_PROCESS)
1034
1035 %.conf: %.conf.in
1036         $(SED_PROCESS)
1037
1038 src/%.policy.in: src/%.policy.in.in
1039         $(SED_PROCESS)
1040
1041 shell-completion/%: shell-completion/%.in
1042         $(SED_PROCESS)
1043
1044 %.rules: %.rules.in
1045         $(SED_PROCESS)
1046
1047 %.conf: %.conf.in
1048         $(SED_PROCESS)
1049
1050 %.sh: %.sh.in
1051         $(SED_PROCESS)
1052         $(AM_V_GEN)chmod +x $@
1053
1054 src/%.c: src/%.gperf
1055         $(AM_V_at)$(MKDIR_P) $(dir $@)
1056         $(AM_V_GPERF)$(GPERF) < $< > $@
1057
1058 src/%: src/%.m4
1059         $(AM_V_at)$(MKDIR_P) $(dir $@)
1060         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
1061
1062 sysusers.d/%: sysusers.d/%.m4
1063         $(AM_V_at)$(MKDIR_P) $(dir $@)
1064         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
1065
1066 tmpfiles.d/%: tmpfiles.d/%.m4
1067         $(AM_V_at)$(MKDIR_P) $(dir $@)
1068         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
1069
1070
1071 units/%: units/%.m4
1072         $(AM_V_at)$(MKDIR_P) $(dir $@)
1073         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
1074
1075 units/user/%: units/user/%.m4
1076         $(AM_V_at)$(MKDIR_P) $(dir $@)
1077         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
1078
1079 if ENABLE_POLKIT
1080 nodist_polkitpolicy_DATA = \
1081         $(polkitpolicy_files) \
1082         $(polkitpolicy_in_in_files:.policy.in.in=.policy)
1083 endif
1084
1085 EXTRA_DIST += \
1086         $(polkitpolicy_in_files) \
1087         $(polkitpolicy_in_in_files)
1088
1089 # ------------------------------------------------------------------------------
1090 if ENABLE_MANPAGES
1091 man/custom-entities.ent: configure.ac
1092         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
1093         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
1094          printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
1095          > $@ # '
1096
1097 DISTCLEANFILES += \
1098         man/custom-entities.ent
1099
1100 XSLTPROC_FLAGS = \
1101         --nonet \
1102         --xinclude \
1103         --stringparam man.output.quietly 1 \
1104         --stringparam funcsynopsis.style ansi \
1105         --stringparam man.authors.section.enabled 0 \
1106         --stringparam man.copyright.section.enabled 0 \
1107         --stringparam elogind.version $(VERSION) \
1108         --path '$(builddir)/man:$(srcdir)/man'
1109
1110 XSLTPROC_PROCESS_MAN = \
1111         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
1112
1113 XSLTPROC_PROCESS_HTML = \
1114         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
1115
1116 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
1117         $(XSLTPROC_PROCESS_MAN)
1118
1119 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
1120         $(XSLTPROC_PROCESS_MAN)
1121
1122 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
1123         $(XSLTPROC_PROCESS_MAN)
1124
1125 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
1126         $(XSLTPROC_PROCESS_MAN)
1127
1128 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
1129         $(XSLTPROC_PROCESS_MAN)
1130
1131 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
1132         $(XSLTPROC_PROCESS_HTML)
1133
1134 define html-alias
1135         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
1136 endef
1137
1138 endif
1139
1140 EXTRA_DIST += \
1141         man/custom-html.xsl \
1142         man/custom-man.xsl
1143
1144 install-exec-hook: $(INSTALL_EXEC_HOOKS)
1145
1146 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
1147
1148 install-data-hook: $(INSTALL_DATA_HOOKS)
1149
1150 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
1151
1152 clean-local: $(CLEAN_LOCAL_HOOKS)
1153         rm -rf $(abs_srcdir)/install-tree
1154
1155 DISTCHECK_CONFIGURE_FLAGS = \
1156         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
1157         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
1158         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
1159         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
1160         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
1161         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
1162         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
1163         --with-rootprefix=$$dc_install_base \
1164         --disable-split-usr \
1165         --enable-kdbus
1166
1167 DISTCHECK_CONFIGURE_FLAGS += \
1168         --with-sysvinit-path= \
1169         --with-sysvrcnd-path=
1170
1171 if ENABLE_GTK_DOC
1172 DISTCHECK_CONFIGURE_FLAGS += \
1173         --enable-gtk-doc
1174 endif
1175
1176 #
1177 # Require python when making dist
1178 #
1179 .PHONY: dist-check-help
1180
1181 dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS)
1182         for i in $(abspath $^); do                                             \
1183             if $$i  --help | grep -v 'default:' | grep -E -q '.{80}.' ; then   \
1184                 echo "$(basename $$i) --help output is too wide:";             \
1185                 $$i  --help | awk 'length > 80' | grep -E --color=yes '.{80}'; \
1186                 exit 1;                                                        \
1187             fi; done
1188
1189 dist: dist-check-python