chiark / gitweb /
Introduce udev object cleanup functions
[elogind.git] / Makefile.am
1 #  -*- Mode: makefile; indent-tabs-mode: t -*-
2 #
3 #  This file is part of systemd.
4 #
5 #  Copyright 2010-2012 Lennart Poettering
6 #  Copyright 2010-2012 Kay Sievers
7 #  Copyright 2013 Zbigniew JÄ™drzejewski-Szmek
8 #
9 #  systemd is free software; you can redistribute it and/or modify it
10 #  under the terms of the GNU Lesser General Public License as published by
11 #  the Free Software Foundation; either version 2.1 of the License, or
12 #  (at your option) any later version.
13 #
14 #  systemd is distributed in the hope that it will be useful, but
15 #  WITHOUT ANY WARRANTY; without even the implied warranty of
16 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 #  Lesser General Public License for more details.
18 #
19 #  You should have received a copy of the GNU Lesser General Public License
20 #  along with systemd; If not, see <http://www.gnu.org/licenses/>.
21
22 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
23 AM_MAKEFLAGS = --no-print-directory
24 AUTOMAKE_OPTIONS = color-tests parallel-tests
25
26 SUBDIRS = . po
27
28 # remove targets if the command fails
29 .DELETE_ON_ERROR:
30
31 # keep intermediate files
32 .SECONDARY:
33
34 # Keep the test-suite.log
35 .PRECIOUS: $(TEST_SUITE_LOG) Makefile
36
37 LIBUDEV_CURRENT=5
38 LIBUDEV_REVISION=0
39 LIBUDEV_AGE=4
40
41 LIBGUDEV_CURRENT=1
42 LIBGUDEV_REVISION=3
43 LIBGUDEV_AGE=1
44
45 LIBSYSTEMD_LOGIN_CURRENT=9
46 LIBSYSTEMD_LOGIN_REVISION=1
47 LIBSYSTEMD_LOGIN_AGE=9
48
49 LIBSYSTEMD_DAEMON_CURRENT=0
50 LIBSYSTEMD_DAEMON_REVISION=10
51 LIBSYSTEMD_DAEMON_AGE=0
52
53 LIBSYSTEMD_ID128_CURRENT=0
54 LIBSYSTEMD_ID128_REVISION=26
55 LIBSYSTEMD_ID128_AGE=0
56
57 LIBSYSTEMD_JOURNAL_CURRENT=11
58 LIBSYSTEMD_JOURNAL_REVISION=3
59 LIBSYSTEMD_JOURNAL_AGE=11
60
61 # Dirs of external packages
62 dbuspolicydir=@dbuspolicydir@
63 dbussessionservicedir=@dbussessionservicedir@
64 dbussystemservicedir=@dbussystemservicedir@
65 dbusinterfacedir=@dbusinterfacedir@
66 pamlibdir=@pamlibdir@
67 pamconfdir=@pamconfdir@
68 pkgconfigdatadir=$(datadir)/pkgconfig
69 pkgconfiglibdir=$(libdir)/pkgconfig
70 polkitpolicydir=$(datadir)/polkit-1/actions
71 bashcompletiondir=@bashcompletiondir@
72 zshcompletiondir=@zshcompletiondir@
73 rpmmacrosdir=$(prefix)/lib/rpm/macros.d
74 sysvinitdir=$(SYSTEM_SYSVINIT_PATH)
75 sysvrcnddir=$(SYSTEM_SYSVRCND_PATH)
76 varlogdir=$(localstatedir)/log
77 systemdstatedir=$(localstatedir)/lib/systemd
78 catalogstatedir=$(systemdstatedir)/catalog
79
80 # Our own, non-special dirs
81 pkgsysconfdir=$(sysconfdir)/systemd
82 userunitdir=$(prefix)/lib/systemd/user
83 userpresetdir=$(prefix)/lib/systemd/user-preset
84 tmpfilesdir=$(prefix)/lib/tmpfiles.d
85 sysctldir=$(prefix)/lib/sysctl.d
86 pkgincludedir=$(includedir)/systemd
87 systemgeneratordir=$(rootlibexecdir)/system-generators
88 usergeneratordir=$(prefix)/lib/systemd/user-generators
89 systemshutdowndir=$(rootlibexecdir)/system-shutdown
90 systemsleepdir=$(rootlibexecdir)/system-sleep
91 systemunitdir=$(rootprefix)/lib/systemd/system
92 systempresetdir=$(rootprefix)/lib/systemd/system-preset
93 udevlibexecdir=$(rootprefix)/lib/udev
94 udevhomedir=$(udevlibexecdir)
95 udevrulesdir=$(udevlibexecdir)/rules.d
96 udevhwdbdir=$(udevlibexecdir)/hwdb.d
97 catalogdir=$(prefix)/lib/systemd/catalog
98 kernelinstalldir = $(prefix)/lib/kernel/install.d
99
100 # And these are the special ones for /
101 rootprefix=@rootprefix@
102 rootbindir=$(rootprefix)/bin
103 rootlibexecdir=$(rootprefix)/lib/systemd
104
105 CLEANFILES = $(BUILT_SOURCES)
106 DISTCLEANFILES =
107 EXTRA_DIST =
108 BUILT_SOURCES =
109 INSTALL_EXEC_HOOKS =
110 UNINSTALL_EXEC_HOOKS =
111 INSTALL_DATA_HOOKS =
112 UNINSTALL_DATA_HOOKS =
113 DISTCLEAN_LOCAL_HOOKS =
114 CLEAN_LOCAL_HOOKS =
115 pkginclude_HEADERS =
116 noinst_LTLIBRARIES =
117 lib_LTLIBRARIES =
118 include_HEADERS =
119 noinst_DATA =
120 pkgconfiglib_DATA =
121 polkitpolicy_in_in_files =
122 polkitpolicy_in_files =
123 polkitpolicy_files =
124 dist_udevrules_DATA =
125 nodist_udevrules_DATA =
126 dist_pkgsysconf_DATA =
127 dist_pkgdata_DATA =
128 dist_dbuspolicy_DATA =
129 dbusinterface_DATA =
130 dist_dbussystemservice_DATA =
131 check_PROGRAMS =
132 check_DATA =
133 tests=
134 manual_tests =
135 if ENABLE_TESTS
136 noinst_PROGRAMS = $(manual_tests) $(tests)
137 TESTS = $(tests)
138 else
139 noinst_PROGRAMS =
140 TESTS =
141 endif
142 udevlibexec_PROGRAMS =
143
144 AM_CPPFLAGS = \
145         -include $(top_builddir)/config.h \
146         -DPKGSYSCONFDIR=\"$(pkgsysconfdir)\" \
147         -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
148         -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
149         -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
150         -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
151         -DUSER_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/user\" \
152         -DUSER_DATA_UNIT_PATH=\"$(userunitdir)\" \
153         -DCATALOG_DATABASE=\"$(catalogstatedir)/database\" \
154         -DSYSTEMD_CGROUP_AGENT_PATH=\"$(rootlibexecdir)/systemd-cgroups-agent\" \
155         -DSYSTEMD_BINARY_PATH=\"$(rootlibexecdir)/systemd\" \
156         -DSYSTEMD_SHUTDOWN_BINARY_PATH=\"$(rootlibexecdir)/systemd-shutdown\" \
157         -DSYSTEMD_SLEEP_BINARY_PATH=\"$(rootlibexecdir)/systemd-sleep\" \
158         -DSYSTEMCTL_BINARY_PATH=\"$(rootbindir)/systemctl\" \
159         -DSYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH=\"$(rootbindir)/systemd-tty-ask-password-agent\" \
160         -DSYSTEMD_STDIO_BRIDGE_BINARY_PATH=\"$(bindir)/systemd-stdio-bridge\" \
161         -DROOTPREFIX=\"$(rootprefix)\" \
162         -DRANDOM_SEED=\"$(localstatedir)/lib/systemd/random-seed\" \
163         -DSYSTEMD_CRYPTSETUP_PATH=\"$(rootlibexecdir)/systemd-cryptsetup\" \
164         -DSYSTEM_GENERATOR_PATH=\"$(systemgeneratordir)\" \
165         -DUSER_GENERATOR_PATH=\"$(usergeneratordir)\" \
166         -DSYSTEM_SHUTDOWN_PATH=\"$(systemshutdowndir)\" \
167         -DSYSTEM_SLEEP_PATH=\"$(systemsleepdir)\" \
168         -DSYSTEMD_KBD_MODEL_MAP=\"$(pkgdatadir)/kbd-model-map\" \
169         -DX_SERVER=\"$(bindir)/X\" \
170         -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \
171         -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
172         -DQUOTACHECK=\"$(QUOTACHECK)\" \
173         -DKEXEC=\"$(KEXEC)\" \
174         -I $(top_srcdir)/src \
175         -I $(top_srcdir)/src/shared \
176         -I $(top_srcdir)/src/login \
177         -I $(top_srcdir)/src/journal \
178         -I $(top_srcdir)/src/systemd \
179         -I $(top_builddir)/src/core \
180         -I $(top_srcdir)/src/core \
181         -I $(top_srcdir)/src/libudev \
182         -I $(top_srcdir)/src/udev \
183         -I $(top_builddir)/src/udev \
184         -I $(top_srcdir)/src/libsystemd-bus \
185         $(OUR_CPPFLAGS)
186
187 AM_CFLAGS = $(OUR_CFLAGS)
188 AM_LDFLAGS = $(OUR_LDFLAGS)
189
190 # ------------------------------------------------------------------------------
191 define move-to-rootlibdir
192         if test "$(libdir)" != "$(rootlibdir)"; then \
193                 $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
194                 so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
195                 so_img_rel_target_prefix=$$(echo $(libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g') && \
196                 $(LN_S) -f $$so_img_rel_target_prefix$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
197                 mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
198         fi
199 endef
200
201 INSTALL_DIRS =
202
203 RUNLEVEL1_TARGET_WANTS =
204 RUNLEVEL2_TARGET_WANTS =
205 RUNLEVEL3_TARGET_WANTS =
206 RUNLEVEL4_TARGET_WANTS =
207 RUNLEVEL5_TARGET_WANTS =
208 SHUTDOWN_TARGET_WANTS =
209 LOCAL_FS_TARGET_WANTS =
210 MULTI_USER_TARGET_WANTS =
211 SYSINIT_TARGET_WANTS =
212 SOCKETS_TARGET_WANTS =
213 TIMERS_TARGET_WANTS =
214
215 SYSTEM_UNIT_ALIASES =
216 USER_UNIT_ALIASES =
217
218 GENERAL_ALIASES =
219
220 install-target-wants-hook:
221         what="$(RUNLEVEL1_TARGET_WANTS)" && wants=runlevel1.target && $(add-wants)
222         what="$(RUNLEVEL2_TARGET_WANTS)" && wants=runlevel2.target && $(add-wants)
223         what="$(RUNLEVEL3_TARGET_WANTS)" && wants=runlevel3.target && $(add-wants)
224         what="$(RUNLEVEL4_TARGET_WANTS)" && wants=runlevel4.target && $(add-wants)
225         what="$(RUNLEVEL5_TARGET_WANTS)" && wants=runlevel5.target && $(add-wants)
226         what="$(SHUTDOWN_TARGET_WANTS)" && wants=shutdown.target && $(add-wants)
227         what="$(LOCAL_FS_TARGET_WANTS)" && wants=local-fs.target && $(add-wants)
228         what="$(MULTI_USER_TARGET_WANTS)" && wants=multi-user.target && $(add-wants)
229         what="$(SYSINIT_TARGET_WANTS)" && wants=sysinit.target && $(add-wants)
230         what="$(SOCKETS_TARGET_WANTS)" && wants=sockets.target && $(add-wants)
231         what="$(TIMERS_TARGET_WANTS)" && wants=timers.target && $(add-wants)
232         what="$(SLICES_TARGET_WANTS)" && wants=slices.target && $(add-wants)
233
234 define add-wants
235         [ -z "$$what" ] || ( \
236           dir=$(DESTDIR)$(systemunitdir)/$$wants.wants && \
237           $(MKDIR_P) -m 0755 $$dir && \
238           cd $$dir && \
239           rm -f $$what && \
240           for i in $$what; do $(LN_S) ../$$i . || exit $$? ; done )
241 endef
242
243 install-directories-hook:
244         $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
245
246 install-aliases-hook:
247         set -- $(SYSTEM_UNIT_ALIASES) && \
248                 dir=$(systemunitdir) && $(install-aliases)
249         set -- $(USER_UNIT_ALIASES) && \
250                 dir=$(userunitdir) && $(install-aliases)
251         set -- $(GENERAL_ALIASES) && \
252                 dir= && $(install-aliases)
253
254 define install-aliases
255         while [ -n "$$1" ]; do \
256                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
257                 rm -f $(DESTDIR)$$dir/$$2 && \
258                 $(LN_S) $$1 $(DESTDIR)$$dir/$$2 && \
259                 shift 2 || exit $$?; \
260         done
261 endef
262
263 INSTALL_EXEC_HOOKS += \
264         install-target-wants-hook \
265         install-directories-hook \
266         install-aliases-hook
267
268 # ------------------------------------------------------------------------------
269 AM_V_M4 = $(AM_V_M4_$(V))
270 AM_V_M4_ = $(AM_V_M4_$(AM_DEFAULT_VERBOSITY))
271 AM_V_M4_0 = @echo "  M4      " $@;
272
273 AM_V_XSLT = $(AM_V_XSLT_$(V))
274 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
275 AM_V_XSLT_0 = @echo "  XSLT    " $@;
276
277 AM_V_GPERF = $(AM_V_GPERF_$(V))
278 AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
279 AM_V_GPERF_0 = @echo "  GPERF   " $@;
280
281 AM_V_LN = $(AM_V_LN_$(V))
282 AM_V_LN_ = $(AM_V_LN_$(AM_DEFAULT_VERBOSITY))
283 AM_V_LN_0 = @echo "  LN      " $@;
284
285 # ------------------------------------------------------------------------------
286 rootbin_PROGRAMS = \
287         systemctl \
288         systemd-notify \
289         systemd-ask-password \
290         systemd-tty-ask-password-agent \
291         systemd-machine-id-setup
292
293 bin_PROGRAMS = \
294         systemd-cgls \
295         systemd-cgtop \
296         systemd-stdio-bridge \
297         systemd-nspawn \
298         systemd-detect-virt \
299         systemd-delta \
300         systemd-analyze \
301         systemd-run
302
303 dist_bin_SCRIPTS = \
304         src/kernel-install/kernel-install
305
306 dist_kernelinstall_SCRIPTS = \
307         src/kernel-install/50-depmod.install \
308         src/kernel-install/90-loaderentry.install
309
310 rootlibexec_PROGRAMS = \
311         systemd \
312         systemd-cgroups-agent \
313         systemd-initctl \
314         systemd-update-utmp \
315         systemd-shutdownd \
316         systemd-shutdown \
317         systemd-remount-fs \
318         systemd-reply-password \
319         systemd-fsck \
320         systemd-ac-power \
321         systemd-sysctl \
322         systemd-sleep
323
324 systemgenerator_PROGRAMS = \
325         systemd-getty-generator \
326         systemd-fstab-generator \
327         systemd-system-update-generator
328
329 systemd_analyze_SOURCES = \
330         src/analyze/systemd-analyze.c
331
332 systemd_analyze_CFLAGS = \
333         $(AM_CFLAGS) \
334         $(DBUS_CFLAGS)
335
336 systemd_analyze_LDADD = \
337         libsystemd-shared.la \
338         libsystemd-dbus.la
339
340 dist_bashcompletion_DATA = \
341         shell-completion/bash/journalctl \
342         shell-completion/bash/systemctl \
343         shell-completion/bash/systemd-analyze \
344         shell-completion/bash/systemd-run \
345         shell-completion/bash/udevadm \
346         shell-completion/bash/kernel-install
347
348 dist_zshcompletion_DATA = \
349         shell-completion/zsh/_systemctl \
350         shell-completion/zsh/_journalctl \
351         shell-completion/zsh/_udevadm \
352         shell-completion/zsh/_kernel-install \
353         shell-completion/zsh/_systemd-nspawn \
354         shell-completion/zsh/_systemd-analyze \
355         shell-completion/zsh/_sd_hosts_or_user_at_host \
356         shell-completion/zsh/_systemd-delta \
357         shell-completion/zsh/_systemd
358
359 dist_sysctl_DATA = \
360         sysctl.d/50-default.conf
361
362 dist_systemunit_DATA = \
363         units/graphical.target \
364         units/multi-user.target \
365         units/emergency.service \
366         units/emergency.target \
367         units/sysinit.target \
368         units/basic.target \
369         units/getty.target \
370         units/halt.target \
371         units/kexec.target \
372         units/local-fs.target \
373         units/local-fs-pre.target \
374         units/initrd.target \
375         units/initrd-fs.target \
376         units/initrd-root-fs.target \
377         units/remote-fs.target \
378         units/remote-fs-pre.target \
379         units/network.target \
380         units/network-online.target \
381         units/nss-lookup.target \
382         units/nss-user-lookup.target \
383         units/hibernate.target \
384         units/hybrid-sleep.target \
385         units/poweroff.target \
386         units/reboot.target \
387         units/rescue.target \
388         units/rpcbind.target \
389         units/time-sync.target \
390         units/shutdown.target \
391         units/final.target \
392         units/umount.target \
393         units/sigpwr.target \
394         units/sleep.target \
395         units/sockets.target \
396         units/timers.target \
397         units/paths.target \
398         units/suspend.target \
399         units/swap.target \
400         units/slices.target \
401         units/system.slice \
402         units/x-.slice \
403         units/systemd-initctl.socket \
404         units/systemd-shutdownd.socket \
405         units/syslog.socket \
406         units/dev-hugepages.mount \
407         units/dev-mqueue.mount \
408         units/sys-kernel-config.mount \
409         units/sys-kernel-debug.mount \
410         units/sys-fs-fuse-connections.mount \
411         units/tmp.mount \
412         units/printer.target \
413         units/sound.target \
414         units/bluetooth.target \
415         units/smartcard.target \
416         units/systemd-ask-password-wall.path \
417         units/systemd-ask-password-console.path \
418         units/systemd-udevd-control.socket \
419         units/systemd-udevd-kernel.socket \
420         units/system-update.target \
421         units/initrd-switch-root.target
422
423 nodist_systemunit_DATA = \
424         units/getty@.service \
425         units/serial-getty@.service \
426         units/console-shell.service \
427         units/console-getty.service \
428         units/systemd-initctl.service \
429         units/systemd-shutdownd.service \
430         units/systemd-remount-fs.service \
431         units/systemd-update-utmp.service \
432         units/systemd-update-utmp-runlevel.service \
433         units/systemd-ask-password-wall.service \
434         units/systemd-ask-password-console.service \
435         units/systemd-sysctl.service \
436         units/emergency.service \
437         units/rescue.service \
438         units/user@.service \
439         units/systemd-hibernate.service \
440         units/systemd-hybrid-sleep.service \
441         units/systemd-suspend.service \
442         units/systemd-halt.service \
443         units/systemd-poweroff.service \
444         units/systemd-reboot.service \
445         units/systemd-kexec.service \
446         units/systemd-fsck@.service \
447         units/systemd-fsck-root.service \
448         units/systemd-udevd.service \
449         units/systemd-udev-trigger.service \
450         units/systemd-udev-settle.service \
451         units/debug-shell.service \
452         units/initrd-parse-etc.service \
453         units/initrd-cleanup.service \
454         units/initrd-udevadm-cleanup-db.service \
455         units/initrd-switch-root.service \
456         units/systemd-nspawn@.service
457
458 dist_userunit_DATA = \
459         units/user/default.target \
460         units/user/exit.target
461
462 nodist_userunit_DATA = \
463         units/user/systemd-exit.service
464
465 EXTRA_DIST += \
466         units/getty@.service.m4 \
467         units/serial-getty@.service.m4 \
468         units/console-shell.service.m4.in \
469         units/console-getty.service.m4.in \
470         units/rescue.service.m4.in \
471         units/systemd-initctl.service.in \
472         units/systemd-shutdownd.service.in \
473         units/systemd-remount-fs.service.in \
474         units/systemd-update-utmp.service.in \
475         units/systemd-update-utmp-runlevel.service.in \
476         units/systemd-ask-password-wall.service.in \
477         units/systemd-ask-password-console.service.in \
478         units/systemd-sysctl.service.in \
479         units/emergency.service.in \
480         units/systemd-halt.service.in \
481         units/systemd-poweroff.service.in \
482         units/systemd-reboot.service.in \
483         units/systemd-kexec.service.in \
484         units/user/systemd-exit.service.in \
485         units/systemd-fsck@.service.in \
486         units/systemd-fsck-root.service.in \
487         units/user@.service.in \
488         units/systemd-udevd.service \
489         units/systemd-udev-trigger.service \
490         units/systemd-udev-settle.service \
491         units/debug-shell.service.in \
492         units/systemd-hibernate.service.in \
493         units/systemd-hybrid-sleep.service.in \
494         units/systemd-suspend.service.in \
495         units/quotaon.service.in \
496         units/initrd-parse-etc.service.in \
497         units/initrd-cleanup.service.in \
498         units/initrd-udevadm-cleanup-db.service.in \
499         units/initrd-switch-root.service.in \
500         units/systemd-nspawn@.service.in \
501         introspect.awk
502
503 CLEANFILES += \
504         units/console-shell.service.m4 \
505         units/console-getty.service.m4 \
506         units/rescue.service.m4
507
508 if HAVE_SYSV_COMPAT
509 nodist_systemunit_DATA += \
510         units/rc-local.service \
511         units/halt-local.service
512
513 systemgenerator_PROGRAMS += \
514         systemd-rc-local-generator
515 endif
516
517 EXTRA_DIST += \
518         units/rc-local.service.in \
519         units/halt-local.service.in
520
521 # automake is broken and can't handle files with a dash in front
522 # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14728#8
523 units-install-hook:
524         mv $(DESTDIR)$(systemunitdir)/x-.slice $(DESTDIR)/$(systemunitdir)/-.slice
525
526 units-uninstall-hook:
527         rm -f $(DESTDIR)/$(systemunitdir)/-.slice
528
529 INSTALL_DATA_HOOKS += units-install-hook
530 UNINSTALL_DATA_HOOKS += units-uninstall-hook
531
532 dist_doc_DATA = \
533         README \
534         NEWS \
535         LICENSE.LGPL2.1 \
536         LICENSE.GPL2 \
537         LICENSE.MIT \
538         DISTRO_PORTING
539
540 @INTLTOOL_POLICY_RULE@
541
542 # ------------------------------------------------------------------------------
543
544 MANPAGES =
545 MANPAGES_ALIAS =
546
547 include Makefile-man.am
548
549 .PHONY: man
550 man: $(MANPAGES) $(MANPAGES_ALIAS) $(HTML_FILES) $(HTML_ALIAS)
551
552 XML_FILES = \
553         ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
554 HTML_FILES = \
555         ${XML_FILES:.xml=.html}
556 HTML_ALIAS = \
557         ${patsubst %.1,%.html,${patsubst %.3,%.html,${patsubst %.5,%.html,${patsubst %.7,%.html,${patsubst %.8,%.html,$(MANPAGES_ALIAS)}}}}}
558
559 if ENABLE_MANPAGES
560 man_MANS = \
561         $(MANPAGES) \
562         $(MANPAGES_ALIAS)
563
564 noinst_DATA += \
565         $(HTML_FILES) \
566         $(HTML_ALIAS)
567
568 CLEANFILES += \
569         $(man_MANS) \
570         $(HTML_FILES) \
571         $(HTML_ALIAS)
572
573 docs/html/man:
574         $(AM_V_at)$(MKDIR_P) $(dir $@)
575         $(AM_V_LN)$(LN_S) -f ../../man $@
576
577 noinst_DATA += \
578         docs/html/man
579
580 CLEANFILES += \
581         docs/html/man
582
583 if HAVE_PYTHON
584 man/index.html: man/systemd.index.html
585         $(AM_V_LN)$(LN_S) -f systemd.index.html $@
586
587 noinst_DATA += \
588         man/index.html
589
590 CLEANFILES += \
591         man/index.html
592
593 XML_GLOB = $(wildcard $(top_srcdir)/man/*.xml $(top_builddir)/man/*.xml)
594 NON_INDEX_XML_FILES = $(filter-out man/systemd.index.xml,$(XML_FILES))
595 SOURCE_XML_FILES = $(filter-out man/systemd.directives.xml,$(NON_INDEX_XML_FILES))
596
597 update-man-list: make-man-rules.py $(XML_GLOB)
598         $(AM_V_GEN)$(PYTHON) $^ > $(top_srcdir)/Makefile-man.tmp
599         $(AM_V_at)mv $(top_srcdir)/Makefile-man.tmp $(top_srcdir)/Makefile-man.am
600         @echo "Makefile-man.am has been regenerated"
601
602 man/systemd.index.xml: make-man-index.py $(NON_INDEX_XML_FILES)
603         $(AM_V_at)$(MKDIR_P) $(dir $@)
604         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
605
606 man/systemd.directives.xml: make-directive-index.py $(SOURCE_XML_FILES)
607         $(AM_V_at)$(MKDIR_P) $(dir $@)
608         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
609
610 EXTRA_DIST += \
611         man/systemd.index.xml \
612         man/index.html \
613         man/systemd.directives.xml
614
615 CLEANFILES += \
616         man/systemd.index.xml \
617         man/systemd.directives.xml
618
619 endif
620
621 endif
622
623 EXTRA_DIST += \
624         $(XML_FILES) \
625         $(HTML_FILES) \
626         $(HTML_ALIAS) \
627         $(man_MANS) \
628         make-man-index.py \
629         make-directive-index.py \
630         xml_helper.py
631
632 # ------------------------------------------------------------------------------
633 noinst_LTLIBRARIES += \
634         libsystemd-shared.la
635
636 libsystemd_shared_la_SOURCES = \
637         src/shared/linux/auto_dev-ioctl.h \
638         src/shared/linux/fanotify.h \
639         src/shared/linux/seccomp.h \
640         src/shared/linux/seccomp-bpf.h \
641         src/shared/missing.h \
642         src/shared/list.h \
643         src/shared/macro.h \
644         src/shared/def.h \
645         src/shared/device-nodes.c \
646         src/shared/device-nodes.h \
647         src/shared/sparse-endian.h \
648         src/shared/util.c \
649         src/shared/util.h \
650         src/shared/udev-util.h \
651         src/shared/virt.c \
652         src/shared/virt.h \
653         src/shared/efivars.c \
654         src/shared/efivars.h \
655         src/shared/path-util.c \
656         src/shared/path-util.h \
657         src/shared/time-util.c \
658         src/shared/time-util.h \
659         src/shared/hashmap.c \
660         src/shared/hashmap.h \
661         src/shared/set.c \
662         src/shared/set.h \
663         src/shared/fdset.c \
664         src/shared/fdset.h \
665         src/shared/prioq.c \
666         src/shared/prioq.h \
667         src/shared/sleep-config.c \
668         src/shared/sleep-config.h \
669         src/shared/strv.c \
670         src/shared/strv.h \
671         src/shared/env-util.c \
672         src/shared/env-util.h \
673         src/shared/strbuf.c \
674         src/shared/strbuf.h \
675         src/shared/strxcpyx.c \
676         src/shared/strxcpyx.h \
677         src/shared/conf-parser.c \
678         src/shared/conf-parser.h \
679         src/shared/log.c \
680         src/shared/log.h \
681         src/shared/ratelimit.h \
682         src/shared/ratelimit.c \
683         src/shared/exit-status.c \
684         src/shared/exit-status.h \
685         src/shared/utf8.c \
686         src/shared/utf8.h \
687         src/shared/gunicode.c \
688         src/shared/gunicode.h \
689         src/shared/pager.c \
690         src/shared/pager.h \
691         src/shared/ioprio.h \
692         src/shared/socket-util.c \
693         src/shared/socket-util.h \
694         src/shared/conf-files.c \
695         src/shared/conf-files.h \
696         src/shared/cgroup-util.c \
697         src/shared/cgroup-util.h \
698         src/shared/cgroup-show.c \
699         src/shared/cgroup-show.h \
700         src/shared/unit-name.c \
701         src/shared/unit-name.h \
702         src/shared/utmp-wtmp.c \
703         src/shared/utmp-wtmp.h \
704         src/shared/watchdog.c \
705         src/shared/watchdog.h \
706         src/shared/spawn-ask-password-agent.c \
707         src/shared/spawn-ask-password-agent.h \
708         src/shared/replace-var.c \
709         src/shared/replace-var.h \
710         src/shared/spawn-polkit-agent.c \
711         src/shared/spawn-polkit-agent.h \
712         src/shared/hwclock.c \
713         src/shared/hwclock.h \
714         src/shared/time-dst.c \
715         src/shared/time-dst.h \
716         src/shared/calendarspec.c \
717         src/shared/calendarspec.h \
718         src/shared/fileio.c \
719         src/shared/fileio.h \
720         src/shared/output-mode.h \
721         src/shared/MurmurHash3.c \
722         src/shared/MurmurHash3.h \
723         src/shared/acpi-fpdt.h \
724         src/shared/acpi-fpdt.c \
725         src/shared/boot-timestamps.h \
726         src/shared/boot-timestamps.c \
727         src/shared/refcnt.h \
728         src/shared/mkdir.c \
729         src/shared/mkdir.h \
730         src/shared/smack-util.c \
731         src/shared/smack-util.h \
732         src/shared/apparmor-util.c \
733         src/shared/apparmor-util.h \
734         src/shared/ima-util.c \
735         src/shared/ima-util.h
736
737 #-------------------------------------------------------------------------------
738 noinst_LTLIBRARIES += \
739         libsystemd-dbus.la
740
741 libsystemd_dbus_la_SOURCES = \
742         src/shared/dbus-common.c \
743         src/shared/dbus-common.h \
744         src/shared/dbus-loop.c \
745         src/shared/dbus-loop.h \
746         src/shared/polkit.c \
747         src/shared/polkit.h
748
749 libsystemd_dbus_la_CFLAGS = \
750         $(AM_CFLAGS) \
751         $(DBUS_CFLAGS)
752
753 libsystemd_dbus_la_LIBADD = \
754         $(DBUS_LIBS)
755
756 # ------------------------------------------------------------------------------
757 noinst_LTLIBRARIES += \
758         libsystemd-units.la
759
760 libsystemd_units_la_SOURCES = \
761         src/shared/install.c \
762         src/shared/install.h \
763         src/shared/install-printf.c \
764         src/shared/install-printf.h \
765         src/shared/path-lookup.c \
766         src/shared/path-lookup.h \
767         src/shared/specifier.c \
768         src/shared/specifier.h
769
770 libsystemd_units_la_CFLAGS = \
771         $(AM_CFLAGS) \
772         $(DBUS_CFLAGS)
773
774 # ------------------------------------------------------------------------------
775 noinst_LTLIBRARIES += \
776         libsystemd-label.la
777
778 libsystemd_label_la_SOURCES = \
779         src/shared/socket-label.c \
780         src/shared/label.c \
781         src/shared/label.h \
782         src/shared/selinux-util.c \
783         src/shared/selinux-util.h \
784         src/shared/mkdir-label.c \
785         src/shared/ask-password-api.c \
786         src/shared/ask-password-api.h \
787         src/shared/fileio-label.c \
788         src/shared/fileio-label.h \
789         src/shared/dev-setup.c \
790         src/shared/dev-setup.h
791
792 libsystemd_label_la_CFLAGS = \
793         $(AM_CFLAGS) \
794         $(SELINUX_CFLAGS)
795
796 libsystemd_label_la_LIBADD = \
797         $(SELINUX_LIBS)
798
799 # ------------------------------------------------------------------------------
800 noinst_LTLIBRARIES += \
801         libsystemd-logs.la
802
803 libsystemd_logs_la_SOURCES = \
804         src/shared/logs-show.c \
805         src/shared/logs-show.h
806
807 libsystemd_logs_la_CFLAGS = \
808         $(AM_CFLAGS)
809
810 libsystemd_logs_la_LIBADD = \
811         libsystemd-journal-internal.la \
812         libsystemd-id128-internal.la \
813         libsystemd-shared.la
814
815 # ------------------------------------------------------------------------------
816 noinst_LTLIBRARIES += \
817         libsystemd-capability.la
818
819 libsystemd_capability_la_SOURCES = \
820         src/shared/capability.c \
821         src/shared/capability.h
822
823 libsystemd_capability_la_CFLAGS = \
824         $(AM_CFLAGS) \
825         $(CAP_CFLAGS)
826
827 libsystemd_capability_la_LIBADD = \
828         $(CAP_LIBS)
829
830 # ------------------------------------------------------------------------------
831 noinst_LTLIBRARIES += \
832         libsystemd-audit.la
833
834 libsystemd_audit_la_SOURCES = \
835         src/shared/audit.c \
836         src/shared/audit.h
837
838 libsystemd_audit_la_LIBADD = \
839         libsystemd-capability.la
840
841 # ------------------------------------------------------------------------------
842 if HAVE_ACL
843 noinst_LTLIBRARIES += \
844         libsystemd-acl.la
845
846 libsystemd_acl_la_SOURCES = \
847         src/shared/acl-util.c \
848         src/shared/acl-util.h
849
850 libsystemd_acl_la_CFLAGS = \
851         $(AM_CFLAGS) \
852         $(ACL_CFLAGS)
853
854 libsystemd_acl_la_LIBADD = \
855         $(ACL_LIBS) \
856         libsystemd-shared.la
857 endif
858
859 # ------------------------------------------------------------------------------
860 noinst_LTLIBRARIES += \
861         libsystemd-core.la
862
863 libsystemd_core_la_SOURCES = \
864         src/core/unit.c \
865         src/core/unit.h \
866         src/core/unit-printf.c \
867         src/core/unit-printf.h \
868         src/core/job.c \
869         src/core/job.h \
870         src/core/manager.c \
871         src/core/manager.h \
872         src/core/transaction.c \
873         src/core/transaction.h \
874         src/core/load-fragment.c \
875         src/core/load-fragment.h \
876         src/core/service.c \
877         src/core/service.h \
878         src/core/automount.c \
879         src/core/automount.h \
880         src/core/mount.c \
881         src/core/mount.h \
882         src/core/swap.c \
883         src/core/swap.h \
884         src/core/device.c \
885         src/core/device.h \
886         src/core/target.c \
887         src/core/target.h \
888         src/core/snapshot.c \
889         src/core/snapshot.h \
890         src/core/socket.c \
891         src/core/socket.h \
892         src/core/timer.c \
893         src/core/timer.h \
894         src/core/path.c \
895         src/core/path.h \
896         src/core/slice.c \
897         src/core/slice.h \
898         src/core/scope.c \
899         src/core/scope.h \
900         src/core/load-dropin.c \
901         src/core/load-dropin.h \
902         src/core/execute.c \
903         src/core/execute.h \
904         src/core/kill.c \
905         src/core/kill.h \
906         src/core/dbus.c \
907         src/core/dbus.h \
908         src/core/dbus-manager.c \
909         src/core/dbus-manager.h \
910         src/core/dbus-unit.c \
911         src/core/dbus-unit.h \
912         src/core/dbus-job.c \
913         src/core/dbus-job.h \
914         src/core/dbus-service.c \
915         src/core/dbus-service.h \
916         src/core/dbus-socket.c \
917         src/core/dbus-socket.h \
918         src/core/dbus-timer.c \
919         src/core/dbus-timer.h \
920         src/core/dbus-target.c \
921         src/core/dbus-target.h \
922         src/core/dbus-mount.c \
923         src/core/dbus-mount.h \
924         src/core/dbus-automount.c \
925         src/core/dbus-automount.h \
926         src/core/dbus-swap.c \
927         src/core/dbus-swap.h \
928         src/core/dbus-snapshot.c \
929         src/core/dbus-snapshot.h \
930         src/core/dbus-device.c \
931         src/core/dbus-device.h \
932         src/core/dbus-path.c \
933         src/core/dbus-path.h \
934         src/core/dbus-slice.c \
935         src/core/dbus-slice.h \
936         src/core/dbus-scope.c \
937         src/core/dbus-scope.h \
938         src/core/dbus-execute.c \
939         src/core/dbus-execute.h \
940         src/core/dbus-kill.c \
941         src/core/dbus-kill.h \
942         src/core/dbus-cgroup.c \
943         src/core/dbus-cgroup.h \
944         src/core/cgroup.c \
945         src/core/cgroup.h \
946         src/core/selinux-access.c \
947         src/core/selinux-access.h \
948         src/core/selinux-setup.c \
949         src/core/selinux-setup.h \
950         src/core/smack-setup.c \
951         src/core/smack-setup.h \
952         src/core/ima-setup.c \
953         src/core/ima-setup.h \
954         src/core/locale-setup.h \
955         src/core/locale-setup.c \
956         src/core/hostname-setup.c \
957         src/core/hostname-setup.h \
958         src/core/machine-id-setup.c \
959         src/core/machine-id-setup.h \
960         src/core/mount-setup.c \
961         src/core/mount-setup.h \
962         src/core/loopback-setup.h \
963         src/core/loopback-setup.c \
964         src/core/condition.c \
965         src/core/condition.h \
966         src/core/namespace.c \
967         src/core/namespace.h \
968         src/core/tcpwrap.c \
969         src/core/tcpwrap.h \
970         src/core/securebits.h \
971         src/core/initreq.h \
972         src/core/special.h \
973         src/core/bus-errors.h \
974         src/core/build.h \
975         src/core/sysfs-show.h \
976         src/core/switch-root.h \
977         src/core/switch-root.c \
978         src/core/killall.h \
979         src/core/killall.c \
980         src/core/syscall-list.c \
981         src/core/syscall-list.h \
982         src/core/audit-fd.c \
983         src/core/audit-fd.h \
984         src/core/async.c \
985         src/core/async.h
986
987 if HAVE_KMOD
988 libsystemd_core_la_SOURCES += \
989         src/core/kmod-setup.c \
990         src/core/kmod-setup.h
991 endif
992
993 nodist_libsystemd_core_la_SOURCES = \
994         src/core/load-fragment-gperf.c \
995         src/core/load-fragment-gperf-nulstr.c \
996         src/core/syscall-from-name.h \
997         src/core/syscall-to-name.h
998
999 libsystemd_core_la_CFLAGS = \
1000         $(AM_CFLAGS) \
1001         $(DBUS_CFLAGS) \
1002         $(LIBWRAP_CFLAGS) \
1003         $(PAM_CFLAGS) \
1004         $(AUDIT_CFLAGS) \
1005         $(KMOD_CFLAGS) \
1006         -pthread
1007
1008 libsystemd_core_la_LIBADD = \
1009         libsystemd-capability.la \
1010         libsystemd-units.la \
1011         libsystemd-label.la \
1012         libsystemd-shared.la \
1013         libsystemd-dbus.la \
1014         libsystemd-audit.la \
1015         libsystemd-id128-internal.la \
1016         libsystemd-daemon.la \
1017         libudev.la \
1018         $(LIBWRAP_LIBS) \
1019         $(PAM_LIBS) \
1020         $(AUDIT_LIBS) \
1021         $(CAP_LIBS) \
1022         $(KMOD_LIBS)
1023
1024 src/core/load-fragment-gperf-nulstr.c: src/core/load-fragment-gperf.gperf
1025         $(AM_V_at)$(MKDIR_P) $(dir $@)
1026         $(AM_V_GEN)$(AWK) 'BEGIN{ keywords=0 ; FS="," ; print "extern const char load_fragment_gperf_nulstr[];" ; print "const char load_fragment_gperf_nulstr[] ="} ; keyword==1 { print "\"" $$1 "\\0\"" } ; /%%/ { keyword=1} ; END { print ";" }' < $< > $@
1027
1028 EXTRA_DIST += \
1029         src/core/load-fragment-gperf.gperf.m4
1030
1031 CLEANFILES += \
1032         src/core/load-fragment-gperf.gperf \
1033         src/core/load-fragment-gperf.c \
1034         src/core/load-fragment-gperf-nulstr.c \
1035         src/core/syscall-list.txt \
1036         src/core/syscall-from-name.gperf
1037
1038 BUILT_SOURCES += \
1039         src/core/syscall-from-name.h \
1040         src/core/syscall-to-name.h
1041
1042 src/core/syscall-list.txt: Makefile
1043         $(AM_V_at)$(MKDIR_P) $(dir $@)
1044         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/syscall.h - < /dev/null | $(AWK) '/^#define[ \t]+__NR_[^ ]+[ \t]+[0-9(]/ { sub(/__NR_/, "", $$2); if ($$2 !~ /SYSCALL_BASE/) print $$2; }' > $@
1045
1046 src/core/syscall-from-name.gperf: src/core/syscall-list.txt Makefile
1047         $(AM_V_at)$(MKDIR_P) $(dir $@)
1048         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct syscall_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, __NR_%s\n", $$1, $$1 }' < $< > $@
1049
1050 src/core/syscall-from-name.h: src/core/syscall-from-name.gperf Makefile
1051         $(AM_V_at)$(MKDIR_P) $(dir $@)
1052         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_syscall -H hash_syscall_name -p -C < $< > $@
1053
1054 src/core/syscall-to-name.h: src/core/syscall-list.txt Makefile
1055         $(AM_V_at)$(MKDIR_P) $(dir $@)
1056         $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const syscall_names[] = { "} { printf "[SYSCALL_TO_INDEX(__NR_%s)] = \"%s\",\n", $$1, $$1 } END{print "};"}' < $< > $@
1057
1058 # ------------------------------------------------------------------------------
1059 systemd_SOURCES = \
1060         src/core/main.c
1061
1062 systemd_CFLAGS = \
1063         $(AM_CFLAGS) \
1064         $(DBUS_CFLAGS)
1065
1066 systemd_LDADD = \
1067         libsystemd-core.la \
1068         libsystemd-daemon.la \
1069         libsystemd-id128-internal.la \
1070         libsystemd-dbus.la
1071
1072 dist_pkgsysconf_DATA += \
1073         src/core/system.conf \
1074         src/core/user.conf
1075
1076 dist_dbuspolicy_DATA += \
1077         src/core/org.freedesktop.systemd1.conf
1078
1079 dist_dbussystemservice_DATA += \
1080         src/core/org.freedesktop.systemd1.service
1081
1082 dbusinterface_DATA += \
1083         org.freedesktop.systemd1.Manager.xml \
1084         org.freedesktop.systemd1.Job.xml \
1085         org.freedesktop.systemd1.Unit.xml \
1086         org.freedesktop.systemd1.Service.xml \
1087         org.freedesktop.systemd1.Socket.xml \
1088         org.freedesktop.systemd1.Timer.xml \
1089         org.freedesktop.systemd1.Target.xml \
1090         org.freedesktop.systemd1.Device.xml \
1091         org.freedesktop.systemd1.Mount.xml \
1092         org.freedesktop.systemd1.Automount.xml \
1093         org.freedesktop.systemd1.Snapshot.xml \
1094         org.freedesktop.systemd1.Swap.xml \
1095         org.freedesktop.systemd1.Path.xml
1096
1097 polkitpolicy_in_in_files += \
1098         src/core/org.freedesktop.systemd1.policy.in.in
1099
1100 org.freedesktop.systemd1.%.xml: systemd
1101         $(AM_V_GEN)$(LIBTOOL) --mode=execute $(OBJCOPY) -O binary -j introspect.$* $< $@.tmp && \
1102                 $(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
1103                 $(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
1104
1105 pkgconfigdata_DATA = \
1106         src/core/systemd.pc
1107
1108 nodist_rpmmacros_DATA = \
1109         src/core/macros.systemd
1110
1111 EXTRA_DIST += \
1112         src/core/systemd.pc.in \
1113         src/core/macros.systemd.in
1114
1115 CLEANFILES += \
1116         src/core/macros.systemd \
1117         src/core/org.freedesktop.systemd1.policy.in
1118
1119 # ------------------------------------------------------------------------------
1120 manual_tests += \
1121         test-engine \
1122         test-ns \
1123         test-loopback \
1124         test-hostname \
1125         test-daemon \
1126         test-cgroup \
1127         test-install \
1128         test-watchdog \
1129         test-log
1130
1131 tests += \
1132         test-job-type \
1133         test-env-replace \
1134         test-strbuf \
1135         test-strv \
1136         test-path-util \
1137         test-strxcpyx \
1138         test-unit-name \
1139         test-unit-file \
1140         test-utf8 \
1141         test-ellipsize \
1142         test-util \
1143         test-date \
1144         test-sleep \
1145         test-replace-var \
1146         test-sched-prio \
1147         test-calendarspec \
1148         test-strip-tab-ansi \
1149         test-cgroup-util \
1150         test-prioq \
1151         test-fileio \
1152         test-time \
1153         test-hashmap \
1154         test-list \
1155         test-tables \
1156         test-device-nodes
1157
1158 EXTRA_DIST += \
1159         test/sched_idle_bad.service \
1160         test/sched_idle_ok.service \
1161         test/sched_rr_bad.service \
1162         test/sched_rr_ok.service \
1163         test/sched_rr_change.service
1164
1165 EXTRA_DIST += \
1166         src/test/test-helper.h
1167
1168 test_device_nodes_SOURCES = \
1169         src/test/test-device-nodes.c
1170
1171 test_device_nodes_LDADD = \
1172         libsystemd-shared.la
1173
1174 test_engine_SOURCES = \
1175         src/test/test-engine.c
1176
1177 test_engine_CFLAGS = \
1178         $(AM_CFLAGS) \
1179         $(DBUS_CFLAGS)
1180
1181 test_engine_LDADD = \
1182         libsystemd-core.la \
1183         libsystemd-daemon.la \
1184         libsystemd-dbus.la
1185
1186 test_job_type_SOURCES = \
1187         src/test/test-job-type.c
1188
1189 test_job_type_CFLAGS = \
1190         $(AM_CFLAGS) \
1191         $(DBUS_CFLAGS)
1192
1193 test_job_type_LDADD = \
1194         libsystemd-core.la \
1195         libsystemd-daemon.la
1196
1197 test_ns_SOURCES = \
1198         src/test/test-ns.c
1199
1200 test_ns_LDADD = \
1201         libsystemd-core.la
1202
1203 test_ns_CFLAGS = \
1204         $(AM_CFLAGS) \
1205         $(DBUS_CFLAGS)
1206
1207 test_loopback_SOURCES = \
1208         src/test/test-loopback.c
1209
1210 test_loopback_LDADD = \
1211         libsystemd-shared.la \
1212         libsystemd-core.la
1213
1214 test_hostname_SOURCES = \
1215         src/test/test-hostname.c
1216
1217 test_hostname_LDADD = \
1218         libsystemd-core.la
1219
1220 if ENABLE_EFI
1221 manual_tests += \
1222         test-boot-timestamp
1223
1224 test_boot_timestamp_SOURCES = \
1225         src/test/test-boot-timestamps.c
1226
1227 test_boot_timestamp_LDADD = \
1228         libsystemd-shared.la
1229 endif
1230
1231 test_unit_name_SOURCES = \
1232         src/test/test-unit-name.c
1233
1234 test_unit_name_CFLAGS = \
1235         $(AM_CFLAGS) \
1236         $(DBUS_CFLAGS)
1237
1238 test_unit_name_LDADD = \
1239         libsystemd-core.la
1240
1241 test_unit_file_SOURCES = \
1242         src/test/test-unit-file.c
1243
1244 test_unit_file_CFLAGS = \
1245         $(AM_CFLAGS) \
1246         $(DBUS_CFLAGS)
1247
1248 test_unit_file_LDADD = \
1249         libsystemd-core.la
1250
1251 test_utf8_SOURCES = \
1252         src/test/test-utf8.c
1253
1254 test_utf8_CFLAGS = \
1255         $(AM_CFLAGS)
1256
1257 test_utf8_LDADD = \
1258         libsystemd-shared.la
1259
1260 test_util_SOURCES = \
1261         src/test/test-util.c
1262
1263 test_util_CFLAGS = \
1264         $(AM_CFLAGS)
1265
1266 test_util_LDADD = \
1267         libsystemd-core.la
1268
1269 test_hashmap_SOURCES = \
1270         src/test/test-hashmap.c
1271
1272 test_hashmap_CFLAGS = \
1273         $(AM_CFLAGS)
1274
1275 test_hashmap_LDADD = \
1276         libsystemd-core.la
1277
1278 test_list_SOURCES = \
1279         src/test/test-list.c
1280
1281 test_list_CFLAGS = \
1282         $(AM_CFLAGS)
1283
1284 test_list_LDADD = \
1285         libsystemd-core.la
1286
1287 test_tables_SOURCES = \
1288         src/test/test-tables.c \
1289         src/shared/test-tables.h
1290
1291 test_tables_CFLAGS = \
1292         $(AM_CFLAGS) \
1293         $(DBUS_CFLAGS)
1294
1295 test_tables_LDADD = \
1296         libsystemd-core.la \
1297         libsystemd-logs.la
1298
1299 test_prioq_SOURCES = \
1300         src/test/test-prioq.c
1301
1302 test_prioq_CFLAGS = \
1303         $(AM_CFLAGS)
1304
1305 test_prioq_LDADD = \
1306         libsystemd-core.la
1307
1308 test_fileio_SOURCES = \
1309         src/test/test-fileio.c
1310
1311 test_fileio_CFLAGS = \
1312         $(AM_CFLAGS)
1313
1314 test_fileio_LDADD = \
1315         libsystemd-core.la
1316
1317 test_time_SOURCES = \
1318         src/test/test-time.c
1319
1320 test_time_CFLAGS = \
1321         $(AM_CFLAGS)
1322
1323 test_time_LDADD = \
1324         libsystemd-core.la
1325
1326 test_log_SOURCES = \
1327         src/test/test-log.c
1328
1329 test_log_LDADD = \
1330         libsystemd-core.la
1331
1332 test_ellipsize_SOURCES = \
1333         src/test/test-ellipsize.c
1334
1335 test_ellipsize_LDADD = \
1336         libsystemd-core.la
1337
1338 test_date_SOURCES = \
1339         src/test/test-date.c
1340
1341 test_date_LDADD = \
1342         libsystemd-core.la
1343
1344 test_sleep_SOURCES = \
1345         src/test/test-sleep.c
1346
1347 test_sleep_LDADD = \
1348         libsystemd-core.la
1349
1350 test_replace_var_SOURCES = \
1351         src/test/test-replace-var.c
1352
1353 test_replace_var_LDADD = \
1354         libsystemd-shared.la
1355
1356 test_calendarspec_SOURCES = \
1357         src/test/test-calendarspec.c
1358
1359 test_calendarspec_LDADD = \
1360         libsystemd-shared.la
1361
1362 test_strip_tab_ansi_SOURCES = \
1363         src/test/test-strip-tab-ansi.c
1364
1365 test_strip_tab_ansi_LDADD = \
1366         libsystemd-shared.la
1367
1368 test_daemon_SOURCES = \
1369         src/test/test-daemon.c
1370
1371 test_daemon_LDADD = \
1372         libsystemd-shared.la \
1373         libsystemd-daemon.la
1374
1375 test_cgroup_SOURCES = \
1376         src/test/test-cgroup.c
1377
1378 test_cgroup_LDADD = \
1379         libsystemd-label.la \
1380         libsystemd-shared.la
1381
1382 test_cgroup_util_SOURCES = \
1383         src/test/test-cgroup-util.c
1384
1385 test_cgroup_util_LDADD = \
1386         libsystemd-label.la \
1387         libsystemd-shared.la \
1388         libsystemd-daemon.la
1389
1390 test_env_replace_SOURCES = \
1391         src/test/test-env-replace.c
1392
1393 test_env_replace_LDADD = \
1394         libsystemd-shared.la
1395
1396 test_strbuf_SOURCES = \
1397         src/test/test-strbuf.c
1398
1399 test_strbuf_LDADD = \
1400         libsystemd-shared.la
1401
1402 test_strv_SOURCES = \
1403         src/test/test-strv.c
1404
1405 test_strv_LDADD = \
1406         libsystemd-shared.la \
1407         libsystemd-units.la \
1408         libsystemd-id128-internal.la
1409
1410 test_path_util_SOURCES = \
1411         src/test/test-path-util.c
1412
1413 test_path_util_LDADD = \
1414         libsystemd-shared.la
1415
1416 test_strxcpyx_SOURCES = \
1417         src/test/test-strxcpyx.c
1418
1419 test_strxcpyx_LDADD = \
1420         libsystemd-shared.la
1421
1422 test_install_SOURCES = \
1423         src/test/test-install.c
1424
1425 test_install_CFLAGS = \
1426         $(AM_CFLAGS) \
1427         $(DBUS_CFLAGS)
1428
1429 test_install_LDADD = \
1430         libsystemd-units.la \
1431         libsystemd-label.la \
1432         libsystemd-shared.la \
1433         libsystemd-id128-internal.la
1434
1435 test_watchdog_SOURCES = \
1436         src/test/test-watchdog.c
1437
1438 test_watchdog_LDADD = \
1439         libsystemd-shared.la
1440
1441 test_sched_prio_SOURCES = \
1442         src/test/test-sched-prio.c
1443
1444 test_sched_prio_CFLAGS = \
1445         $(AM_CFLAGS) \
1446         $(DBUS_CFLAGS) \
1447         -D"STR(s)=\#s" -D"TEST_DIR=STR($(abs_top_srcdir)/test/)"
1448
1449 test_sched_prio_LDADD = \
1450         libsystemd-core.la \
1451         libsystemd-daemon.la
1452
1453 # ------------------------------------------------------------------------------
1454 ## .PHONY so it always rebuilds it
1455 .PHONY: coverage lcov-run lcov-report
1456
1457 # run lcov from scratch, always
1458 coverage:
1459         $(MAKE) lcov-run
1460         $(MAKE) lcov-report
1461
1462 coverage_dir = coverage
1463 coverage_opts = --base-directory $(srcdir) --directory $(builddir) --rc 'geninfo_adjust_src_path=$(abspath $(srcdir))=>$(abspath $(builddir))'
1464
1465 if ENABLE_COVERAGE
1466 # reset run coverage tests
1467 lcov-run:
1468         @rm -rf $(coverage_dir)
1469         lcov $(coverage_opts) --zerocounters
1470         -$(MAKE) check
1471
1472 # generate report based on current coverage data
1473 lcov-report:
1474         $(MKDIR_P) $(coverage_dir)
1475         lcov $(coverage_opts) --compat-libtool --capture --no-external \
1476                 | sed 's|$(abspath $(builddir))|$(abspath $(srcdir))|' > $(coverage_dir)/.lcov.info
1477         genhtml -t "systemd test coverage" -o $(coverage_dir) $(coverage_dir)/.lcov.info
1478         @echo "Coverage report generated in $(abs_builddir)/$(coverage_dir)/index.html"
1479
1480 # lcov doesn't work properly with vpath builds, make sure that bad
1481 # output is not uploaded by mistake.
1482 coverage-sync: coverage
1483         test "$(builddir)" = "$(srcdir)"
1484         rsync -rlv --delete --omit-dir-times coverage/ $(www_target)/coverage
1485
1486 else
1487 lcov-run lcov-report:
1488         echo "Need to reconfigure with --enable-coverage"
1489 endif
1490
1491 # ------------------------------------------------------------------------------
1492 systemd_initctl_SOURCES = \
1493         src/initctl/initctl.c
1494
1495 systemd_initctl_CFLAGS = \
1496         $(AM_CFLAGS) \
1497         $(DBUS_CFLAGS)
1498
1499 systemd_initctl_LDADD = \
1500         libsystemd-shared.la \
1501         libsystemd-daemon.la \
1502         libsystemd-dbus.la
1503
1504 # ------------------------------------------------------------------------------
1505 systemd_update_utmp_SOURCES = \
1506         src/update-utmp/update-utmp.c
1507
1508 systemd_update_utmp_CFLAGS = \
1509         $(AM_CFLAGS) \
1510         $(DBUS_CFLAGS) \
1511         $(AUDIT_CFLAGS)
1512
1513 systemd_update_utmp_LDADD = \
1514         libsystemd-shared.la \
1515         libsystemd-dbus.la \
1516         $(AUDIT_LIBS)
1517
1518 # ------------------------------------------------------------------------------
1519 systemd_shutdownd_SOURCES = \
1520         src/shutdownd/shutdownd.c
1521
1522 systemd_shutdownd_LDADD = \
1523         libsystemd-label.la \
1524         libsystemd-shared.la \
1525         libsystemd-daemon.la
1526
1527 pkginclude_HEADERS += \
1528         src/systemd/sd-shutdown.h
1529
1530 # ------------------------------------------------------------------------------
1531 systemd_shutdown_SOURCES = \
1532         src/core/umount.c \
1533         src/core/umount.h \
1534         src/core/shutdown.c \
1535         src/core/mount-setup.c \
1536         src/core/mount-setup.h \
1537         src/core/killall.h \
1538         src/core/killall.c
1539
1540 systemd_shutdown_LDADD = \
1541         libsystemd-label.la \
1542         libsystemd-shared.la \
1543         libudev.la
1544
1545 # ------------------------------------------------------------------------------
1546 if HAVE_KMOD
1547 systemd_modules_load_SOURCES = \
1548         src/modules-load/modules-load.c
1549
1550 systemd_modules_load_CFLAGS = \
1551         $(AM_CFLAGS) \
1552         $(KMOD_CFLAGS)
1553
1554 systemd_modules_load_LDADD = \
1555         libsystemd-shared.la \
1556         $(KMOD_LIBS)
1557
1558 rootlibexec_PROGRAMS += \
1559         systemd-modules-load
1560
1561 nodist_systemunit_DATA += \
1562         units/systemd-modules-load.service
1563
1564 SYSINIT_TARGET_WANTS += \
1565         systemd-modules-load.service
1566
1567 if ENABLE_TMPFILES
1568 nodist_systemunit_DATA += \
1569         units/kmod-static-nodes.service
1570
1571 SYSINIT_TARGET_WANTS += \
1572         kmod-static-nodes.service
1573 endif
1574 endif
1575
1576 EXTRA_DIST += \
1577         units/systemd-modules-load.service.in \
1578         units/kmod-static-nodes.service.in
1579
1580 # ------------------------------------------------------------------------------
1581 if ENABLE_TMPFILES
1582 systemd_tmpfiles_SOURCES = \
1583         src/tmpfiles/tmpfiles.c \
1584         src/shared/specifier.c \
1585         src/shared/specifier.h
1586
1587 systemd_tmpfiles_LDADD = \
1588         libsystemd-label.la \
1589         libsystemd-shared.la \
1590         libsystemd-capability.la \
1591         libsystemd-id128-internal.la
1592
1593 rootbin_PROGRAMS += \
1594         systemd-tmpfiles
1595
1596 dist_systemunit_DATA += \
1597         units/systemd-tmpfiles-clean.timer
1598
1599 nodist_systemunit_DATA += \
1600         units/systemd-tmpfiles-setup-dev.service \
1601         units/systemd-tmpfiles-setup.service \
1602         units/systemd-tmpfiles-clean.service
1603
1604 dist_tmpfiles_DATA = \
1605         tmpfiles.d/systemd.conf \
1606         tmpfiles.d/tmp.conf \
1607         tmpfiles.d/x11.conf
1608
1609 if HAVE_SYSV_COMPAT
1610 dist_tmpfiles_DATA += \
1611         tmpfiles.d/legacy.conf
1612 endif
1613
1614 SYSINIT_TARGET_WANTS += \
1615         systemd-tmpfiles-setup-dev.service \
1616         systemd-tmpfiles-setup.service
1617
1618 dist_zshcompletion_DATA += \
1619         shell-completion/zsh/_systemd-tmpfiles
1620
1621 TIMERS_TARGET_WANTS += \
1622         systemd-tmpfiles-clean.timer
1623
1624 INSTALL_DIRS += \
1625         $(tmpfilesdir) \
1626         $(sysconfdir)/tmpfiles.d
1627 endif
1628
1629 EXTRA_DIST += \
1630         units/systemd-tmpfiles-setup-dev.service.in \
1631         units/systemd-tmpfiles-setup.service.in \
1632         units/systemd-tmpfiles-clean.service.in
1633
1634 # ------------------------------------------------------------------------------
1635 systemd_machine_id_setup_SOURCES = \
1636         src/machine-id-setup/machine-id-setup-main.c \
1637         src/core/machine-id-setup.c \
1638         src/core/machine-id-setup.h
1639
1640 systemd_machine_id_setup_LDADD = \
1641         libsystemd-label.la \
1642         libsystemd-shared.la \
1643         libsystemd-id128-internal.la
1644
1645 # ------------------------------------------------------------------------------
1646 systemd_sysctl_SOURCES = \
1647         src/sysctl/sysctl.c
1648
1649 systemd_sysctl_LDADD = \
1650         libsystemd-shared.la
1651
1652 # ------------------------------------------------------------------------------
1653 systemd_sleep_SOURCES = \
1654         src/sleep/sleep.c
1655
1656 systemd_sleep_LDADD = \
1657         libsystemd-shared.la
1658
1659 # ------------------------------------------------------------------------------
1660 systemd_fsck_SOURCES = \
1661         src/fsck/fsck.c
1662
1663 systemd_fsck_CFLAGS = \
1664         $(AM_CFLAGS) \
1665         $(DBUS_CFLAGS)
1666
1667 systemd_fsck_LDADD = \
1668         libsystemd-shared.la \
1669         libsystemd-dbus.la \
1670         libudev.la
1671
1672 # ------------------------------------------------------------------------------
1673 systemd_ac_power_SOURCES = \
1674         src/ac-power/ac-power.c
1675
1676 systemd_ac_power_LDADD = \
1677         libsystemd-shared.la \
1678         libudev.la
1679
1680 # ------------------------------------------------------------------------------
1681 systemd_detect_virt_SOURCES = \
1682         src/detect-virt/detect-virt.c
1683
1684 systemd_detect_virt_LDADD = \
1685         libsystemd-shared.la
1686
1687 systemd-detect-virt-install-hook:
1688         -$(SETCAP) cap_dac_override,cap_sys_ptrace=ep $(DESTDIR)$(bindir)/systemd-detect-virt
1689
1690 INSTALL_EXEC_HOOKS += \
1691         systemd-detect-virt-install-hook
1692
1693 # ------------------------------------------------------------------------------
1694 systemd_delta_SOURCES = \
1695         src/delta/delta.c
1696
1697 systemd_delta_LDADD = \
1698         libsystemd-shared.la
1699
1700 # ------------------------------------------------------------------------------
1701 systemd_getty_generator_SOURCES = \
1702         src/getty-generator/getty-generator.c
1703
1704 systemd_getty_generator_LDADD = \
1705         libsystemd-label.la \
1706         libsystemd-shared.la
1707
1708 # ------------------------------------------------------------------------------
1709 systemd_fstab_generator_SOURCES = \
1710         src/fstab-generator/fstab-generator.c \
1711         src/core/mount-setup.c
1712
1713 systemd_fstab_generator_LDADD = \
1714         libsystemd-label.la \
1715         libsystemd-shared.la
1716
1717 # ------------------------------------------------------------------------------
1718 systemd_system_update_generator_SOURCES = \
1719         src/system-update-generator/system-update-generator.c
1720
1721 systemd_system_update_generator_LDADD = \
1722         libsystemd-label.la \
1723         libsystemd-shared.la
1724
1725 if ENABLE_EFI
1726 # ------------------------------------------------------------------------------
1727 systemgenerator_PROGRAMS +=  \
1728         systemd-efi-boot-generator
1729
1730 systemd_efi_boot_generator_SOURCES = \
1731         src/efi-boot-generator/efi-boot-generator.c
1732
1733 systemd_efi_boot_generator_LDADD = \
1734         libsystemd-label.la \
1735         libsystemd-shared.la
1736
1737 # ------------------------------------------------------------------------------
1738 bootctl_SOURCES = \
1739         src/boot/boot.h \
1740         src/boot/boot-loader.h \
1741         src/boot/bootctl.c \
1742         src/boot/boot-loader.c \
1743         src/boot/boot-efi.c
1744
1745 bootctl_LDADD = \
1746         libsystemd-shared.la \
1747         libsystemd-id128.la \
1748         libsystemd-daemon.la
1749
1750 bin_PROGRAMS += \
1751         bootctl
1752 endif
1753
1754 # ------------------------------------------------------------------------------
1755 if HAVE_BLKID
1756 systemgenerator_PROGRAMS +=  \
1757         systemd-gpt-auto-generator
1758
1759 systemd_gpt_auto_generator_SOURCES = \
1760         src/gpt-auto-generator/gpt-auto-generator.c
1761
1762 systemd_gpt_auto_generator_LDADD = \
1763         libsystemd-label.la \
1764         libsystemd-shared.la \
1765         libsystemd-id128-internal.la \
1766         libudev-private.la \
1767         $(BLKID_LIBS)
1768
1769 systemd_gpt_auto_generator_CFLAGS = \
1770         $(AM_CFLAGS) \
1771         $(BLKID_CFLAGS)
1772 endif
1773
1774 # ------------------------------------------------------------------------------
1775 systemd_rc_local_generator_SOURCES = \
1776         src/rc-local-generator/rc-local-generator.c
1777
1778 systemd_rc_local_generator_LDADD = \
1779         libsystemd-label.la \
1780         libsystemd-shared.la
1781
1782 # ------------------------------------------------------------------------------
1783 systemd_remount_fs_SOURCES = \
1784         src/remount-fs/remount-fs.c \
1785         src/core/mount-setup.c \
1786         src/core/mount-setup.h
1787
1788 systemd_remount_fs_LDADD = \
1789         libsystemd-label.la \
1790         libsystemd-shared.la
1791
1792 # ------------------------------------------------------------------------------
1793 systemd_cgroups_agent_SOURCES = \
1794         src/cgroups-agent/cgroups-agent.c
1795
1796 systemd_cgroups_agent_CFLAGS = \
1797         $(AM_CFLAGS) \
1798         $(DBUS_CFLAGS)
1799
1800 systemd_cgroups_agent_LDADD = \
1801         libsystemd-shared.la \
1802         libsystemd-dbus.la
1803
1804 # ------------------------------------------------------------------------------
1805 systemctl_SOURCES = \
1806         src/systemctl/systemctl.c
1807
1808 systemctl_CFLAGS = \
1809         $(AM_CFLAGS) \
1810         $(DBUS_CFLAGS)
1811
1812 systemctl_LDADD = \
1813         libsystemd-units.la \
1814         libsystemd-label.la \
1815         libsystemd-shared.la \
1816         libsystemd-daemon.la \
1817         libsystemd-dbus.la \
1818         libsystemd-logs.la
1819
1820 # ------------------------------------------------------------------------------
1821 systemd_notify_SOURCES = \
1822         src/notify/notify.c \
1823         src/readahead/sd-readahead.c
1824
1825 systemd_notify_LDADD = \
1826         libsystemd-shared.la \
1827         libsystemd-daemon.la
1828
1829 # ------------------------------------------------------------------------------
1830 systemd_ask_password_SOURCES = \
1831         src/ask-password/ask-password.c
1832
1833 systemd_ask_password_LDADD = \
1834         libsystemd-label.la \
1835         libsystemd-shared.la
1836
1837 # ------------------------------------------------------------------------------
1838 systemd_reply_password_SOURCES = \
1839         src/reply-password/reply-password.c
1840
1841 systemd_reply_password_LDADD = \
1842         libsystemd-shared.la
1843
1844 # ------------------------------------------------------------------------------
1845 systemd_cgls_SOURCES = \
1846         src/cgls/cgls.c
1847
1848 systemd_cgls_LDADD = \
1849         libsystemd-shared.la
1850
1851 # ------------------------------------------------------------------------------
1852 systemd_cgtop_SOURCES = \
1853         src/cgtop/cgtop.c
1854
1855 systemd_cgtop_LDADD = \
1856         libsystemd-shared.la
1857
1858 # ------------------------------------------------------------------------------
1859 systemd_nspawn_SOURCES = \
1860         src/nspawn/nspawn.c \
1861         src/core/mount-setup.c \
1862         src/core/mount-setup.h \
1863         src/core/loopback-setup.c \
1864         src/core/loopback-setup.h
1865
1866 systemd_nspawn_LDADD = \
1867         libsystemd-label.la \
1868         libsystemd-capability.la \
1869         libsystemd-shared.la \
1870         libsystemd-daemon.la \
1871         libsystemd-id128-internal.la \
1872         libsystemd-bus.la
1873
1874 # ------------------------------------------------------------------------------
1875 systemd_run_SOURCES = \
1876         src/run/run.c
1877
1878 systemd_run_LDADD = \
1879         libsystemd-label.la \
1880         libsystemd-capability.la \
1881         libsystemd-shared.la \
1882         libsystemd-daemon.la \
1883         libsystemd-id128-internal.la \
1884         libsystemd-bus.la
1885
1886 # ------------------------------------------------------------------------------
1887 systemd_stdio_bridge_SOURCES = \
1888         src/stdio-bridge/stdio-bridge.c
1889
1890 systemd_stdio_bridge_LDADD = \
1891         libsystemd-shared.la \
1892         libsystemd-bus.la \
1893         libsystemd-daemon.la
1894
1895 # ------------------------------------------------------------------------------
1896 systemd_tty_ask_password_agent_SOURCES = \
1897         src/tty-ask-password-agent/tty-ask-password-agent.c
1898
1899 systemd_tty_ask_password_agent_LDADD = \
1900         libsystemd-label.la \
1901         libsystemd-shared.la
1902
1903 # ------------------------------------------------------------------------------
1904 libsystemd_daemon_la_SOURCES = \
1905         src/libsystemd-daemon/sd-daemon.c
1906
1907 libsystemd_daemon_internal_la_SOURCES = \
1908         $(libsystemd_daemon_la_SOURCES)
1909
1910 libsystemd_daemon_la_CFLAGS = \
1911         $(AM_CFLAGS) \
1912         -fvisibility=hidden \
1913         -DSD_EXPORT_SYMBOLS
1914
1915 libsystemd_daemon_la_LDFLAGS = \
1916         $(AM_LDFLAGS) \
1917         -version-info $(LIBSYSTEMD_DAEMON_CURRENT):$(LIBSYSTEMD_DAEMON_REVISION):$(LIBSYSTEMD_DAEMON_AGE) \
1918         -Wl,--version-script=$(top_srcdir)/src/libsystemd-daemon/libsystemd-daemon.sym
1919
1920 libsystemd_daemon_la_LIBADD =  \
1921         $(RT_LIBS)
1922
1923 pkginclude_HEADERS += \
1924         src/systemd/sd-daemon.h
1925
1926 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
1927 libsystemd-daemon-install-hook:
1928         libname=libsystemd-daemon.so && $(move-to-rootlibdir)
1929
1930 libsystemd-daemon-uninstall-hook:
1931         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-daemon.so*
1932
1933 INSTALL_EXEC_HOOKS += libsystemd-daemon-install-hook
1934 UNINSTALL_EXEC_HOOKS += libsystemd-daemon-uninstall-hook
1935
1936 lib_LTLIBRARIES += \
1937         libsystemd-daemon.la
1938
1939 noinst_LTLIBRARIES += \
1940         libsystemd-daemon-internal.la
1941
1942 pkgconfiglib_DATA += \
1943         src/libsystemd-daemon/libsystemd-daemon.pc
1944
1945 EXTRA_DIST += \
1946         src/libsystemd-daemon/libsystemd-daemon.pc.in \
1947         src/libsystemd-daemon/libsystemd-daemon.sym
1948
1949 # ------------------------------------------------------------------------------
1950 libsystemd_bus_la_SOURCES = \
1951         src/systemd/sd-bus.h \
1952         src/systemd/sd-bus-protocol.h \
1953         src/systemd/sd-bus-vtable.h \
1954         src/systemd/sd-memfd.h \
1955         src/systemd/sd-event.h \
1956         src/libsystemd-bus/sd-bus.c \
1957         src/libsystemd-bus/bus-control.c \
1958         src/libsystemd-bus/bus-control.h \
1959         src/libsystemd-bus/bus-error.c \
1960         src/libsystemd-bus/bus-error.h \
1961         src/libsystemd-bus/bus-internal.c \
1962         src/libsystemd-bus/bus-internal.h \
1963         src/libsystemd-bus/bus-socket.c \
1964         src/libsystemd-bus/bus-socket.h \
1965         src/libsystemd-bus/bus-kernel.c \
1966         src/libsystemd-bus/bus-kernel.h \
1967         src/libsystemd-bus/bus-message.c \
1968         src/libsystemd-bus/bus-message.h \
1969         src/libsystemd-bus/bus-signature.c \
1970         src/libsystemd-bus/bus-signature.h \
1971         src/libsystemd-bus/bus-type.c \
1972         src/libsystemd-bus/bus-type.h \
1973         src/libsystemd-bus/bus-match.c \
1974         src/libsystemd-bus/bus-match.h \
1975         src/libsystemd-bus/bus-bloom.c \
1976         src/libsystemd-bus/bus-bloom.h \
1977         src/libsystemd-bus/bus-introspect.c \
1978         src/libsystemd-bus/bus-introspect.h \
1979         src/libsystemd-bus/bus-objects.c \
1980         src/libsystemd-bus/bus-objects.h \
1981         src/libsystemd-bus/bus-convenience.c \
1982         src/libsystemd-bus/kdbus.h \
1983         src/libsystemd-bus/sd-memfd.c \
1984         src/libsystemd-bus/sd-event.c
1985
1986 libsystemd_bus_la_LIBADD =  \
1987         libsystemd-id128-internal.la \
1988         libsystemd-shared.la \
1989         libsystemd-daemon.la
1990
1991 libsystemd_bus_la_CFLAGS = \
1992         $(AM_CFLAGS) \
1993         -pthread
1994
1995 noinst_LTLIBRARIES += \
1996         libsystemd-bus.la
1997
1998 tests += \
1999         test-bus-marshal \
2000         test-bus-signature \
2001         test-bus-chat \
2002         test-bus-server \
2003         test-bus-match \
2004         test-bus-kernel \
2005         test-bus-kernel-bloom \
2006         test-bus-kernel-benchmark \
2007         test-bus-memfd \
2008         test-bus-zero-copy \
2009         test-bus-introspect \
2010         test-bus-objects \
2011         test-event
2012
2013 noinst_PROGRAMS += \
2014         busctl
2015
2016 test_bus_marshal_SOURCES = \
2017         src/libsystemd-bus/test-bus-marshal.c
2018
2019 test_bus_marshal_LDADD = \
2020         libsystemd-shared.la \
2021         libsystemd-bus.la \
2022         $(GLIB_LIBS) \
2023         $(DBUS_LIBS)
2024
2025 test_bus_marshal_CFLAGS = \
2026         $(AM_CFLAGS) \
2027         $(GLIB_CFLAGS) \
2028         $(DBUS_CFLAGS)
2029
2030 test_bus_signature_SOURCES = \
2031         src/libsystemd-bus/test-bus-signature.c
2032
2033 test_bus_signature_LDADD = \
2034         libsystemd-shared.la \
2035         libsystemd-bus.la
2036
2037 test_bus_chat_SOURCES = \
2038         src/libsystemd-bus/test-bus-chat.c
2039
2040 test_bus_chat_CFLAGS = \
2041         $(AM_CFLAGS) \
2042         -pthread
2043
2044 test_bus_chat_LDADD = \
2045         libsystemd-shared.la \
2046         libsystemd-bus.la \
2047         libsystemd-id128-internal.la
2048
2049 test_bus_server_SOURCES = \
2050         src/libsystemd-bus/test-bus-server.c
2051
2052 test_bus_server_CFLAGS = \
2053         $(AM_CFLAGS) \
2054         -pthread
2055
2056 test_bus_server_LDADD = \
2057         libsystemd-shared.la \
2058         libsystemd-bus.la \
2059         libsystemd-id128-internal.la
2060
2061 test_bus_objects_SOURCES = \
2062         src/libsystemd-bus/test-bus-objects.c
2063
2064 test_bus_objects_CFLAGS = \
2065         $(AM_CFLAGS) \
2066         -pthread
2067
2068 test_bus_objects_LDADD = \
2069         libsystemd-shared.la \
2070         libsystemd-bus.la \
2071         libsystemd-id128-internal.la
2072
2073 test_bus_match_SOURCES = \
2074         src/libsystemd-bus/test-bus-match.c
2075
2076 test_bus_match_CFLAGS = \
2077         $(AM_CFLAGS)
2078
2079 test_bus_match_LDADD = \
2080         libsystemd-shared.la \
2081         libsystemd-bus.la \
2082         libsystemd-id128-internal.la
2083
2084 test_bus_kernel_SOURCES = \
2085         src/libsystemd-bus/test-bus-kernel.c
2086
2087 test_bus_kernel_CFLAGS = \
2088         $(AM_CFLAGS)
2089
2090 test_bus_kernel_LDADD = \
2091         libsystemd-shared.la \
2092         libsystemd-bus.la \
2093         libsystemd-id128-internal.la
2094
2095 test_bus_kernel_bloom_SOURCES = \
2096         src/libsystemd-bus/test-bus-kernel-bloom.c
2097
2098 test_bus_kernel_bloom_CFLAGS = \
2099         $(AM_CFLAGS)
2100
2101 test_bus_kernel_bloom_LDADD = \
2102         libsystemd-shared.la \
2103         libsystemd-bus.la \
2104         libsystemd-id128-internal.la
2105
2106 test_bus_kernel_benchmark_SOURCES = \
2107         src/libsystemd-bus/test-bus-kernel-benchmark.c
2108
2109 test_bus_kernel_benchmark_CFLAGS = \
2110         $(AM_CFLAGS)
2111
2112 test_bus_kernel_benchmark_LDADD = \
2113         libsystemd-shared.la \
2114         libsystemd-bus.la \
2115         libsystemd-id128-internal.la
2116
2117 test_bus_memfd_SOURCES = \
2118         src/libsystemd-bus/test-bus-memfd.c
2119
2120 test_bus_memfd_CFLAGS = \
2121         $(AM_CFLAGS)
2122
2123 test_bus_memfd_LDADD = \
2124         libsystemd-shared.la \
2125         libsystemd-bus.la
2126
2127 test_bus_zero_copy_SOURCES = \
2128         src/libsystemd-bus/test-bus-zero-copy.c
2129
2130 test_bus_zero_copy_CFLAGS = \
2131         $(AM_CFLAGS)
2132
2133 test_bus_zero_copy_LDADD = \
2134         libsystemd-shared.la \
2135         libsystemd-bus.la
2136
2137 test_bus_introspect_SOURCES = \
2138         src/libsystemd-bus/test-bus-introspect.c
2139
2140 test_bus_introspect_CFLAGS = \
2141         $(AM_CFLAGS)
2142
2143 test_bus_introspect_LDADD = \
2144         libsystemd-shared.la \
2145         libsystemd-bus.la
2146
2147 test_event_SOURCES = \
2148         src/libsystemd-bus/test-event.c
2149
2150 test_event_LDADD = \
2151         libsystemd-shared.la \
2152         libsystemd-bus.la \
2153         libsystemd-id128-internal.la
2154
2155 busctl_SOURCES = \
2156         src/libsystemd-bus/busctl.c
2157
2158 busctl_LDADD = \
2159         libsystemd-shared.la \
2160         libsystemd-bus.la
2161
2162 # ------------------------------------------------------------------------------
2163 if ENABLE_GTK_DOC
2164 SUBDIRS += \
2165         docs/libudev
2166
2167 noinst_DATA += \
2168         docs/html/libudev \
2169         docs/html/gudev
2170 endif
2171
2172 include_HEADERS += \
2173         src/libudev/libudev.h
2174
2175 lib_LTLIBRARIES += \
2176         libudev.la
2177
2178 libudev_la_SOURCES =\
2179         src/libudev/libudev-private.h \
2180         src/libudev/libudev.c \
2181         src/libudev/libudev-list.c \
2182         src/libudev/libudev-util.c \
2183         src/libudev/libudev-device.c \
2184         src/libudev/libudev-enumerate.c \
2185         src/libudev/libudev-monitor.c \
2186         src/libudev/libudev-queue.c \
2187         src/libudev/libudev-hwdb-def.h \
2188         src/libudev/libudev-hwdb.c
2189
2190 libudev_la_CFLAGS = \
2191         $(AM_CFLAGS) \
2192         -fvisibility=hidden
2193
2194 libudev_la_LDFLAGS = \
2195         $(AM_LDFLAGS) \
2196         -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
2197         -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
2198
2199 libudev_la_LIBADD = \
2200         libsystemd-shared.la \
2201         libsystemd-label.la \
2202         libsystemd-daemon-internal.la \
2203         $(RT_LIBS) \
2204         libsystemd-id128-internal.la
2205
2206 pkgconfiglib_DATA += \
2207         src/libudev/libudev.pc
2208
2209 EXTRA_DIST += \
2210         src/libudev/libudev.pc.in \
2211         src/libudev/libudev.sym
2212
2213 CLEANFILES += \
2214         src/libudev/libudev.pc \
2215         docs/html/libudev \
2216         docs/html/gudev
2217
2218 docs/html/libudev:
2219         $(AM_V_at)$(MKDIR_P) $(dir $@)
2220         $(AM_V_LN)$(LN_S) -f ../libudev/html $@
2221
2222 docs/html/gudev:
2223         $(AM_V_at)$(MKDIR_P) $(dir $@)
2224         $(AM_V_LN)$(LN_S) -f ../gudev/html $@
2225
2226 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2227 libudev-install-hook:
2228         libname=libudev.so && $(move-to-rootlibdir)
2229
2230 libudev-uninstall-hook:
2231         rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
2232
2233 INSTALL_EXEC_HOOKS += libudev-install-hook
2234 UNINSTALL_EXEC_HOOKS += libudev-uninstall-hook
2235
2236 # ------------------------------------------------------------------------------
2237 noinst_LTLIBRARIES += \
2238         libudev-private.la
2239
2240 libudev_private_la_SOURCES =\
2241         $(libudev_la_SOURCES) \
2242         src/libudev/libudev-device-private.c \
2243         src/libudev/libudev-queue-private.c
2244
2245 libudev_private_la_CFLAGS = \
2246         $(AM_CFLAGS) \
2247         -fvisibility=default
2248
2249 libudev_private_la_LIBADD = \
2250         libsystemd-shared.la
2251
2252 # ------------------------------------------------------------------------------
2253 INSTALL_DIRS += \
2254         $(sysconfdir)/udev/rules.d \
2255         $(sysconfdir)/udev/hwdb.d
2256
2257 dist_udevrules_DATA += \
2258         rules/99-systemd.rules \
2259         rules/42-usb-hid-pm.rules \
2260         rules/50-udev-default.rules \
2261         rules/60-keyboard.rules \
2262         rules/60-persistent-storage-tape.rules \
2263         rules/60-persistent-serial.rules \
2264         rules/60-persistent-input.rules \
2265         rules/60-persistent-alsa.rules \
2266         rules/60-persistent-storage.rules \
2267         rules/64-btrfs.rules \
2268         rules/75-net-description.rules \
2269         rules/75-tty-description.rules \
2270         rules/78-sound-card.rules \
2271         rules/80-net-name-slot.rules \
2272         rules/95-udev-late.rules
2273
2274 dist_udevhwdb_DATA = \
2275         hwdb/20-pci-vendor-model.hwdb \
2276         hwdb/20-pci-classes.hwdb \
2277         hwdb/20-usb-vendor-model.hwdb \
2278         hwdb/20-usb-classes.hwdb \
2279         hwdb/20-bluetooth-vendor-product.hwdb \
2280         hwdb/20-acpi-vendor.hwdb \
2281         hwdb/20-OUI.hwdb \
2282         hwdb/60-keyboard.hwdb
2283
2284 udevconfdir = $(sysconfdir)/udev
2285 dist_udevconf_DATA = \
2286         src/udev/udev.conf
2287
2288 sharepkgconfigdir = $(datadir)/pkgconfig
2289 sharepkgconfig_DATA = \
2290         src/udev/udev.pc
2291
2292 EXTRA_DIST += \
2293         rules/99-systemd.rules.in \
2294         src/udev/udev.pc.in
2295
2296 CLEANFILES += \
2297         rules/99-systemd.rules \
2298         src/udev/udev.pc
2299
2300 EXTRA_DIST += \
2301         units/systemd-udevd.service.in \
2302         units/systemd-udev-trigger.service.in \
2303         units/systemd-udev-settle.service.in
2304
2305 CLEANFILES += \
2306         units/systemd-udevd.service \
2307         units/systemd-udev-trigger.service \
2308         units/systemd-udev-settle.service
2309
2310 SOCKETS_TARGET_WANTS += \
2311         systemd-udevd-control.socket \
2312         systemd-udevd-kernel.socket
2313 SYSINIT_TARGET_WANTS += \
2314         systemd-udevd.service \
2315         systemd-udev-trigger.service
2316
2317 rootbin_PROGRAMS += \
2318         udevadm
2319
2320 rootlibexec_PROGRAMS += \
2321         systemd-udevd
2322
2323 noinst_LTLIBRARIES += \
2324         libudev-core.la
2325
2326 src/udev/keyboard-keys.txt: Makefile
2327         $(AM_V_at)$(MKDIR_P) $(dir $@)
2328         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/input.h - < /dev/null | $(AWK) '/^#define[ \t]+KEY_[^ ]+[ \t]+[0-9]/ { if ($$2 != "KEY_MAX") { print $$2 } }' | sed 's/^KEY_COFFEE$$/KEY_SCREENLOCK/' > $@
2329
2330 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt Makefile
2331         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
2332
2333 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf Makefile
2334         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
2335
2336 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt Makefile
2337         $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
2338
2339 libudev_core_la_SOURCES = \
2340         src/udev/udev.h \
2341         src/udev/udev-event.c \
2342         src/udev/udev-watch.c \
2343         src/udev/udev-node.c \
2344         src/udev/udev-rules.c \
2345         src/udev/udev-ctrl.c \
2346         src/udev/udev-builtin.c \
2347         src/udev/udev-builtin-btrfs.c \
2348         src/udev/udev-builtin-hwdb.c \
2349         src/udev/udev-builtin-input_id.c \
2350         src/udev/udev-builtin-keyboard.c \
2351         src/udev/udev-builtin-net_id.c \
2352         src/udev/udev-builtin-path_id.c \
2353         src/udev/udev-builtin-usb_id.c
2354
2355 nodist_libudev_core_la_SOURCES = \
2356         src/udev/keyboard-keys-from-name.h \
2357         src/udev/keyboard-keys-to-name.h
2358
2359 BUILT_SOURCES += \
2360         $(nodist_libudev_core_la_SOURCES)
2361
2362 CLEANFILES += \
2363         src/udev/keyboard-keys-from-name.gperf \
2364         src/udev/keyboard-keys.txt
2365
2366 libudev_core_la_CFLAGS = \
2367         $(AM_CFLAGS) \
2368         $(BLKID_CFLAGS) \
2369         $(KMOD_CFLAGS)
2370
2371 libudev_core_la_LIBADD = \
2372         libudev-private.la \
2373         libsystemd-label.la \
2374         libsystemd-daemon-internal.la \
2375         $(RT_LIBS) \
2376         libsystemd-shared.la \
2377         $(BLKID_LIBS) \
2378         $(KMOD_LIBS)
2379
2380 libudev_core_la_CPPFLAGS = \
2381         $(AM_CPPFLAGS) \
2382         -DFIRMWARE_PATH="$(FIRMWARE_PATH)"
2383
2384 if ENABLE_FIRMWARE
2385 libudev_core_la_SOURCES += \
2386         src/udev/udev-builtin-firmware.c
2387
2388 dist_udevrules_DATA += \
2389         rules/50-firmware.rules
2390 endif
2391
2392 if HAVE_KMOD
2393 libudev_core_la_SOURCES += \
2394         src/udev/udev-builtin-kmod.c
2395
2396 dist_udevrules_DATA += \
2397         rules/80-drivers.rules
2398 endif
2399
2400 if HAVE_BLKID
2401 libudev_core_la_SOURCES += \
2402         src/udev/udev-builtin-blkid.c
2403 endif
2404
2405 if HAVE_ACL
2406 libudev_core_la_SOURCES += \
2407         src/udev/udev-builtin-uaccess.c \
2408         src/login/logind-acl.c \
2409         src/login/sd-login.c \
2410         src/systemd/sd-login.h \
2411         src/login/login-shared.c \
2412         src/login/login-shared.h
2413
2414 libudev_core_la_LIBADD += \
2415         libsystemd-acl.la
2416 endif
2417
2418 systemd_udevd_SOURCES = \
2419         src/udev/udevd.c
2420
2421 systemd_udevd_LDADD = \
2422         libudev-core.la
2423
2424 udevadm_SOURCES = \
2425         src/udev/udevadm.c \
2426         src/udev/udevadm-info.c \
2427         src/udev/udevadm-control.c \
2428         src/udev/udevadm-monitor.c \
2429         src/udev/udevadm-hwdb.c \
2430         src/udev/udevadm-settle.c \
2431         src/udev/udevadm-trigger.c \
2432         src/udev/udevadm-test.c \
2433         src/udev/udevadm-test-builtin.c
2434
2435 udevadm_LDADD = \
2436         libudev-core.la \
2437         libsystemd-shared.la
2438
2439 # Update hwdb on installation. Do not bother if installing
2440 # in DESTDIR, since this is likely for packaging purposes.
2441 hwdb-update-hook:
2442         -test -n "$(DESTDIR)" || $(rootbindir)/udevadm hwdb --update
2443
2444 INSTALL_DATA_HOOKS += \
2445         hwdb-update-hook
2446
2447 hwdb-remove-hook:
2448         -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
2449
2450 # ------------------------------------------------------------------------------
2451 TESTS += \
2452         test/udev-test.pl \
2453         test/rules-test.sh
2454
2455 manual_tests += \
2456         test-libudev \
2457         test-udev
2458
2459 test_libudev_SOURCES = \
2460         src/test/test-libudev.c
2461
2462 test_libudev_LDADD = \
2463         libsystemd-label.la \
2464         libsystemd-shared.la \
2465         libudev.la
2466
2467 test_udev_SOURCES = \
2468         src/test/test-udev.c
2469
2470 test_udev_LDADD = \
2471         libudev-core.la \
2472         libsystemd-shared.la \
2473         $(BLKID_LIBS) \
2474         $(KMOD_LIBS) \
2475         $(SELINUX_LIBS)
2476
2477 if HAVE_ACL
2478 test_udev_LDADD += \
2479         libsystemd-acl.la
2480 endif
2481
2482 check_DATA += \
2483         test/sys
2484
2485 # packed sysfs test tree
2486 test/sys:
2487         $(AM_V_at)$(MKDIR_P) $(dir $@)
2488         $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
2489
2490 test-sys-distclean:
2491         -rm -rf test/sys
2492 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
2493
2494 EXTRA_DIST += \
2495         test/sys.tar.xz \
2496         test/udev-test.pl \
2497         test/rules-test.sh \
2498         test/rule-syntax-check.py
2499
2500 # ------------------------------------------------------------------------------
2501 ata_id_SOURCES = \
2502         src/udev/ata_id/ata_id.c
2503
2504 ata_id_LDADD = \
2505         libudev-private.la \
2506         libsystemd-shared.la
2507
2508 udevlibexec_PROGRAMS += \
2509         ata_id
2510
2511 # ------------------------------------------------------------------------------
2512 cdrom_id_SOURCES = \
2513         src/udev/cdrom_id/cdrom_id.c
2514
2515 cdrom_id_LDADD = \
2516         libudev.la \
2517         libsystemd-shared.la
2518
2519 udevlibexec_PROGRAMS += \
2520         cdrom_id
2521
2522 dist_udevrules_DATA += \
2523         rules/60-cdrom_id.rules
2524
2525 # ------------------------------------------------------------------------------
2526 collect_SOURCES = \
2527         src/udev/collect/collect.c
2528
2529 collect_LDADD = \
2530         libudev-private.la
2531
2532 udevlibexec_PROGRAMS += \
2533         collect
2534
2535 # ------------------------------------------------------------------------------
2536 scsi_id_SOURCES =\
2537         src/udev/scsi_id/scsi_id.c \
2538         src/udev/scsi_id/scsi_serial.c \
2539         src/udev/scsi_id/scsi.h \
2540         src/udev/scsi_id/scsi_id.h
2541
2542 scsi_id_LDADD = \
2543         libudev-private.la \
2544         libsystemd-shared.la
2545
2546 udevlibexec_PROGRAMS += \
2547         scsi_id
2548
2549 EXTRA_DIST += \
2550         src/udev/scsi_id/README
2551
2552 # ------------------------------------------------------------------------------
2553 v4l_id_SOURCES = \
2554         src/udev/v4l_id/v4l_id.c
2555
2556 v4l_id_LDADD = \
2557         libudev.la
2558
2559 udevlibexec_PROGRAMS += \
2560         v4l_id
2561
2562 dist_udevrules_DATA += \
2563         rules/60-persistent-v4l.rules
2564
2565 # ------------------------------------------------------------------------------
2566 accelerometer_SOURCES = \
2567         src/udev/accelerometer/accelerometer.c
2568
2569 accelerometer_LDADD = \
2570         libudev.la -lm \
2571         libsystemd-shared.la
2572
2573 udevlibexec_PROGRAMS += \
2574         accelerometer
2575
2576 dist_udevrules_DATA += \
2577         rules/61-accelerometer.rules
2578
2579 # ------------------------------------------------------------------------------
2580 if ENABLE_GUDEV
2581 if ENABLE_GTK_DOC
2582 SUBDIRS += \
2583         docs/gudev
2584 endif
2585
2586 libgudev_includedir = \
2587         $(includedir)/gudev-1.0/gudev
2588
2589 libgudev_include_HEADERS = \
2590         src/gudev/gudev.h \
2591         src/gudev/gudevenums.h \
2592         src/gudev/gudevenumtypes.h \
2593         src/gudev/gudevtypes.h \
2594         src/gudev/gudevclient.h \
2595         src/gudev/gudevdevice.h \
2596         src/gudev/gudevenumerator.h
2597
2598 lib_LTLIBRARIES += libgudev-1.0.la
2599
2600 pkgconfiglib_DATA += \
2601         src/gudev/gudev-1.0.pc
2602
2603 CLEANFILES += \
2604         src/gudev/gudev-1.0.pc
2605
2606 libgudev_1_0_la_SOURCES = \
2607         src/gudev/gudevenums.h \
2608         src/gudev/gudevenumtypes.h \
2609         src/gudev/gudevenumtypes.h\
2610         src/gudev/gudevtypes.h \
2611         src/gudev/gudevclient.h \
2612         src/gudev/gudevclient.c \
2613         src/gudev/gudevdevice.h \
2614         src/gudev/gudevdevice.c \
2615         src/gudev/gudevenumerator.h \
2616         src/gudev/gudevenumerator.c \
2617         src/gudev/gudevprivate.h
2618
2619 nodist_libgudev_1_0_la_SOURCES = \
2620         src/gudev/gudevmarshal.h \
2621         src/gudev/gudevmarshal.c \
2622         src/gudev/gudevenumtypes.h \
2623         src/gudev/gudevenumtypes.c
2624
2625 BUILT_SOURCES += \
2626         $(nodist_libgudev_1_0_la_SOURCES)
2627
2628 libgudev_1_0_la_CPPFLAGS = \
2629         $(AM_CPPFLAGS) \
2630         -I$(top_builddir)/src\
2631         -I$(top_srcdir)/src\
2632         -I$(top_builddir)/src/gudev \
2633         -I$(top_srcdir)/src/gudev \
2634         -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
2635         -D_GUDEV_COMPILATION \
2636         -DG_LOG_DOMAIN=\"GUdev\"
2637
2638 libgudev_1_0_la_CFLAGS = \
2639         $(AM_CFLAGS) \
2640         -fvisibility=default \
2641         $(GLIB_CFLAGS)
2642
2643 libgudev_1_0_la_LIBADD = \
2644         libudev.la \
2645         $(GLIB_LIBS)
2646
2647 libgudev_1_0_la_LDFLAGS = \
2648         $(AM_LDFLAGS) \
2649         -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
2650         -export-dynamic -no-undefined \
2651         -export-symbols-regex '^g_udev_.*'
2652
2653 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
2654         $(AM_V_at)$(MKDIR_P) $(dir $@)
2655         $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
2656
2657 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
2658         $(AM_V_at)$(MKDIR_P) $(dir $@)
2659         $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
2660         glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
2661
2662 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
2663         $(AM_V_at)$(MKDIR_P) $(dir $@)
2664         $(AM_V_GEN)glib-mkenums --template $^ > $@
2665
2666 if HAVE_INTROSPECTION
2667 -include $(INTROSPECTION_MAKEFILE)
2668
2669 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
2670
2671 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
2672
2673 src_gudev_GUdev_1_0_gir_CFLAGS = \
2674         $(INCLUDES) \
2675         -D_GUDEV_COMPILATION \
2676         -D_GUDEV_WORK_AROUND_DEV_T_BUG \
2677         -I$(top_srcdir)/src \
2678         -I$(top_builddir)/src \
2679         -I$(top_srcdir)/src/gdev \
2680         -I$(top_builddir)/src/gdev
2681
2682 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
2683
2684 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
2685         --pkg-export=gudev-1.0 \
2686         --warn-all
2687
2688 src_gudev_GUdev_1_0_gir_FILES = \
2689         src/gudev/gudev.h \
2690         src/gudev/gudevtypes.h \
2691         src/gudev/gudevenums.h \
2692         src/gudev/gudevenumtypes.h \
2693         src/gudev/gudevclient.h \
2694         src/gudev/gudevdevice.h \
2695         src/gudev/gudevenumerator.h \
2696         src/gudev/gudevclient.c \
2697         src/gudev/gudevdevice.c \
2698         src/gudev/gudevenumerator.c
2699
2700 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
2701 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
2702
2703 girdir = $(datadir)/gir-1.0
2704 gir_DATA = \
2705         src/gudev/GUdev-1.0.gir
2706
2707 typelibsdir = $(libdir)/girepository-1.0
2708 typelibs_DATA = \
2709         src/gudev/GUdev-1.0.typelib
2710
2711 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
2712 endif # HAVE_INTROSPECTION
2713
2714 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2715 libgudev-install-hook:
2716         libname=libgudev-1.0.so && $(move-to-rootlibdir)
2717
2718 libgudev-uninstall-hook:
2719         rm -f $(DESTDIR)$(rootlibdir)/libgudev-1.0.so*
2720
2721 INSTALL_EXEC_HOOKS += libgudev-install-hook
2722 UNINSTALL_EXEC_HOOKS += libgudev-uninstall-hook
2723 endif
2724
2725 EXTRA_DIST += \
2726         src/gudev/gudev-1.0.pc.in \
2727         src/gudev/gudevmarshal.list \
2728         src/gudev/gudevenumtypes.h.template \
2729         src/gudev/gudevenumtypes.c.template \
2730         src/gudev/gjs-example.js \
2731         src/gudev/seed-example-enum.js \
2732         src/gudev/seed-example.js
2733
2734 # ------------------------------------------------------------------------------
2735 mtd_probe_SOURCES =  \
2736         src/udev/mtd_probe/mtd_probe.c \
2737         src/udev/mtd_probe/mtd_probe.h \
2738         src/udev/mtd_probe/probe_smartmedia.c
2739
2740 mtd_probe_CPPFLAGS = \
2741         $(AM_CPPFLAGS)
2742
2743 dist_udevrules_DATA += \
2744         rules/75-probe_mtd.rules
2745
2746 udevlibexec_PROGRAMS += \
2747         mtd_probe
2748
2749 # ------------------------------------------------------------------------------
2750 libsystemd_id128_la_SOURCES = \
2751         src/libsystemd-id128/sd-id128.c
2752
2753 libsystemd_id128_la_CFLAGS = \
2754         $(AM_CFLAGS) \
2755         -fvisibility=hidden
2756
2757 libsystemd_id128_la_LDFLAGS = \
2758         $(AM_LDFLAGS) \
2759         -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
2760         -Wl,--version-script=$(top_srcdir)/src/libsystemd-id128/libsystemd-id128.sym
2761
2762 libsystemd_id128_la_LIBADD = \
2763         libsystemd-shared.la \
2764         libsystemd-label.la \
2765         libsystemd-daemon-internal.la \
2766         $(RT_LIBS)
2767
2768 libsystemd_id128_internal_la_SOURCES = \
2769         $(libsystemd_id128_la_SOURCES)
2770
2771 test_id128_SOURCES = \
2772         src/test/test-id128.c
2773
2774 test_id128_LDADD = \
2775         libsystemd-shared.la \
2776         libsystemd-id128-internal.la \
2777         libsystemd-daemon.la
2778
2779 tests += \
2780         test-id128
2781
2782 pkginclude_HEADERS += \
2783         src/systemd/sd-id128.h
2784
2785 lib_LTLIBRARIES += \
2786         libsystemd-id128.la
2787
2788 noinst_LTLIBRARIES += \
2789         libsystemd-id128-internal.la
2790
2791 pkgconfiglib_DATA += \
2792         src/libsystemd-id128/libsystemd-id128.pc
2793
2794 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2795 libsystemd-id128-install-hook:
2796         libname=libsystemd-id128.so && $(move-to-rootlibdir)
2797
2798 libsystemd-id128-uninstall-hook:
2799         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
2800
2801 INSTALL_EXEC_HOOKS += libsystemd-id128-install-hook
2802 UNINSTALL_EXEC_HOOKS += libsystemd-id128-uninstall-hook
2803
2804 EXTRA_DIST += \
2805         src/libsystemd-id128/libsystemd-id128.pc.in \
2806         src/libsystemd-id128/libsystemd-id128.sym
2807
2808 # ------------------------------------------------------------------------------
2809
2810 rootlibexec_PROGRAMS += \
2811         systemd-activate
2812
2813 systemd_activate_SOURCES = \
2814         src/activate/activate.c
2815
2816 systemd_activate_LDADD = \
2817         libsystemd-shared.la \
2818         libsystemd-daemon.la
2819
2820 # ------------------------------------------------------------------------------
2821 systemd_journald_SOURCES = \
2822         src/journal/journald.c \
2823         src/journal/journald-server.h
2824
2825 systemd_journald_LDADD = \
2826         libsystemd-journal-internal.la \
2827         libsystemd-shared.la \
2828         libsystemd-id128-internal.la
2829
2830 systemd_cat_SOURCES = \
2831         src/journal/cat.c
2832
2833 systemd_cat_LDADD = \
2834         libsystemd-shared.la \
2835         libsystemd-journal-internal.la
2836
2837 journalctl_SOURCES = \
2838         src/journal/journalctl.c
2839
2840 journalctl_CFLAGS = \
2841         $(AM_CFLAGS)
2842
2843 journalctl_LDADD = \
2844         libsystemd-shared.la \
2845         libsystemd-journal-internal.la \
2846         libsystemd-id128-internal.la \
2847         libsystemd-logs.la
2848
2849 if HAVE_ACL
2850 journalctl_LDADD += \
2851         libsystemd-acl.la
2852 endif
2853
2854 if HAVE_QRENCODE
2855 journalctl_SOURCES += \
2856         src/journal/journal-qrcode.c \
2857         src/journal/journal-qrcode.h
2858
2859 journalctl_CFLAGS += \
2860         $(QRENCODE_CFLAGS)
2861
2862 journalctl_LDADD += \
2863         $(QRENCODE_LIBS)
2864 endif
2865
2866 test_journal_SOURCES = \
2867         src/journal/test-journal.c
2868
2869 test_journal_LDADD = \
2870         libsystemd-shared.la \
2871         libsystemd-journal-internal.la \
2872         libsystemd-id128-internal.la
2873
2874 test_journal_send_SOURCES = \
2875         src/journal/test-journal-send.c
2876
2877 test_journal_send_LDADD = \
2878         libsystemd-shared.la \
2879         libsystemd-journal-internal.la \
2880         libsystemd-id128-internal.la
2881
2882 test_journal_syslog_SOURCES = \
2883         src/journal/test-journal-syslog.c
2884
2885 test_journal_syslog_LDADD = \
2886         libsystemd-journal-internal.la \
2887         libsystemd-shared.la \
2888         libsystemd-id128-internal.la
2889
2890 test_journal_match_SOURCES = \
2891         src/journal/test-journal-match.c
2892
2893 test_journal_match_LDADD = \
2894         libsystemd-shared.la \
2895         libsystemd-journal-internal.la \
2896         libsystemd-id128-internal.la
2897
2898 test_journal_enum_SOURCES = \
2899         src/journal/test-journal-enum.c
2900
2901 test_journal_enum_LDADD = \
2902         libsystemd-shared.la \
2903         libsystemd-journal-internal.la \
2904         libsystemd-id128-internal.la
2905
2906 test_journal_stream_SOURCES = \
2907         src/journal/test-journal-stream.c
2908
2909 test_journal_stream_LDADD = \
2910         libsystemd-shared.la \
2911         libsystemd-journal-internal.la \
2912         libsystemd-id128-internal.la
2913
2914 test_journal_init_SOURCES = \
2915         src/journal/test-journal-init.c
2916
2917 test_journal_init_LDADD = \
2918         libsystemd-shared.la \
2919         libsystemd-daemon-internal.la \
2920         $(RT_LIBS) \
2921         libsystemd-journal.la
2922
2923 test_journal_verify_SOURCES = \
2924         src/journal/test-journal-verify.c
2925
2926 test_journal_verify_LDADD = \
2927         libsystemd-shared.la \
2928         libsystemd-journal-internal.la \
2929         libsystemd-id128-internal.la
2930
2931 test_journal_interleaving_SOURCES = \
2932         src/journal/test-journal-interleaving.c
2933
2934 test_journal_interleaving_LDADD = \
2935         libsystemd-shared.la \
2936         libsystemd-journal-internal.la \
2937         libsystemd-id128-internal.la
2938
2939 test_mmap_cache_SOURCES = \
2940         src/journal/test-mmap-cache.c
2941
2942 test_mmap_cache_LDADD = \
2943         libsystemd-shared.la \
2944         libsystemd-journal-internal.la
2945
2946 test_catalog_SOURCES = \
2947         src/journal/test-catalog.c
2948
2949 test_catalog_CFLAGS = \
2950         $(AM_CFLAGS) \
2951         -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
2952
2953 test_catalog_LDADD = \
2954         libsystemd-shared.la \
2955         libsystemd-label.la \
2956         libsystemd-journal-internal.la \
2957         libsystemd-id128-internal.la
2958
2959 libsystemd_journal_la_SOURCES = \
2960         src/journal/sd-journal.c \
2961         src/systemd/sd-journal.h \
2962         src/journal/journal-file.c \
2963         src/journal/journal-file.h \
2964         src/journal/journal-vacuum.c \
2965         src/journal/journal-vacuum.h \
2966         src/journal/journal-verify.c \
2967         src/journal/journal-verify.h \
2968         src/journal/lookup3.c \
2969         src/journal/lookup3.h \
2970         src/journal/journal-send.c \
2971         src/journal/journal-def.h \
2972         src/journal/compress.h \
2973         src/journal/catalog.c \
2974         src/journal/catalog.h \
2975         src/journal/mmap-cache.c \
2976         src/journal/mmap-cache.h
2977
2978 libsystemd_journal_la_CFLAGS = \
2979         $(AM_CFLAGS) \
2980         -fvisibility=hidden
2981
2982 libsystemd_journal_la_LDFLAGS = \
2983         $(AM_LDFLAGS) \
2984         -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
2985         -Wl,--version-script=$(top_srcdir)/src/journal/libsystemd-journal.sym
2986
2987 libsystemd_journal_la_LIBADD = \
2988         libsystemd-shared.la \
2989         libsystemd-label.la \
2990         libsystemd-daemon-internal.la \
2991         $(RT_LIBS) \
2992         libsystemd-id128-internal.la
2993
2994 libsystemd_journal_internal_la_SOURCES = \
2995         $(libsystemd_journal_la_SOURCES) \
2996         src/journal/journald-kmsg.c \
2997         src/journal/journald-kmsg.h \
2998         src/journal/journald-syslog.c \
2999         src/journal/journald-syslog.h \
3000         src/journal/journald-stream.c \
3001         src/journal/journald-stream.h \
3002         src/journal/journald-server.c \
3003         src/journal/journald-server.h \
3004         src/journal/journald-console.c \
3005         src/journal/journald-console.h \
3006         src/journal/journald-native.c \
3007         src/journal/journald-native.h \
3008         src/journal/journald-rate-limit.c \
3009         src/journal/journald-rate-limit.h \
3010         src/journal/journal-internal.h
3011
3012 libsystemd_journal_internal_la_CFLAGS = \
3013         $(AM_CFLAGS)
3014
3015 libsystemd_journal_internal_la_LIBADD = \
3016         libsystemd-label.la \
3017         libsystemd-audit.la \
3018         libsystemd-daemon.la \
3019         libudev.la \
3020         libsystemd-shared.la \
3021         libsystemd-label.la
3022
3023 nodist_libsystemd_journal_internal_la_SOURCES = \
3024         src/journal/journald-gperf.c
3025
3026 if ENABLE_LOGIND
3027 libsystemd_journal_internal_la_LIBADD += \
3028         libsystemd-login-internal.la
3029 endif
3030
3031 if HAVE_ACL
3032 libsystemd_journal_internal_la_LIBADD += \
3033         libsystemd-acl.la
3034 endif
3035
3036 if HAVE_XZ
3037 libsystemd_journal_la_SOURCES += \
3038         src/journal/compress.c
3039
3040 libsystemd_journal_la_CFLAGS += \
3041         $(XZ_CFLAGS)
3042
3043 libsystemd_journal_la_LIBADD += \
3044         $(XZ_LIBS)
3045
3046 libsystemd_journal_internal_la_CFLAGS += \
3047         $(XZ_CFLAGS)
3048
3049 libsystemd_journal_internal_la_LIBADD += \
3050         $(XZ_LIBS)
3051
3052 endif
3053
3054 if HAVE_GCRYPT
3055 libsystemd_journal_la_SOURCES += \
3056         src/journal/journal-authenticate.c \
3057         src/journal/journal-authenticate.h \
3058         src/journal/fsprg.c \
3059         src/journal/fsprg.h
3060
3061 libsystemd_journal_la_CFLAGS += \
3062         $(GCRYPT_CFLAGS) \
3063         -Wno-pointer-arith
3064
3065 libsystemd_journal_la_LIBADD += \
3066         $(GCRYPT_LIBS)
3067
3068 libsystemd_journal_internal_la_CFLAGS += \
3069         $(GCRYPT_CFLAGS) \
3070         -Wno-pointer-arith
3071
3072 libsystemd_journal_internal_la_LIBADD += \
3073         $(GCRYPT_LIBS)
3074 endif
3075
3076 # move lib from $(libdir) to $(rootlibdir) and update devel link, if
3077 # needed. Also, grant read access to new journal files to members of
3078 # "adm" and "wheel".
3079 libsystemd-journal-install-hook:
3080         libname=libsystemd-journal.so && $(move-to-rootlibdir)
3081         -$(MKDIR_P) $(DESTDIR)/var/log/journal
3082         -chown 0:0 $(DESTDIR)/var/log/journal
3083         -chmod 755 $(DESTDIR)/var/log/journal
3084         -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
3085         -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
3086
3087 libsystemd-journal-uninstall-hook:
3088         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
3089
3090 INSTALL_EXEC_HOOKS += libsystemd-journal-install-hook
3091 UNINSTALL_EXEC_HOOKS += libsystemd-journal-uninstall-hook
3092
3093 # ------------------------------------------------------------------------------
3094
3095 # Update catalog on installation. Do not bother if installing
3096 # in DESTDIR, since this is likely for packaging purposes.
3097 catalog-update-hook:
3098         -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
3099
3100 INSTALL_DATA_HOOKS += \
3101         catalog-update-hook
3102
3103 catalog-remove-hook:
3104         -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
3105
3106 UNINSTALL_DATA_HOOKS += \
3107         catalog-remove-hook
3108
3109 manual_tests += \
3110         test-journal-enum
3111
3112 tests += \
3113         test-journal \
3114         test-journal-send \
3115         test-journal-syslog \
3116         test-journal-match \
3117         test-journal-stream \
3118         test-journal-init \
3119         test-journal-verify \
3120         test-journal-interleaving \
3121         test-mmap-cache \
3122         test-catalog
3123
3124 pkginclude_HEADERS += \
3125         src/systemd/sd-journal.h \
3126         src/systemd/sd-messages.h
3127
3128 lib_LTLIBRARIES += \
3129         libsystemd-journal.la
3130
3131 noinst_LTLIBRARIES += \
3132         libsystemd-journal-internal.la
3133
3134 rootlibexec_PROGRAMS += \
3135         systemd-journald
3136
3137 rootbin_PROGRAMS += \
3138         journalctl
3139
3140 bin_PROGRAMS += \
3141         systemd-cat
3142
3143 dist_systemunit_DATA += \
3144         units/systemd-journald.socket
3145
3146 nodist_systemunit_DATA += \
3147         units/systemd-journald.service \
3148         units/systemd-journal-flush.service
3149
3150 dist_pkgsysconf_DATA += \
3151         src/journal/journald.conf
3152
3153 pkgconfiglib_DATA += \
3154         src/journal/libsystemd-journal.pc
3155
3156 dist_catalog_DATA = \
3157         catalog/systemd.catalog
3158
3159 SOCKETS_TARGET_WANTS += \
3160         systemd-journald.socket
3161 SYSINIT_TARGET_WANTS += \
3162         systemd-journald.service \
3163         systemd-journal-flush.service
3164
3165 EXTRA_DIST += \
3166         src/journal/libsystemd-journal.pc.in \
3167         src/journal/libsystemd-journal.sym \
3168         units/systemd-journald.service.in \
3169         units/systemd-journal-flush.service.in \
3170         src/journal/journald-gperf.gperf
3171
3172 CLEANFILES += \
3173         src/journal/journald-gperf.c
3174
3175 # ------------------------------------------------------------------------------
3176 if HAVE_MICROHTTPD
3177 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
3178
3179 rootlibexec_PROGRAMS += \
3180         systemd-journal-gatewayd
3181
3182 systemd_journal_gatewayd_SOURCES = \
3183         src/journal/journal-gatewayd.c \
3184         src/journal/microhttpd-util.h \
3185         src/journal/microhttpd-util.c
3186
3187 systemd_journal_gatewayd_LDADD = \
3188         libsystemd-shared.la \
3189         libsystemd-logs.la \
3190         libsystemd-journal-internal.la \
3191         libsystemd-id128-internal.la \
3192         libsystemd-daemon.la \
3193         libsystemd-bus.la \
3194         $(MICROHTTPD_LIBS)
3195
3196 systemd_journal_gatewayd_CFLAGS = \
3197         -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\" \
3198         $(AM_CFLAGS) \
3199         $(MICROHTTPD_CFLAGS)
3200
3201 dist_systemunit_DATA += \
3202         units/systemd-journal-gatewayd.socket
3203
3204 nodist_systemunit_DATA += \
3205         units/systemd-journal-gatewayd.service
3206
3207 dist_gatewayddocumentroot_DATA = \
3208         src/journal/browse.html
3209
3210 endif
3211
3212 EXTRA_DIST += \
3213         units/systemd-journal-gatewayd.service.in
3214
3215 # ------------------------------------------------------------------------------
3216 if ENABLE_COREDUMP
3217 systemd_coredump_SOURCES = \
3218         src/journal/coredump.c
3219
3220 systemd_coredump_LDADD = \
3221         libsystemd-journal-internal.la \
3222         libsystemd-label.la \
3223         libsystemd-shared.la
3224
3225 if ENABLE_LOGIND
3226 systemd_coredump_LDADD += \
3227         libsystemd-login-internal.la
3228 endif
3229
3230 rootlibexec_PROGRAMS += \
3231         systemd-coredump
3232
3233 systemd_coredumpctl_SOURCES = \
3234         src/journal/coredumpctl.c
3235
3236 systemd_coredumpctl_LDADD = \
3237         libsystemd-shared.la \
3238         libsystemd-journal.la \
3239         libsystemd-journal-internal.la \
3240         libsystemd-id128-internal.la
3241
3242 bin_PROGRAMS += \
3243         systemd-coredumpctl
3244
3245 dist_bashcompletion_DATA += \
3246         shell-completion/bash/systemd-coredumpctl
3247
3248 dist_zshcompletion_DATA += \
3249         shell-completion/zsh/_systemd-coredumpctl
3250
3251 sysctl_DATA = \
3252         sysctl.d/50-coredump.conf
3253
3254 CLEANFILES += \
3255         sysctl.d/50-coredump.conf
3256 endif
3257
3258 EXTRA_DIST += \
3259         sysctl.d/50-coredump.conf.in
3260
3261 # ------------------------------------------------------------------------------
3262 if ENABLE_BINFMT
3263 systemd_binfmt_SOURCES = \
3264         src/binfmt/binfmt.c
3265
3266 systemd_binfmt_LDADD = \
3267         libsystemd-shared.la
3268
3269 rootlibexec_PROGRAMS += \
3270         systemd-binfmt
3271
3272 dist_systemunit_DATA += \
3273         units/proc-sys-fs-binfmt_misc.automount \
3274         units/proc-sys-fs-binfmt_misc.mount
3275
3276 nodist_systemunit_DATA += \
3277         units/systemd-binfmt.service
3278
3279 INSTALL_DIRS += \
3280         $(prefix)/lib/binfmt.d \
3281         $(sysconfdir)/binfmt.d
3282
3283 SYSINIT_TARGET_WANTS += \
3284         systemd-binfmt.service \
3285         proc-sys-fs-binfmt_misc.automount
3286
3287 endif
3288
3289 EXTRA_DIST += \
3290         units/systemd-binfmt.service.in
3291
3292 # ------------------------------------------------------------------------------
3293 if ENABLE_VCONSOLE
3294 systemd_vconsole_setup_SOURCES = \
3295         src/vconsole/vconsole-setup.c
3296
3297 systemd_vconsole_setup_LDADD = \
3298         libsystemd-shared.la
3299
3300 rootlibexec_PROGRAMS += \
3301         systemd-vconsole-setup
3302
3303 nodist_systemunit_DATA += \
3304         units/systemd-vconsole-setup.service
3305
3306 SYSINIT_TARGET_WANTS += \
3307         systemd-vconsole-setup.service
3308 endif
3309
3310 EXTRA_DIST += \
3311         units/systemd-vconsole-setup.service.in
3312
3313 # ------------------------------------------------------------------------------
3314 if ENABLE_READAHEAD
3315 systemd_readahead_SOURCES = \
3316         src/readahead/readahead.c \
3317         src/readahead/readahead-collect.c \
3318         src/readahead/readahead-replay.c \
3319         src/readahead/readahead-analyze.c \
3320         src/readahead/readahead-common.c \
3321         src/readahead/readahead-common.h
3322
3323 systemd_readahead_LDADD = \
3324         libsystemd-shared.la \
3325         libsystemd-daemon.la \
3326         libudev.la
3327
3328 dist_doc_DATA += \
3329         src/readahead/sd-readahead.c \
3330         src/systemd/sd-readahead.h
3331
3332 rootlibexec_PROGRAMS += \
3333         systemd-readahead
3334
3335 dist_systemunit_DATA += \
3336         units/systemd-readahead-drop.service \
3337         units/systemd-readahead-done.timer
3338
3339 nodist_systemunit_DATA += \
3340         units/systemd-readahead-collect.service \
3341         units/systemd-readahead-replay.service \
3342         units/systemd-readahead-done.service
3343
3344 endif
3345
3346 EXTRA_DIST += \
3347         units/systemd-readahead-collect.service.in \
3348         units/systemd-readahead-replay.service.in \
3349         units/systemd-readahead-done.service.in
3350
3351 # ------------------------------------------------------------------------------
3352 if ENABLE_BOOTCHART
3353 systemd_bootchart_SOURCES = \
3354         src/bootchart/bootchart.c \
3355         src/bootchart/bootchart.h \
3356         src/bootchart/store.c \
3357         src/bootchart/store.h \
3358         src/bootchart/svg.c \
3359         src/bootchart/svg.h
3360
3361 systemd_bootchart_LDADD = \
3362         libsystemd-shared.la \
3363         libsystemd-journal.la
3364
3365 rootlibexec_PROGRAMS += \
3366         systemd-bootchart
3367
3368 dist_pkgsysconf_DATA += \
3369         src/bootchart/bootchart.conf
3370 endif
3371
3372 # ------------------------------------------------------------------------------
3373 if ENABLE_QUOTACHECK
3374 rootlibexec_PROGRAMS += \
3375         systemd-quotacheck
3376
3377 nodist_systemunit_DATA += \
3378         units/systemd-quotacheck.service
3379
3380 systemd_quotacheck_SOURCES = \
3381         src/quotacheck/quotacheck.c
3382
3383 systemd_quotacheck_LDADD = \
3384         libsystemd-shared.la
3385 endif
3386
3387 EXTRA_DIST += \
3388         units/systemd-quotacheck.service.in
3389
3390 nodist_systemunit_DATA += \
3391         units/quotaon.service
3392
3393 # ------------------------------------------------------------------------------
3394 if ENABLE_RANDOMSEED
3395 rootlibexec_PROGRAMS += \
3396         systemd-random-seed
3397
3398 nodist_systemunit_DATA += \
3399         units/systemd-random-seed.service
3400
3401 systemd_random_seed_SOURCES = \
3402         src/random-seed/random-seed.c
3403
3404 systemd_random_seed_LDADD = \
3405         libsystemd-label.la \
3406         libsystemd-shared.la
3407
3408 SYSINIT_TARGET_WANTS += \
3409         systemd-random-seed.service
3410
3411 endif
3412
3413 EXTRA_DIST += \
3414         units/systemd-random-seed.service.in
3415
3416 # ------------------------------------------------------------------------------
3417 if ENABLE_BACKLIGHT
3418 rootlibexec_PROGRAMS += \
3419         systemd-backlight
3420
3421 nodist_systemunit_DATA += \
3422         units/systemd-backlight@.service
3423
3424 systemd_backlight_SOURCES = \
3425         src/backlight/backlight.c
3426
3427 systemd_backlight_LDADD = \
3428         libsystemd-label.la \
3429         libsystemd-shared.la \
3430         libudev-private.la
3431 endif
3432
3433 EXTRA_DIST += \
3434         units/systemd-backlight@.service.in
3435
3436 # ------------------------------------------------------------------------------
3437 if HAVE_LIBCRYPTSETUP
3438 rootlibexec_PROGRAMS += \
3439         systemd-cryptsetup
3440
3441 systemgenerator_PROGRAMS += \
3442         systemd-cryptsetup-generator
3443
3444 dist_systemunit_DATA += \
3445         units/cryptsetup.target
3446
3447 systemd_cryptsetup_SOURCES = \
3448         src/cryptsetup/cryptsetup.c
3449
3450 systemd_cryptsetup_CFLAGS = \
3451         $(AM_CFLAGS) \
3452         $(LIBCRYPTSETUP_CFLAGS)
3453
3454 systemd_cryptsetup_LDADD = \
3455         libsystemd-label.la \
3456         libsystemd-shared.la \
3457         libudev.la \
3458         $(LIBCRYPTSETUP_LIBS)
3459
3460 systemd_cryptsetup_generator_SOURCES = \
3461         src/cryptsetup/cryptsetup-generator.c
3462
3463 systemd_cryptsetup_generator_LDADD = \
3464         libsystemd-label.la \
3465         libsystemd-shared.la
3466
3467 SYSINIT_TARGET_WANTS += \
3468         cryptsetup.target
3469
3470 endif
3471
3472 # ------------------------------------------------------------------------------
3473 if ENABLE_HOSTNAMED
3474 systemd_hostnamed_SOURCES = \
3475         src/hostname/hostnamed.c
3476
3477 systemd_hostnamed_CFLAGS = \
3478         $(AM_CFLAGS) \
3479         $(DBUS_CFLAGS)
3480
3481 systemd_hostnamed_LDADD = \
3482         libsystemd-label.la \
3483         libsystemd-shared.la \
3484         libsystemd-daemon.la \
3485         libsystemd-dbus.la
3486
3487 rootlibexec_PROGRAMS += \
3488         systemd-hostnamed
3489
3490 nodist_systemunit_DATA += \
3491         units/systemd-hostnamed.service
3492
3493 dist_dbuspolicy_DATA += \
3494         src/hostname/org.freedesktop.hostname1.conf
3495
3496 dist_dbussystemservice_DATA += \
3497         src/hostname/org.freedesktop.hostname1.service
3498
3499 polkitpolicy_files += \
3500         src/hostname/org.freedesktop.hostname1.policy
3501
3502 dbusinterface_DATA += \
3503         org.freedesktop.hostname1.xml
3504
3505 org.freedesktop.hostname1.xml: systemd-hostnamed
3506         $(AM_V_GEN)$(LIBTOOL) --mode=execute $(OBJCOPY) -O binary -j introspect.hostname1 $< $@.tmp && \
3507                 $(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
3508                 $(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
3509
3510 SYSTEM_UNIT_ALIASES += \
3511         systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
3512
3513 hostnamectl_SOURCES = \
3514         src/hostname/hostnamectl.c
3515
3516 hostnamectl_CFLAGS = \
3517         $(AM_CFLAGS) \
3518         $(DBUS_CFLAGS)
3519
3520 hostnamectl_LDADD = \
3521         libsystemd-shared.la \
3522         libsystemd-dbus.la \
3523         libsystemd-id128-internal.la
3524
3525 bin_PROGRAMS += \
3526         hostnamectl
3527
3528 dist_bashcompletion_DATA += \
3529         shell-completion/bash/hostnamectl
3530
3531 dist_zshcompletion_DATA += \
3532         shell-completion/zsh/_hostnamectl
3533
3534 endif
3535
3536 polkitpolicy_in_files += \
3537         src/hostname/org.freedesktop.hostname1.policy.in
3538
3539 EXTRA_DIST += \
3540         units/systemd-hostnamed.service.in
3541
3542 # ------------------------------------------------------------------------------
3543 if ENABLE_LOCALED
3544 systemd_localed_SOURCES = \
3545         src/locale/localed.c
3546
3547 systemd_localed_CFLAGS = \
3548         $(AM_CFLAGS) \
3549         $(DBUS_CFLAGS)
3550
3551 systemd_localed_LDADD = \
3552         libsystemd-label.la \
3553         libsystemd-shared.la \
3554         libsystemd-daemon.la \
3555         libsystemd-dbus.la
3556
3557 nodist_systemunit_DATA += \
3558         units/systemd-localed.service
3559
3560 rootlibexec_PROGRAMS += \
3561         systemd-localed
3562
3563 dist_dbuspolicy_DATA += \
3564         src/locale/org.freedesktop.locale1.conf
3565
3566 dist_dbussystemservice_DATA += \
3567         src/locale/org.freedesktop.locale1.service
3568
3569 polkitpolicy_files += \
3570         src/locale/org.freedesktop.locale1.policy
3571
3572 dbusinterface_DATA += \
3573         org.freedesktop.locale1.xml
3574
3575 org.freedesktop.locale1.xml: systemd-localed
3576         $(AM_V_GEN)$(LIBTOOL) --mode=execute $(OBJCOPY) -O binary -j introspect.locale1 $< $@.tmp && \
3577                 $(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
3578                 $(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
3579
3580 SYSTEM_UNIT_ALIASES += \
3581         systemd-localed.service dbus-org.freedesktop.locale1.service
3582
3583 dist_pkgdata_DATA += \
3584         src/locale/kbd-model-map
3585
3586 dist_noinst_SCRIPT = \
3587         src/locale/generate-kbd-model-map
3588
3589 update-kbd-model-map: src/locale/generate-kbd-model-map
3590         $PYTHON $< > src/locale/kbd-model-map
3591
3592 localectl_SOURCES = \
3593         src/locale/localectl.c
3594
3595 localectl_CFLAGS = \
3596         $(AM_CFLAGS) \
3597         $(DBUS_CFLAGS)
3598
3599 localectl_LDADD = \
3600         libsystemd-shared.la \
3601         libsystemd-dbus.la \
3602         libsystemd-id128-internal.la
3603
3604 bin_PROGRAMS += \
3605         localectl
3606
3607 dist_bashcompletion_DATA += \
3608         shell-completion/bash/localectl
3609
3610 dist_zshcompletion_DATA += \
3611         shell-completion/zsh/_localectl
3612
3613 endif
3614
3615 polkitpolicy_in_files += \
3616         src/locale/org.freedesktop.locale1.policy.in
3617
3618 EXTRA_DIST += \
3619         units/systemd-localed.service.in
3620
3621 # ------------------------------------------------------------------------------
3622 if ENABLE_TIMEDATED
3623 systemd_timedated_SOURCES = \
3624         src/timedate/timedated.c
3625
3626 systemd_timedated_CFLAGS = \
3627         $(AM_CFLAGS) \
3628         $(DBUS_CFLAGS)
3629
3630 systemd_timedated_LDADD = \
3631         libsystemd-label.la \
3632         libsystemd-shared.la \
3633         libsystemd-daemon.la \
3634         libsystemd-dbus.la
3635
3636 rootlibexec_PROGRAMS += \
3637         systemd-timedated
3638
3639 dist_dbussystemservice_DATA += \
3640         src/timedate/org.freedesktop.timedate1.service
3641
3642 dist_dbuspolicy_DATA += \
3643         src/timedate/org.freedesktop.timedate1.conf
3644
3645 nodist_systemunit_DATA += \
3646         units/systemd-timedated.service
3647
3648 polkitpolicy_files += \
3649         src/timedate/org.freedesktop.timedate1.policy
3650
3651 org.freedesktop.timedate1.xml: systemd-timedated
3652         $(AM_V_GEN)$(LIBTOOL) --mode=execute $(OBJCOPY) -O binary -j introspect.timedate1 $< $@.tmp && \
3653                 $(STRINGS) $@.tmp | $(AWK) -f $(srcdir)/introspect.awk | \
3654                 $(DBUS_PREPROCESS) -o $@ - && rm $@.tmp
3655
3656 dbusinterface_DATA += \
3657         org.freedesktop.timedate1.xml
3658
3659 INSTALL_DIRS += \
3660         $(prefix)/lib/systemd/ntp-units.d \
3661         $(sysconfdir)/systemd/ntp-units.d
3662
3663 SYSTEM_UNIT_ALIASES += \
3664         systemd-timedated.service dbus-org.freedesktop.timedate1.service
3665
3666 timedatectl_SOURCES = \
3667         src/timedate/timedatectl.c
3668
3669 timedatectl_CFLAGS = \
3670         $(AM_CFLAGS) \
3671         $(DBUS_CFLAGS)
3672
3673 timedatectl_LDADD = \
3674         libsystemd-shared.la \
3675         libsystemd-dbus.la
3676
3677 bin_PROGRAMS += \
3678         timedatectl
3679
3680 dist_bashcompletion_DATA += \
3681         shell-completion/bash/timedatectl
3682
3683 dist_zshcompletion_DATA += \
3684         shell-completion/zsh/_timedatectl
3685 endif
3686
3687 polkitpolicy_in_files += \
3688         src/timedate/org.freedesktop.timedate1.policy.in
3689
3690 EXTRA_DIST += \
3691         units/systemd-timedated.service.in
3692
3693 # ------------------------------------------------------------------------------
3694 if HAVE_MYHOSTNAME
3695 libnss_myhostname_la_SOURCES = \
3696         src/nss-myhostname/nss-myhostname.c \
3697         src/nss-myhostname/ifconf.h \
3698         src/nss-myhostname/netlink.c
3699
3700 libnss_myhostname_la_CFLAGS = \
3701         $(AM_CFLAGS)
3702
3703 libnss_myhostname_la_LDFLAGS = \
3704         $(AM_LDFLAGS) \
3705         -module \
3706         -export-dynamic \
3707         -avoid-version \
3708         -shared \
3709         -shrext .so.2
3710
3711 lib_LTLIBRARIES += \
3712         libnss_myhostname.la
3713 endif
3714
3715 # ------------------------------------------------------------------------------
3716 if ENABLE_MACHINED
3717 systemd_machined_SOURCES = \
3718         src/machine/machined.c \
3719         src/machine/machined.h
3720
3721 systemd_machined_CFLAGS = \
3722         $(libsystemd_machine_core_la_CFLAGS)
3723
3724 systemd_machined_LDADD = \
3725         libsystemd-machine-core.la \
3726         $(libsystemd_machine_core_la_LIBADD)
3727
3728 rootlibexec_PROGRAMS += \
3729         systemd-machined
3730
3731 libsystemd_machine_core_la_SOURCES = \
3732         src/machine/machined-dbus.c \
3733         src/machine/machine.c \
3734         src/machine/machine.h \
3735         src/machine/machine-dbus.c
3736
3737 libsystemd_machine_core_la_CFLAGS = \
3738         $(AM_CFLAGS) \
3739         $(DBUS_CFLAGS)
3740
3741 libsystemd_machine_core_la_LIBADD = \
3742         libsystemd-label.la \
3743         libsystemd-audit.la \
3744         libsystemd-shared.la \
3745         libsystemd-daemon.la \
3746         libsystemd-dbus.la \
3747         libsystemd-id128-internal.la \
3748         libudev.la
3749
3750 noinst_LTLIBRARIES += \
3751         libsystemd-machine-core.la
3752
3753 machinectl_SOURCES = \
3754         src/machine/machinectl.c
3755
3756 machinectl_CFLAGS = \
3757         $(AM_CFLAGS) \
3758         $(DBUS_CFLAGS)
3759
3760 machinectl_LDADD = \
3761         libsystemd-shared.la \
3762         libsystemd-dbus.la \
3763         libudev.la
3764
3765 rootbin_PROGRAMS += \
3766         machinectl
3767
3768 test_machine_tables_SOURCES = \
3769         src/machine/test-machine-tables.c
3770
3771 test_machine_tables_CFLAGS = \
3772         $(AM_CFLAGS) \
3773         $(DBUS_CFLAGS)
3774
3775 test_machine_tables_LDADD = \
3776         libsystemd-machine-core.la
3777
3778 tests += \
3779         test-machine-tables
3780
3781 nodist_systemunit_DATA += \
3782         units/systemd-machined.service
3783
3784 dist_systemunit_DATA += \
3785         units/machine.slice
3786
3787 dist_dbussystemservice_DATA += \
3788         src/machine/org.freedesktop.machine1.service
3789
3790 dist_dbuspolicy_DATA += \
3791         src/machine/org.freedesktop.machine1.conf
3792
3793 dist_zshcompletion_DATA += \
3794         shell-completion/zsh/_machinectl
3795
3796 SYSTEM_UNIT_ALIASES += \
3797         systemd-machined.service dbus-org.freedesktop.machine1.service
3798
3799 EXTRA_DIST += \
3800         units/systemd-machined.service.in
3801
3802 endif
3803
3804 # ------------------------------------------------------------------------------
3805 if ENABLE_LOGIND
3806 systemd_logind_SOURCES = \
3807         src/login/logind.c \
3808         src/login/logind.h
3809
3810 nodist_systemd_logind_SOURCES = \
3811         src/login/logind-gperf.c
3812
3813 systemd_logind_CFLAGS = \
3814         $(libsystemd_logind_core_la_CFLAGS)
3815
3816 systemd_logind_LDADD = \
3817         libsystemd-logind-core.la \
3818         $(libsystemd_logind_core_la_LIBADD)
3819
3820 libsystemd_logind_core_la_SOURCES = \
3821         src/login/logind-core.c \
3822         src/login/logind-dbus.c \
3823         src/login/logind-device.c \
3824         src/login/logind-device.h \
3825         src/login/logind-button.c \
3826         src/login/logind-button.h \
3827         src/login/logind-action.c \
3828         src/login/logind-action.h \
3829         src/login/logind-seat.c \
3830         src/login/logind-seat.h \
3831         src/login/logind-session.c \
3832         src/login/logind-session.h \
3833         src/login/logind-session-device.c \
3834         src/login/logind-session-device.h \
3835         src/login/logind-user.c \
3836         src/login/logind-user.h \
3837         src/login/logind-inhibit.c \
3838         src/login/logind-inhibit.h \
3839         src/login/logind-session-dbus.c \
3840         src/login/logind-seat-dbus.c \
3841         src/login/logind-user-dbus.c \
3842         src/login/logind-acl.h \
3843         src/login/login-shared.c \
3844         src/login/login-shared.h
3845
3846 libsystemd_logind_core_la_CFLAGS = \
3847         $(AM_CFLAGS) \
3848         $(DBUS_CFLAGS)
3849
3850 libsystemd_logind_core_la_LIBADD = \
3851         libsystemd-label.la \
3852         libsystemd-audit.la \
3853         libsystemd-shared.la \
3854         libsystemd-daemon.la \
3855         libsystemd-dbus.la \
3856         libsystemd-id128-internal.la \
3857         libudev.la
3858
3859 if HAVE_ACL
3860 libsystemd_logind_core_la_SOURCES += \
3861         src/login/logind-acl.c
3862
3863 libsystemd_logind_core_la_LIBADD += \
3864         libsystemd-acl.la
3865 endif
3866
3867 noinst_LTLIBRARIES += \
3868         libsystemd-logind-core.la
3869
3870 systemd_user_sessions_SOURCES = \
3871         src/login/user-sessions.c
3872
3873 systemd_user_sessions_LDADD = \
3874         libsystemd-shared.la
3875
3876 rootlibexec_PROGRAMS += \
3877         systemd-logind \
3878         systemd-user-sessions
3879
3880 loginctl_SOURCES = \
3881         src/login/loginctl.c \
3882         src/login/sysfs-show.c
3883
3884 loginctl_CFLAGS = \
3885         $(AM_CFLAGS) \
3886         $(DBUS_CFLAGS)
3887
3888 loginctl_LDADD = \
3889         libsystemd-shared.la \
3890         libsystemd-dbus.la \
3891         libudev.la
3892
3893 rootbin_PROGRAMS += \
3894         loginctl
3895
3896 dist_bashcompletion_DATA += \
3897         shell-completion/bash/loginctl
3898
3899 dist_zshcompletion_DATA += \
3900         shell-completion/zsh/_loginctl \
3901         shell-completion/zsh/_systemd-inhibit
3902
3903 systemd_inhibit_SOURCES = \
3904         src/login/inhibit.c
3905
3906 systemd_inhibit_CFLAGS = \
3907         $(AM_CFLAGS) \
3908         $(DBUS_CFLAGS)
3909
3910 systemd_inhibit_LDADD = \
3911         libsystemd-shared.la \
3912         libsystemd-dbus.la
3913
3914 rootbin_PROGRAMS += \
3915         systemd-inhibit
3916
3917 test_login_SOURCES = \
3918         src/login/test-login.c
3919
3920 test_login_LDADD = \
3921         libsystemd-login-internal.la \
3922         libsystemd-shared.la
3923
3924 test_login_shared_SOURCES = \
3925         src/login/test-login-shared.c
3926
3927 test_login_shared_LDADD = \
3928         libsystemd-login-internal.la \
3929         libsystemd-shared.la
3930
3931 test_inhibit_SOURCES = \
3932         src/login/test-inhibit.c
3933
3934 test_inhibit_LDADD = \
3935         libsystemd-shared.la \
3936         libsystemd-dbus.la
3937
3938 test_inhibit_CFLAGS = \
3939         $(AM_CFLAGS) \
3940         $(DBUS_CFLAGS)
3941
3942 test_login_tables_SOURCES = \
3943         src/login/test-login-tables.c
3944
3945 test_login_tables_CFLAGS = \
3946         $(AM_CFLAGS) \
3947         $(DBUS_CFLAGS)
3948
3949 test_login_tables_LDADD = \
3950         libsystemd-logind-core.la
3951
3952 manual_tests += \
3953         test-login \
3954         test-inhibit
3955
3956 tests += \
3957         test-login-tables \
3958         test-login-shared
3959
3960 libsystemd_login_la_SOURCES = \
3961         src/login/sd-login.c \
3962         src/systemd/sd-login.h \
3963         src/login/login-shared.c \
3964         src/login/login-shared.h
3965
3966 libsystemd_login_la_CFLAGS = \
3967         $(AM_CFLAGS) \
3968         -fvisibility=hidden
3969
3970 libsystemd_login_la_LDFLAGS = \
3971         $(AM_LDFLAGS) \
3972         -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
3973         -Wl,--version-script=$(top_srcdir)/src/login/libsystemd-login.sym
3974
3975 libsystemd_login_la_LIBADD = \
3976         libsystemd-shared.la \
3977         libsystemd-daemon-internal.la \
3978         $(RT_LIBS)
3979
3980 libsystemd_login_internal_la_SOURCES = \
3981         $(libsystemd_login_la_SOURCES)
3982
3983 if HAVE_PAM
3984 pam_systemd_la_SOURCES = \
3985         src/login/pam-module.c
3986
3987 pam_systemd_la_CFLAGS = \
3988         $(AM_CFLAGS) \
3989         $(PAM_CFLAGS) \
3990         $(DBUS_CFLAGS) \
3991         -fvisibility=hidden
3992
3993 pam_systemd_la_LDFLAGS = \
3994         $(AM_LDFLAGS) \
3995         -module \
3996         -export-dynamic \
3997         -avoid-version \
3998         -shared \
3999         -export-symbols-regex '^pam_sm_.*'
4000
4001 pam_systemd_la_LIBADD = \
4002         libsystemd-audit.la \
4003         libsystemd-dbus.la \
4004         libsystemd-shared.la \
4005         libsystemd-daemon-internal.la \
4006         $(RT_LIBS) \
4007         $(PAM_LIBS)
4008
4009 pamlib_LTLIBRARIES = \
4010         pam_systemd.la
4011
4012 dist_pamconf_DATA = \
4013         src/login/systemd-user
4014 endif
4015
4016 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
4017 libsystemd-login-install-hook:
4018         libname=libsystemd-login.so && $(move-to-rootlibdir)
4019
4020 libsystemd-login-uninstall-hook:
4021         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
4022
4023 INSTALL_EXEC_HOOKS += libsystemd-login-install-hook
4024 UNINSTALL_EXEC_HOOKS += libsystemd-login-uninstall-hook
4025
4026 nodist_systemunit_DATA += \
4027         units/systemd-logind.service \
4028         units/systemd-user-sessions.service
4029
4030 dist_systemunit_DATA += \
4031         units/user.slice
4032
4033 dist_dbussystemservice_DATA += \
4034         src/login/org.freedesktop.login1.service
4035
4036 dist_dbuspolicy_DATA += \
4037         src/login/org.freedesktop.login1.conf
4038
4039 dist_pkgsysconf_DATA += \
4040         src/login/logind.conf
4041
4042 pkginclude_HEADERS += \
4043         src/systemd/sd-login.h
4044
4045 lib_LTLIBRARIES += \
4046         libsystemd-login.la
4047
4048 noinst_LTLIBRARIES += \
4049         libsystemd-login-internal.la
4050
4051 pkgconfiglib_DATA += \
4052         src/login/libsystemd-login.pc
4053
4054 polkitpolicy_files += \
4055         src/login/org.freedesktop.login1.policy
4056
4057 INSTALL_DIRS += \
4058         $(systemdstatedir)
4059
4060 MULTI_USER_TARGET_WANTS += \
4061         systemd-logind.service \
4062         systemd-user-sessions.service
4063
4064 SYSTEM_UNIT_ALIASES += \
4065         systemd-logind.service dbus-org.freedesktop.login1.service
4066
4067 systemd_multi_seat_x_SOURCES = \
4068         src/login/multi-seat-x.c
4069
4070 systemd_multi_seat_x_LDADD = \
4071         libsystemd-label.la \
4072         libsystemd-shared.la
4073
4074 rootlibexec_PROGRAMS += \
4075         systemd-multi-seat-x
4076
4077 dist_udevrules_DATA += \
4078         src/login/70-uaccess.rules \
4079         src/login/70-power-switch.rules
4080
4081 nodist_udevrules_DATA += \
4082         src/login/71-seat.rules \
4083         src/login/73-seat-late.rules
4084
4085 CLEANFILES += \
4086         src/login/logind-gperf.c \
4087         src/login/71-seat.rules \
4088         src/login/73-seat-late.rules
4089 endif
4090
4091 polkitpolicy_in_files += \
4092         src/login/org.freedesktop.login1.policy.in
4093
4094 EXTRA_DIST += \
4095         src/login/logind-gperf.gperf \
4096         src/login/libsystemd-login.pc.in \
4097         src/login/libsystemd-login.sym \
4098         src/login/71-seat.rules.in \
4099         src/login/73-seat-late.rules.in \
4100         units/systemd-logind.service.in \
4101         units/systemd-user-sessions.service.in
4102
4103 # ------------------------------------------------------------------------------
4104 if HAVE_PYTHON_DEVEL
4105 pkgpyexec_LTLIBRARIES = \
4106         _journal.la \
4107         id128.la \
4108         _daemon.la \
4109         _reader.la \
4110         login.la
4111
4112 _journal_la_SOURCES = \
4113         src/python-systemd/_journal.c
4114
4115 _journal_la_CFLAGS = \
4116         $(AM_CFLAGS) \
4117         -fvisibility=default \
4118         $(PYTHON_DEVEL_CFLAGS)
4119
4120 _journal_la_LDFLAGS = \
4121         $(AM_LDFLAGS) \
4122         -shared \
4123         -module \
4124         -avoid-version
4125
4126 _journal_la_LIBADD = \
4127         $(PYTHON_DEVEL_LIBS) \
4128         libsystemd-journal.la
4129
4130 id128_la_SOURCES = \
4131         src/python-systemd/id128.c \
4132         src/python-systemd/id128-constants.h \
4133         src/python-systemd/pyutil.c \
4134         src/python-systemd/pyutil.h
4135
4136 id128_la_CFLAGS = \
4137         $(AM_CFLAGS) \
4138         -fvisibility=default \
4139         $(PYTHON_DEVEL_CFLAGS) \
4140         -I$(top_builddir)/src/python-systemd
4141
4142 id128_la_LDFLAGS = \
4143         $(AM_LDFLAGS) \
4144         -shared \
4145         -module \
4146         -avoid-version
4147
4148 id128_la_LIBADD = \
4149         $(PYTHON_DEVEL_LIBS) \
4150         libsystemd-id128.la
4151
4152 _daemon_la_SOURCES = \
4153         src/python-systemd/_daemon.c \
4154         src/python-systemd/pyutil.c \
4155         src/python-systemd/pyutil.h
4156
4157 _daemon_la_CFLAGS = \
4158         $(AM_CFLAGS) \
4159         -fvisibility=default \
4160         $(PYTHON_DEVEL_CFLAGS) \
4161         -I$(top_builddir)/src/python-systemd
4162
4163 _daemon_la_LDFLAGS = \
4164         $(AM_LDFLAGS) \
4165         -shared \
4166         -module \
4167         -avoid-version
4168
4169 _daemon_la_LIBADD = \
4170         $(PYTHON_DEVEL_LIBS) \
4171         libsystemd-daemon.la
4172
4173 _reader_la_SOURCES = \
4174         src/python-systemd/_reader.c \
4175         src/python-systemd/pyutil.c \
4176         src/python-systemd/pyutil.h
4177
4178 _reader_la_CFLAGS = \
4179         $(AM_CFLAGS) \
4180         -fvisibility=default \
4181         $(PYTHON_DEVEL_CFLAGS)
4182
4183 _reader_la_LDFLAGS = \
4184         $(AM_LDFLAGS) \
4185         -shared \
4186         -module \
4187         -avoid-version
4188
4189 _reader_la_LIBADD = \
4190         $(PYTHON_DEVEL_LIBS) \
4191         libsystemd-journal.la \
4192         libsystemd-id128.la \
4193         libsystemd-shared.la \
4194         libsystemd-daemon-internal.la \
4195         $(RT_LIBS)
4196
4197 login_la_SOURCES = \
4198         src/python-systemd/login.c \
4199         src/python-systemd/pyutil.c \
4200         src/python-systemd/pyutil.h
4201
4202 login_la_CFLAGS = \
4203         $(AM_CFLAGS) \
4204         -fvisibility=default \
4205         $(PYTHON_DEVEL_CFLAGS)
4206
4207 login_la_LDFLAGS = \
4208         $(AM_LDFLAGS) \
4209         -shared \
4210         -module \
4211         -avoid-version
4212
4213 login_la_LIBADD = \
4214         $(PYTHON_DEVEL_LIBS) \
4215         libsystemd-journal.la \
4216         libsystemd-login.la \
4217         libsystemd-shared.la \
4218         libsystemd-daemon-internal.la \
4219         $(RT_LIBS)
4220
4221 dist_pkgpyexec_PYTHON = \
4222         src/python-systemd/journal.py \
4223         src/python-systemd/daemon.py \
4224         src/python-systemd/__init__.py
4225
4226 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h Makefile
4227         $(AM_V_at)$(MKDIR_P) $(dir $@)
4228         $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
4229
4230 BUILT_SOURCES += \
4231         src/python-systemd/id128-constants.h
4232
4233 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
4234 sphinx-%:
4235         $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
4236         $(AM_V_GEN)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(SPHINX_BUILD) -b $* $(SPHINXOPTS) $(top_srcdir)/src/python-systemd/docs $(top_builddir)/docs/html/python-systemd/
4237         $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
4238
4239 python-shell:
4240         $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
4241         $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
4242
4243 destdir-sphinx: all
4244         dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
4245                 $(MAKE) DESTDIR="$$dir" install && \
4246                 $(MAKE) DESTDIR="$$dir" sphinx-html && \
4247                 rm -rf "$$dir"
4248
4249 endif
4250
4251 CLEAN_LOCAL_HOOKS += clean-sphinx
4252
4253 clean-sphinx:
4254         -rm -rf docs/html/python-systemd/
4255
4256 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
4257 clean-python:
4258         -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
4259         -rm -f _daemon.la id128.la _journal.la login.la _reader.la
4260
4261 # ------------------------------------------------------------------------------
4262 substitutions = \
4263        '|rootlibexecdir=$(rootlibexecdir)|' \
4264        '|rootbindir=$(rootbindir)|' \
4265        '|bindir=$(bindir)|' \
4266        '|SYSTEMCTL=$(rootbindir)/systemctl|' \
4267        '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
4268        '|pkgsysconfdir=$(pkgsysconfdir)|' \
4269        '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
4270        '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
4271        '|pkgdatadir=$(pkgdatadir)|' \
4272        '|systemunitdir=$(systemunitdir)|' \
4273        '|userunitdir=$(userunitdir)|' \
4274        '|systempresetdir=$(systempresetdir)|' \
4275        '|userpresetdir=$(userpresetdir)|' \
4276        '|udevhwdbdir=$(udevhwdbdir)|' \
4277        '|udevrulesdir=$(udevrulesdir)|' \
4278        '|catalogdir=$(catalogdir)|' \
4279        '|tmpfilesdir=$(tmpfilesdir)|' \
4280        '|sysctldir=$(sysctldir)|' \
4281        '|systemgeneratordir=$(systemgeneratordir)|' \
4282        '|usergeneratordir=$(usergeneratordir)|' \
4283        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
4284        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
4285        '|PACKAGE_URL=$(PACKAGE_URL)|' \
4286        '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
4287        '|prefix=$(prefix)|' \
4288        '|exec_prefix=$(exec_prefix)|' \
4289        '|libdir=$(libdir)|' \
4290        '|includedir=$(includedir)|' \
4291        '|VERSION=$(VERSION)|' \
4292        '|rootprefix=$(rootprefix)|' \
4293        '|udevlibexecdir=$(udevlibexecdir)|' \
4294        '|SUSHELL=$(SUSHELL)|' \
4295        '|DEBUGTTY=$(DEBUGTTY)|' \
4296        '|KILL=$(KILL)|' \
4297        '|KMOD=$(KMOD)|' \
4298        '|MKDIR_P=$(MKDIR_P)|' \
4299        '|QUOTAON=$(QUOTAON)|' \
4300        '|QUOTACHECK=$(QUOTACHECK)|' \
4301        '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
4302        '|VARLOGDIR=$(varlogdir)|' \
4303        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
4304        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
4305        '|PYTHON=$(PYTHON)|' \
4306        '|PYTHON_BINARY=$(PYTHON_BINARY)|'
4307
4308 SED_PROCESS = \
4309         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
4310         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
4311                 < $< > $@
4312
4313 units/%: units/%.in Makefile
4314         $(SED_PROCESS)
4315
4316 man/%: man/%.in Makefile
4317         $(SED_PROCESS)
4318
4319 sysctl.d/%: sysctl.d/%.in Makefile
4320         $(SED_PROCESS)
4321
4322 %.pc: %.pc.in Makefile
4323         $(SED_PROCESS)
4324
4325 src/core/macros.%: src/core/macros.%.in Makefile
4326         $(SED_PROCESS)
4327
4328 src/%.policy.in: src/%.policy.in.in Makefile
4329         $(SED_PROCESS)
4330
4331 %.rules: %.rules.in Makefile
4332         $(SED_PROCESS)
4333
4334 %.sh: %.sh.in Makefile
4335         $(SED_PROCESS)
4336         $(AM_V_GEN)chmod +x $@
4337
4338 src/%.c: src/%.gperf
4339         $(AM_V_at)$(MKDIR_P) $(dir $@)
4340         $(AM_V_GPERF)$(GPERF) < $< > $@
4341
4342 src/%: src/%.m4
4343         $(AM_V_at)$(MKDIR_P) $(dir $@)
4344         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
4345
4346 units/%: units/%.m4 Makefile
4347         $(AM_V_M4)$(MKDIR_P) $(dir $@)
4348         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
4349
4350 units/user/%: units/%.m4 Makefile
4351         $(AM_V_M4)$(MKDIR_P) $(dir $@)
4352         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
4353
4354 if ENABLE_POLKIT
4355 nodist_polkitpolicy_DATA = \
4356         $(polkitpolicy_files) \
4357         $(polkitpolicy_in_in_files:.policy.in.in=.policy)
4358 endif
4359
4360 EXTRA_DIST += \
4361         $(polkitpolicy_in_files) \
4362         $(polkitpolicy_in_in_files)
4363
4364 CLEANFILES += \
4365         $(nodist_systemunit_DATA) \
4366         $(nodist_userunit_DATA) \
4367         $(pkgconfigdata_DATA) \
4368         $(pkgconfiglib_DATA) \
4369         $(nodist_polkitpolicy_DATA)
4370
4371 # ------------------------------------------------------------------------------
4372 if ENABLE_MANPAGES
4373 man/custom-entities.ent: Makefile
4374         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
4375         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
4376          echo '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">,$(substitutions))))') \
4377          > $@ # '
4378
4379 DISTCLEANFILES += \
4380         man/custom-entities.ent
4381
4382 XSLTPROC_FLAGS = \
4383         --nonet \
4384         --stringparam man.output.quietly 1 \
4385         --stringparam funcsynopsis.style ansi \
4386         --stringparam man.authors.section.enabled 0 \
4387         --stringparam man.copyright.section.enabled 0 \
4388         --stringparam systemd.version $(VERSION) \
4389         --path '$(builddir)/man:$(srcdir)/man'
4390
4391 XSLTPROC_PROCESS_MAN = \
4392         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
4393
4394 XSLTPROC_PROCESS_HTML = \
4395         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
4396
4397 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
4398         $(XSLTPROC_PROCESS_MAN)
4399
4400 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
4401         $(XSLTPROC_PROCESS_MAN)
4402
4403 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
4404         $(XSLTPROC_PROCESS_MAN)
4405
4406 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
4407         $(XSLTPROC_PROCESS_MAN)
4408
4409 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
4410         $(XSLTPROC_PROCESS_MAN)
4411
4412 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
4413         $(XSLTPROC_PROCESS_HTML)
4414
4415 define html-alias
4416         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
4417 endef
4418
4419 endif
4420
4421 EXTRA_DIST += \
4422         man/custom-html.xsl \
4423         man/custom-man.xsl
4424
4425 # ------------------------------------------------------------------------------
4426 DBUS_PREPROCESS = $(CPP) -P $(CFLAGS) $(DBUS_CFLAGS) -imacros dbus/dbus-protocol.h
4427
4428 CLEANFILES += \
4429         $(dbusinterface_DATA)
4430
4431 if HAVE_SYSV_COMPAT
4432 sysvinit_DATA = \
4433         docs/sysvinit/README
4434
4435 varlog_DATA = \
4436         docs/var-log/README
4437
4438 docs/sysvinit/README: docs/sysvinit/README.in
4439         $(SED_PROCESS)
4440
4441 docs/var-log/README: docs/var-log/README.in
4442         $(SED_PROCESS)
4443
4444 CLEANFILES += \
4445         docs/sysvinit/README \
4446         docs/var-log/README
4447 endif
4448
4449 EXTRA_DIST += \
4450         docs/sysvinit/README.in \
4451         docs/var-log/README.in
4452
4453 SOCKETS_TARGET_WANTS += \
4454         systemd-initctl.socket \
4455         systemd-shutdownd.socket
4456
4457 if HAVE_SYSV_COMPAT
4458 RUNLEVEL1_TARGET_WANTS += \
4459         systemd-update-utmp-runlevel.service
4460 RUNLEVEL2_TARGET_WANTS += \
4461         systemd-update-utmp-runlevel.service
4462 RUNLEVEL3_TARGET_WANTS += \
4463         systemd-update-utmp-runlevel.service
4464 RUNLEVEL4_TARGET_WANTS += \
4465         systemd-update-utmp-runlevel.service
4466 RUNLEVEL5_TARGET_WANTS += \
4467         systemd-update-utmp-runlevel.service
4468 endif
4469 SYSINIT_TARGET_WANTS += \
4470         systemd-update-utmp.service
4471 LOCAL_FS_TARGET_WANTS += \
4472         systemd-remount-fs.service \
4473         systemd-fsck-root.service \
4474         tmp.mount
4475 MULTI_USER_TARGET_WANTS += \
4476         getty.target \
4477         systemd-ask-password-wall.path
4478 SYSINIT_TARGET_WANTS += \
4479         dev-hugepages.mount \
4480         dev-mqueue.mount \
4481         sys-kernel-config.mount \
4482         sys-kernel-debug.mount \
4483         sys-fs-fuse-connections.mount \
4484         systemd-sysctl.service \
4485         systemd-ask-password-console.path
4486
4487 if HAVE_SYSV_COMPAT
4488 SYSTEM_UNIT_ALIASES += \
4489         poweroff.target runlevel0.target \
4490         rescue.target runlevel1.target \
4491         multi-user.target runlevel2.target \
4492         multi-user.target runlevel3.target \
4493         multi-user.target runlevel4.target \
4494         graphical.target runlevel5.target \
4495         reboot.target runlevel6.target
4496 endif
4497
4498 SYSTEM_UNIT_ALIASES += \
4499         graphical.target default.target \
4500         reboot.target ctrl-alt-del.target \
4501         getty@.service autovt@.service
4502
4503 USER_UNIT_ALIASES += \
4504         $(systemunitdir)/shutdown.target shutdown.target \
4505         $(systemunitdir)/sockets.target sockets.target \
4506         $(systemunitdir)/timers.target timers.target \
4507         $(systemunitdir)/paths.target paths.target \
4508         $(systemunitdir)/bluetooth.target bluetooth.target \
4509         $(systemunitdir)/printer.target printer.target \
4510         $(systemunitdir)/sound.target sound.target \
4511         $(systemunitdir)/smartcard.target smartcard.target
4512
4513 GENERAL_ALIASES += \
4514         $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
4515         $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
4516         $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
4517         ../system-services/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
4518
4519 if HAVE_SYSV_COMPAT
4520 INSTALL_DIRS += \
4521         $(systemunitdir)/runlevel1.target.wants \
4522         $(systemunitdir)/runlevel2.target.wants \
4523         $(systemunitdir)/runlevel3.target.wants \
4524         $(systemunitdir)/runlevel4.target.wants \
4525         $(systemunitdir)/runlevel5.target.wants
4526 endif
4527
4528 INSTALL_DIRS += \
4529         $(prefix)/lib/modules-load.d \
4530         $(sysconfdir)/modules-load.d \
4531         $(prefix)/lib/sysctl.d \
4532         $(sysconfdir)/sysctl.d \
4533         $(prefix)/lib/kernel/install.d \
4534         $(sysconfdir)/kernel/install.d \
4535         $(systemshutdowndir) \
4536         $(systemsleepdir) \
4537         $(systemgeneratordir) \
4538         $(usergeneratordir) \
4539         \
4540         $(userunitdir) \
4541         $(pkgsysconfdir)/system \
4542         $(pkgsysconfdir)/system/multi-user.target.wants \
4543         $(pkgsysconfdir)/system/getty.target.wants \
4544         $(pkgsysconfdir)/user \
4545         $(dbussessionservicedir) \
4546         $(sysconfdir)/xdg/systemd
4547
4548 install-exec-hook: $(INSTALL_EXEC_HOOKS)
4549
4550 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
4551
4552 install-data-hook: $(INSTALL_DATA_HOOKS)
4553
4554 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
4555
4556 clean-local: $(CLEAN_LOCAL_HOOKS)
4557         rm -rf $(abs_srcdir)/install-tree
4558         rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
4559               $(abs_srcdir)/hwdb/iab.txt
4560
4561 DISTCHECK_CONFIGURE_FLAGS = \
4562         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
4563         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
4564         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
4565         --with-dbusinterfacedir=$$dc_install_base/$(dbusinterfacedir) \
4566         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
4567         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
4568         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
4569         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
4570         --with-rootprefix=$$dc_install_base \
4571         --disable-split-usr
4572
4573 if HAVE_SYSV_COMPAT
4574 DISTCHECK_CONFIGURE_FLAGS += \
4575         --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
4576         --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
4577 else
4578 DISTCHECK_CONFIGURE_FLAGS += \
4579         --with-sysvinit-path= \
4580         --with-sysvrcnd-path=
4581 endif
4582
4583 if ENABLE_GTK_DOC
4584 DISTCHECK_CONFIGURE_FLAGS += \
4585         --enable-gtk-doc
4586 endif
4587
4588 hwdb-update:
4589         ( cd $(top_srcdir)/hwdb && \
4590         wget -N http://www.linux-usb.org/usb.ids \
4591                 http://pci-ids.ucw.cz/v2.2/pci.ids \
4592                 http://standards.ieee.org/develop/regauth/oui/oui.txt \
4593                 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
4594         ./ids-update.pl )
4595
4596 kdbus-update:
4597         ( cd $(top_srcdir)/src/libsystemd-bus/ && \
4598         wget -N https://d-bus.googlecode.com/git/kdbus.h )
4599
4600 upload: all distcheck
4601         cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
4602         scp systemd-$(VERSION).tar.xz fdo:/srv/www.freedesktop.org/www/software/systemd/
4603         scp man/*.html tango:public/systemd-man/
4604
4605 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
4606 doc-sync: all destdir-sphinx
4607         gtkdoc-rebase --html-dir=docs/libudev/html --online
4608         rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
4609         gtkdoc-rebase --html-dir=docs/gudev/html --online
4610         rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
4611         rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
4612         rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
4613
4614 git-tag:
4615         git tag "v$(VERSION)" -m "systemd $(VERSION)"
4616
4617 install-tree: all
4618         rm -rf $(abs_srcdir)/install-tree
4619         $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
4620         tree $(abs_srcdir)/install-tree
4621
4622 # Let's run all tests of the test suite, but under valgrind. Let's
4623 # exclude the one perl script we have in there
4624 valgrind-tests: $(TESTS)
4625         for f in $(TESTS) ; do [ "$$f" == "$${f/.pl/}" ] && libtool --mode=execute valgrind --leak-check=full --error-exitcode=55 $(builddir)/$$f ; done