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