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