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