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