chiark / gitweb /
e86075f23a0f70b91605cff9aa4ca19a631058ad
[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 GCC_COLORS ?= 'ooh, shiny!'
28 export GCC_COLORS
29
30 SUBDIRS = . po
31
32 # remove targets if the command fails
33 .DELETE_ON_ERROR:
34
35 # keep intermediate files
36 .SECONDARY:
37
38 # Keep the test-suite.log
39 .PRECIOUS: $(TEST_SUITE_LOG) Makefile
40
41 LIBUDEV_CURRENT=7
42 LIBUDEV_REVISION=2
43 LIBUDEV_AGE=6
44
45 LIBGUDEV_CURRENT=2
46 LIBGUDEV_REVISION=0
47 LIBGUDEV_AGE=2
48
49 LIBSYSTEMD_CURRENT=5
50 LIBSYSTEMD_REVISION=1
51 LIBSYSTEMD_AGE=5
52
53 # The following four libraries only exist for compatibility reasons,
54 # their version info should not be bumped anymore
55 LIBSYSTEMD_LOGIN_CURRENT=9
56 LIBSYSTEMD_LOGIN_REVISION=3
57 LIBSYSTEMD_LOGIN_AGE=9
58
59 LIBSYSTEMD_DAEMON_CURRENT=0
60 LIBSYSTEMD_DAEMON_REVISION=12
61 LIBSYSTEMD_DAEMON_AGE=0
62
63 LIBSYSTEMD_ID128_CURRENT=0
64 LIBSYSTEMD_ID128_REVISION=28
65 LIBSYSTEMD_ID128_AGE=0
66
67 LIBSYSTEMD_JOURNAL_CURRENT=11
68 LIBSYSTEMD_JOURNAL_REVISION=5
69 LIBSYSTEMD_JOURNAL_AGE=11
70
71 # Dirs of external packages
72 dbuspolicydir=@dbuspolicydir@
73 dbussessionservicedir=@dbussessionservicedir@
74 dbussystemservicedir=@dbussystemservicedir@
75 pamlibdir=@pamlibdir@
76 pamconfdir=@pamconfdir@
77 pkgconfiglibdir=$(libdir)/pkgconfig
78 polkitpolicydir=$(datadir)/polkit-1/actions
79 bashcompletiondir=@bashcompletiondir@
80 zshcompletiondir=@zshcompletiondir@
81 rpmmacrosdir=$(prefix)/lib/rpm/macros.d
82 sysvinitdir=$(SYSTEM_SYSVINIT_PATH)
83 sysvrcnddir=$(SYSTEM_SYSVRCND_PATH)
84 varlogdir=$(localstatedir)/log
85 systemdstatedir=$(localstatedir)/lib/systemd
86 catalogstatedir=$(systemdstatedir)/catalog
87 xinitrcdir=$(sysconfdir)/X11/xinit/xinitrc.d
88
89 # Our own, non-special dirs
90 pkgsysconfdir=$(sysconfdir)/systemd
91 userunitdir=$(prefix)/lib/systemd/user
92 userpresetdir=$(prefix)/lib/systemd/user-preset
93 tmpfilesdir=$(prefix)/lib/tmpfiles.d
94 sysusersdir=$(prefix)/lib/sysusers.d
95 sysctldir=$(prefix)/lib/sysctl.d
96 binfmtdir=$(prefix)/lib/binfmt.d
97 modulesloaddir=$(prefix)/lib/modules-load.d
98 networkdir=$(rootprefix)/lib/systemd/network
99 pkgincludedir=$(includedir)/systemd
100 systemgeneratordir=$(rootlibexecdir)/system-generators
101 usergeneratordir=$(prefix)/lib/systemd/user-generators
102 systemshutdowndir=$(rootlibexecdir)/system-shutdown
103 systemsleepdir=$(rootlibexecdir)/system-sleep
104 systemunitdir=$(rootprefix)/lib/systemd/system
105 systempresetdir=$(rootprefix)/lib/systemd/system-preset
106 udevlibexecdir=$(rootprefix)/lib/udev
107 udevhomedir=$(udevlibexecdir)
108 udevrulesdir=$(udevlibexecdir)/rules.d
109 udevhwdbdir=$(udevlibexecdir)/hwdb.d
110 catalogdir=$(prefix)/lib/systemd/catalog
111 kernelinstalldir = $(prefix)/lib/kernel/install.d
112 factory_etcdir = $(prefix)/share/factory/etc
113 factory_pamdir = $(prefix)/share/factory/etc/pam.d
114
115 # And these are the special ones for /
116 rootprefix=@rootprefix@
117 rootbindir=$(rootprefix)/bin
118 rootlibexecdir=$(rootprefix)/lib/systemd
119
120 CLEANFILES = $(BUILT_SOURCES)
121 DISTCLEANFILES =
122 EXTRA_DIST =
123 BUILT_SOURCES =
124 INSTALL_EXEC_HOOKS =
125 UNINSTALL_EXEC_HOOKS =
126 INSTALL_DATA_HOOKS =
127 UNINSTALL_DATA_HOOKS =
128 DISTCLEAN_LOCAL_HOOKS =
129 CLEAN_LOCAL_HOOKS =
130 pkginclude_HEADERS =
131 noinst_LTLIBRARIES =
132 lib_LTLIBRARIES =
133 include_HEADERS =
134 noinst_DATA =
135 pkgconfiglib_DATA =
136 polkitpolicy_in_in_files =
137 polkitpolicy_in_files =
138 polkitpolicy_files =
139 dist_udevrules_DATA =
140 nodist_udevrules_DATA =
141 dist_pkgsysconf_DATA =
142 nodist_pkgsysconf_DATA =
143 dist_pkgdata_DATA =
144 dist_dbuspolicy_DATA =
145 dist_dbussystemservice_DATA =
146 dist_systemunit_DATA_busnames =
147 check_PROGRAMS =
148 check_DATA =
149 tests=
150 manual_tests =
151 TEST_EXTENSIONS = .py
152 PY_LOG_COMPILER = $(PYTHON)
153 if ENABLE_TESTS
154 noinst_PROGRAMS = $(manual_tests) $(tests)
155 TESTS = $(tests)
156 else
157 noinst_PROGRAMS =
158 TESTS =
159 endif
160 udevlibexec_PROGRAMS =
161
162 .PHONY: $(INSTALL_EXEC_HOOKS) $(UNINSTALL_EXEC_HOOKS) \
163         $(INSTALL_DATA_HOOKS) $(UNINSTALL_DATA_HOOKS) \
164         $(DISTCLEAN_LOCAL_HOOKS) $(CLEAN_LOCAL_HOOKS)
165
166 AM_CPPFLAGS = \
167         -include $(top_builddir)/config.h \
168         -DPKGSYSCONFDIR=\"$(pkgsysconfdir)\" \
169         -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
170         -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
171         -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
172         -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
173         -DUSER_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/user\" \
174         -DUSER_DATA_UNIT_PATH=\"$(userunitdir)\" \
175         -DCERTIFICATE_ROOT=\"$(CERTIFICATEROOT)\" \
176         -DCATALOG_DATABASE=\"$(catalogstatedir)/database\" \
177         -DSYSTEMD_CGROUP_AGENT_PATH=\"$(rootlibexecdir)/systemd-cgroups-agent\" \
178         -DSYSTEMD_BINARY_PATH=\"$(rootlibexecdir)/systemd\" \
179         -DSYSTEMD_SHUTDOWN_BINARY_PATH=\"$(rootlibexecdir)/systemd-shutdown\" \
180         -DSYSTEMD_SLEEP_BINARY_PATH=\"$(rootlibexecdir)/systemd-sleep\" \
181         -DSYSTEMCTL_BINARY_PATH=\"$(rootbindir)/systemctl\" \
182         -DSYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH=\"$(rootbindir)/systemd-tty-ask-password-agent\" \
183         -DSYSTEMD_STDIO_BRIDGE_BINARY_PATH=\"$(bindir)/systemd-stdio-bridge\" \
184         -DROOTPREFIX=\"$(rootprefix)\" \
185         -DRANDOM_SEED_DIR=\"$(localstatedir)/lib/systemd/\" \
186         -DRANDOM_SEED=\"$(localstatedir)/lib/systemd/random-seed\" \
187         -DSYSTEMD_CRYPTSETUP_PATH=\"$(rootlibexecdir)/systemd-cryptsetup\" \
188         -DSYSTEM_GENERATOR_PATH=\"$(systemgeneratordir)\" \
189         -DUSER_GENERATOR_PATH=\"$(usergeneratordir)\" \
190         -DSYSTEM_SHUTDOWN_PATH=\"$(systemshutdowndir)\" \
191         -DSYSTEM_SLEEP_PATH=\"$(systemsleepdir)\" \
192         -DSYSTEMD_KBD_MODEL_MAP=\"$(pkgdatadir)/kbd-model-map\" \
193         -DX_SERVER=\"$(bindir)/X\" \
194         -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \
195         -DPOLKIT_AGENT_BINARY_PATH=\"$(bindir)/pkttyagent\" \
196         -DQUOTACHECK=\"$(QUOTACHECK)\" \
197         -DKEXEC=\"$(KEXEC)\" \
198         -DLIBDIR=\"$(libdir)\" \
199         -DROOTLIBDIR=\"$(rootlibdir)\" \
200         -DTEST_DIR=\"$(abs_top_srcdir)/test\" \
201         -I $(top_srcdir)/src \
202         -I $(top_builddir)/src/shared \
203         -I $(top_srcdir)/src/shared \
204         -I $(top_srcdir)/src/network \
205         -I $(top_srcdir)/src/login \
206         -I $(top_srcdir)/src/journal \
207         -I $(top_srcdir)/src/timedate \
208         -I $(top_srcdir)/src/timesync \
209         -I $(top_srcdir)/src/resolve \
210         -I $(top_builddir)/src/resolve \
211         -I $(top_srcdir)/src/systemd \
212         -I $(top_builddir)/src/core \
213         -I $(top_srcdir)/src/core \
214         -I $(top_srcdir)/src/libudev \
215         -I $(top_srcdir)/src/udev \
216         -I $(top_srcdir)/src/udev/net \
217         -I $(top_builddir)/src/udev \
218         -I $(top_srcdir)/src/libsystemd/sd-bus \
219         -I $(top_srcdir)/src/libsystemd/sd-event \
220         -I $(top_srcdir)/src/libsystemd/sd-rtnl \
221         -I $(top_srcdir)/src/libsystemd/sd-network \
222         -I $(top_srcdir)/src/libsystemd/sd-hwdb \
223         -I $(top_srcdir)/src/libsystemd-network \
224         -I $(top_srcdir)/src/libsystemd-terminal \
225         $(OUR_CPPFLAGS)
226
227 AM_CFLAGS = $(OUR_CFLAGS)
228 AM_LDFLAGS = $(OUR_LDFLAGS)
229
230 # ------------------------------------------------------------------------------
231 define move-to-rootlibdir
232         if test "$(libdir)" != "$(rootlibdir)"; then \
233                 $(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
234                 so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
235                 rm -f $(DESTDIR)$(libdir)/$$libname && \
236                 $(LN_S) --relative -f $(DESTDIR)$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
237                 mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
238         fi
239 endef
240
241 INSTALL_DIRS =
242
243 RUNLEVEL1_TARGET_WANTS =
244 RUNLEVEL2_TARGET_WANTS =
245 RUNLEVEL3_TARGET_WANTS =
246 RUNLEVEL4_TARGET_WANTS =
247 RUNLEVEL5_TARGET_WANTS =
248 SHUTDOWN_TARGET_WANTS =
249 LOCAL_FS_TARGET_WANTS =
250 MULTI_USER_TARGET_WANTS =
251 SYSINIT_TARGET_WANTS =
252 SOCKETS_TARGET_WANTS =
253 BUSNAMES_TARGET_WANTS =
254 TIMERS_TARGET_WANTS =
255 USER_SOCKETS_TARGET_WANTS =
256 USER_DEFAULT_TARGET_WANTS =
257 USER_BUSNAMES_TARGET_WANTS =
258
259 SYSTEM_UNIT_ALIASES =
260 USER_UNIT_ALIASES =
261 GENERAL_ALIASES =
262
263 install-target-wants-hook:
264         what="$(RUNLEVEL1_TARGET_WANTS)" && wants=runlevel1.target && dir=$(systemunitdir) && $(add-wants)
265         what="$(RUNLEVEL2_TARGET_WANTS)" && wants=runlevel2.target && dir=$(systemunitdir) && $(add-wants)
266         what="$(RUNLEVEL3_TARGET_WANTS)" && wants=runlevel3.target && dir=$(systemunitdir) && $(add-wants)
267         what="$(RUNLEVEL4_TARGET_WANTS)" && wants=runlevel4.target && dir=$(systemunitdir) && $(add-wants)
268         what="$(RUNLEVEL5_TARGET_WANTS)" && wants=runlevel5.target && dir=$(systemunitdir) && $(add-wants)
269         what="$(SHUTDOWN_TARGET_WANTS)" && wants=shutdown.target && dir=$(systemunitdir) && $(add-wants)
270         what="$(LOCAL_FS_TARGET_WANTS)" && wants=local-fs.target && dir=$(systemunitdir) && $(add-wants)
271         what="$(MULTI_USER_TARGET_WANTS)" && wants=multi-user.target && dir=$(systemunitdir) && $(add-wants)
272         what="$(SYSINIT_TARGET_WANTS)" && wants=sysinit.target && dir=$(systemunitdir) && $(add-wants)
273         what="$(SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(systemunitdir) && $(add-wants)
274         what="$(TIMERS_TARGET_WANTS)" && wants=timers.target && dir=$(systemunitdir) && $(add-wants)
275         what="$(SLICES_TARGET_WANTS)" && wants=slices.target && dir=$(systemunitdir) && $(add-wants)
276         what="$(USER_SOCKETS_TARGET_WANTS)" && wants=sockets.target && dir=$(userunitdir) && $(add-wants)
277         what="$(USER_DEFAULT_TARGET_WANTS)" && wants=default.target && dir=$(userunitdir) && $(add-wants)
278
279 install-busnames-target-wants-hook:
280         what="$(BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(systemunitdir) && $(add-wants)
281         what="$(USER_BUSNAMES_TARGET_WANTS)" && wants=busnames.target && dir=$(userunitdir) && $(add-wants)
282
283 define add-wants
284         [ -z "$$what" ] || ( \
285           dir=$(DESTDIR)$$dir/$$wants.wants && \
286           $(MKDIR_P) -m 0755 $$dir && \
287           cd $$dir && \
288           rm -f $$what && \
289           for i in $$what; do $(LN_S) ../$$i . || exit $$? ; done )
290 endef
291
292 install-directories-hook:
293         $(MKDIR_P) $(addprefix $(DESTDIR),$(INSTALL_DIRS))
294
295 install-aliases-hook:
296         set -- $(SYSTEM_UNIT_ALIASES) && \
297                 dir=$(systemunitdir) && $(install-aliases)
298         set -- $(USER_UNIT_ALIASES) && \
299                 dir=$(userunitdir) && $(install-relative-aliases)
300         set -- $(GENERAL_ALIASES) && \
301                 dir= && $(install-relative-aliases)
302
303 define install-aliases
304         while [ -n "$$1" ]; do \
305                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
306                 rm -f $(DESTDIR)$$dir/$$2 && \
307                 $(LN_S) $$1 $(DESTDIR)$$dir/$$2 && \
308                 shift 2 || exit $$?; \
309         done
310 endef
311
312 define install-relative-aliases
313         while [ -n "$$1" ]; do \
314                 $(MKDIR_P) `dirname $(DESTDIR)$$dir/$$2` && \
315                 rm -f $(DESTDIR)$$dir/$$2 && \
316                 $(LN_S) --relative $(DESTDIR)$$1 $(DESTDIR)$$dir/$$2 && \
317                 shift 2 || exit $$?; \
318         done
319 endef
320
321 install-touch-usr-hook:
322         touch -c $(DESTDIR)/$(prefix)
323
324 INSTALL_EXEC_HOOKS += \
325         install-target-wants-hook \
326         install-directories-hook \
327         install-aliases-hook \
328         install-touch-usr-hook
329
330 if ENABLE_KDBUS
331 INSTALL_EXEC_HOOKS += \
332         install-busnames-target-wants-hook
333 endif
334
335 # ------------------------------------------------------------------------------
336 AM_V_M4 = $(AM_V_M4_$(V))
337 AM_V_M4_ = $(AM_V_M4_$(AM_DEFAULT_VERBOSITY))
338 AM_V_M4_0 = @echo "  M4      " $@;
339
340 AM_V_XSLT = $(AM_V_XSLT_$(V))
341 AM_V_XSLT_ = $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY))
342 AM_V_XSLT_0 = @echo "  XSLT    " $@;
343
344 AM_V_GPERF = $(AM_V_GPERF_$(V))
345 AM_V_GPERF_ = $(AM_V_GPERF_$(AM_DEFAULT_VERBOSITY))
346 AM_V_GPERF_0 = @echo "  GPERF   " $@;
347
348 AM_V_LN = $(AM_V_LN_$(V))
349 AM_V_LN_ = $(AM_V_LN_$(AM_DEFAULT_VERBOSITY))
350 AM_V_LN_0 = @echo "  LN      " $@;
351
352 AM_V_RM = $(AM_V_RM_$(V))
353 AM_V_RM_ = $(AM_V_RM_$(AM_DEFAULT_VERBOSITY))
354 AM_V_RM_0 = @echo "  RM      " $@;
355
356 # ------------------------------------------------------------------------------
357 rootbin_PROGRAMS = \
358         systemctl \
359         systemd-notify \
360         systemd-ask-password \
361         systemd-tty-ask-password-agent \
362         systemd-machine-id-setup \
363         systemd-escape
364
365 bin_PROGRAMS = \
366         systemd-cgls \
367         systemd-cgtop \
368         systemd-nspawn \
369         systemd-detect-virt \
370         systemd-delta \
371         systemd-analyze \
372         systemd-run \
373         systemd-stdio-bridge \
374         systemd-path
375
376 dist_bin_SCRIPTS = \
377         src/kernel-install/kernel-install
378
379 dist_kernelinstall_SCRIPTS = \
380         src/kernel-install/50-depmod.install \
381         src/kernel-install/90-loaderentry.install
382
383 rootlibexec_PROGRAMS = \
384         systemd \
385         systemd-cgroups-agent \
386         systemd-initctl \
387         systemd-shutdownd \
388         systemd-shutdown \
389         systemd-remount-fs \
390         systemd-reply-password \
391         systemd-fsck \
392         systemd-machine-id-commit \
393         systemd-ac-power \
394         systemd-sysctl \
395         systemd-sleep \
396         systemd-bus-proxyd \
397         systemd-socket-proxyd \
398         systemd-update-done
399
400 if HAVE_UTMP
401 rootlibexec_PROGRAMS += \
402         systemd-update-utmp
403 endif
404
405 systemgenerator_PROGRAMS = \
406         systemd-getty-generator \
407         systemd-fstab-generator \
408         systemd-system-update-generator \
409         systemd-debug-generator
410
411 dist_bashcompletion_DATA = \
412         shell-completion/bash/busctl \
413         shell-completion/bash/journalctl \
414         shell-completion/bash/systemd-analyze \
415         shell-completion/bash/systemd-cat \
416         shell-completion/bash/systemd-cgls \
417         shell-completion/bash/systemd-cgtop \
418         shell-completion/bash/systemd-delta \
419         shell-completion/bash/systemd-detect-virt \
420         shell-completion/bash/systemd-nspawn \
421         shell-completion/bash/systemd-run \
422         shell-completion/bash/udevadm \
423         shell-completion/bash/kernel-install
424
425 nodist_bashcompletion_DATA = \
426         shell-completion/bash/systemctl
427
428 dist_zshcompletion_DATA = \
429         shell-completion/zsh/_journalctl \
430         shell-completion/zsh/_udevadm \
431         shell-completion/zsh/_kernel-install \
432         shell-completion/zsh/_systemd-nspawn \
433         shell-completion/zsh/_systemd-analyze \
434         shell-completion/zsh/_systemd-run \
435         shell-completion/zsh/_sd_hosts_or_user_at_host \
436         shell-completion/zsh/_sd_outputmodes \
437         shell-completion/zsh/_sd_unit_files \
438         shell-completion/zsh/_systemd-delta \
439         shell-completion/zsh/_systemd
440
441 nodist_zshcompletion_DATA = \
442         shell-completion/zsh/_systemctl
443
444 EXTRA_DIST += \
445         shell-completion/bash/systemctl.in \
446         shell-completion/zsh/_systemctl.in
447
448 CLEANFILES += \
449         $(nodist_bashcompletion_DATA) \
450         $(nodist_zshcompletion_DATA)
451
452 dist_sysctl_DATA = \
453         sysctl.d/50-default.conf
454
455 dist_systemunit_DATA = \
456         units/graphical.target \
457         units/multi-user.target \
458         units/emergency.target \
459         units/sysinit.target \
460         units/basic.target \
461         units/getty.target \
462         units/halt.target \
463         units/kexec.target \
464         units/local-fs.target \
465         units/local-fs-pre.target \
466         units/initrd.target \
467         units/initrd-fs.target \
468         units/initrd-root-fs.target \
469         units/remote-fs.target \
470         units/remote-fs-pre.target \
471         units/network.target \
472         units/network-pre.target \
473         units/network-online.target \
474         units/nss-lookup.target \
475         units/nss-user-lookup.target \
476         units/poweroff.target \
477         units/reboot.target \
478         units/rescue.target \
479         units/rpcbind.target \
480         units/time-sync.target \
481         units/shutdown.target \
482         units/final.target \
483         units/umount.target \
484         units/sigpwr.target \
485         units/sleep.target \
486         units/sockets.target \
487         units/timers.target \
488         units/paths.target \
489         units/suspend.target \
490         units/swap.target \
491         units/slices.target \
492         units/system.slice \
493         units/x-.slice \
494         units/systemd-initctl.socket \
495         units/systemd-shutdownd.socket \
496         units/syslog.socket \
497         units/dev-hugepages.mount \
498         units/dev-mqueue.mount \
499         units/sys-kernel-config.mount \
500         units/sys-kernel-debug.mount \
501         units/sys-fs-fuse-connections.mount \
502         units/tmp.mount \
503         units/printer.target \
504         units/sound.target \
505         units/bluetooth.target \
506         units/smartcard.target \
507         units/systemd-ask-password-wall.path \
508         units/systemd-ask-password-console.path \
509         units/systemd-udevd-control.socket \
510         units/systemd-udevd-kernel.socket \
511         units/system-update.target \
512         units/initrd-switch-root.target \
513         units/machines.target
514
515 if ENABLE_KDBUS
516 dist_systemunit_DATA += \
517         $(dist_systemunit_DATA_busnames)
518 endif
519
520 dist_systemunit_DATA_busnames += \
521         units/busnames.target
522
523 nodist_systemunit_DATA = \
524         units/getty@.service \
525         units/serial-getty@.service \
526         units/console-shell.service \
527         units/console-getty.service \
528         units/container-getty@.service \
529         units/systemd-initctl.service \
530         units/systemd-shutdownd.service \
531         units/systemd-remount-fs.service \
532         units/systemd-ask-password-wall.service \
533         units/systemd-ask-password-console.service \
534         units/systemd-sysctl.service \
535         units/emergency.service \
536         units/rescue.service \
537         units/user@.service \
538         units/systemd-suspend.service \
539         units/systemd-halt.service \
540         units/systemd-poweroff.service \
541         units/systemd-reboot.service \
542         units/systemd-kexec.service \
543         units/systemd-fsck@.service \
544         units/systemd-fsck-root.service \
545         units/systemd-machine-id-commit.service \
546         units/systemd-udevd.service \
547         units/systemd-udev-trigger.service \
548         units/systemd-udev-settle.service \
549         units/systemd-hwdb-update.service \
550         units/debug-shell.service \
551         units/initrd-parse-etc.service \
552         units/initrd-cleanup.service \
553         units/initrd-udevadm-cleanup-db.service \
554         units/initrd-switch-root.service \
555         units/systemd-nspawn@.service \
556         units/systemd-update-done.service
557
558 if HAVE_UTMP
559 nodist_systemunit_DATA += \
560         units/systemd-update-utmp.service \
561         units/systemd-update-utmp-runlevel.service
562 endif
563
564 dist_userunit_DATA = \
565         units/user/basic.target \
566         units/user/default.target \
567         units/user/exit.target
568
569 nodist_userunit_DATA = \
570         units/user/systemd-exit.service
571
572 dist_systempreset_DATA = \
573         system-preset/90-systemd.preset
574
575 EXTRA_DIST += \
576         units/getty@.service.m4 \
577         units/serial-getty@.service.m4 \
578         units/console-shell.service.m4.in \
579         units/console-getty.service.m4.in \
580         units/container-getty@.service.m4.in \
581         units/rescue.service.in \
582         units/systemd-initctl.service.in \
583         units/systemd-shutdownd.service.in \
584         units/systemd-remount-fs.service.in \
585         units/systemd-update-utmp.service.in \
586         units/systemd-update-utmp-runlevel.service.in \
587         units/systemd-ask-password-wall.service.in \
588         units/systemd-ask-password-console.service.in \
589         units/systemd-sysctl.service.in \
590         units/emergency.service.in \
591         units/systemd-halt.service.in \
592         units/systemd-poweroff.service.in \
593         units/systemd-reboot.service.in \
594         units/systemd-kexec.service.in \
595         units/user/systemd-exit.service.in \
596         units/systemd-fsck@.service.in \
597         units/systemd-fsck-root.service.in \
598         units/systemd-machine-id-commit.service.in \
599         units/user@.service.m4.in \
600         units/debug-shell.service.in \
601         units/systemd-suspend.service.in \
602         units/quotaon.service.in \
603         units/initrd-parse-etc.service.in \
604         units/initrd-cleanup.service.in \
605         units/initrd-udevadm-cleanup-db.service.in \
606         units/initrd-switch-root.service.in \
607         units/systemd-nspawn@.service.in \
608         units/systemd-update-done.service.in
609
610 CLEANFILES += \
611         units/console-shell.service.m4 \
612         units/console-getty.service.m4 \
613         units/container-getty@.service.m4 \
614         units/user@.service.m4
615
616 if HAVE_SYSV_COMPAT
617 nodist_systemunit_DATA += \
618         units/rc-local.service \
619         units/halt-local.service
620
621 systemgenerator_PROGRAMS += \
622         systemd-sysv-generator \
623         systemd-rc-local-generator
624 endif
625
626 EXTRA_DIST += \
627         units/rc-local.service.in \
628         units/halt-local.service.in
629
630 # automake is broken and can't handle files with a dash in front
631 # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14728#8
632 units-install-hook:
633         mv $(DESTDIR)$(systemunitdir)/x-.slice $(DESTDIR)/$(systemunitdir)/-.slice
634
635 units-uninstall-hook:
636         rm -f $(DESTDIR)/$(systemunitdir)/-.slice
637
638 INSTALL_DATA_HOOKS += units-install-hook
639 UNINSTALL_DATA_HOOKS += units-uninstall-hook
640
641 dist_doc_DATA = \
642         README \
643         NEWS \
644         LICENSE.LGPL2.1 \
645         LICENSE.GPL2 \
646         LICENSE.MIT \
647         DISTRO_PORTING \
648         src/libsystemd/sd-bus/PORTING-DBUS1 \
649         src/libsystemd/sd-bus/DIFFERENCES \
650         src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
651
652 @INTLTOOL_POLICY_RULE@
653
654 # ------------------------------------------------------------------------------
655
656 MANPAGES =
657 MANPAGES_ALIAS =
658
659 include Makefile-man.am
660
661 .PHONY: man update-man-list
662 man: $(MANPAGES) $(MANPAGES_ALIAS) $(HTML_FILES) $(HTML_ALIAS)
663
664 XML_FILES = \
665         ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
666 HTML_FILES = \
667         ${XML_FILES:.xml=.html}
668 HTML_ALIAS = \
669         ${patsubst %.1,%.html,${patsubst %.3,%.html,${patsubst %.5,%.html,${patsubst %.7,%.html,${patsubst %.8,%.html,$(MANPAGES_ALIAS)}}}}}
670
671 if ENABLE_MANPAGES
672 man_MANS = \
673         $(MANPAGES) \
674         $(MANPAGES_ALIAS)
675
676 noinst_DATA += \
677         $(HTML_FILES) \
678         $(HTML_ALIAS)
679
680 CLEANFILES += \
681         $(man_MANS) \
682         $(HTML_FILES) \
683         $(HTML_ALIAS)
684
685 docs/html/man:
686         $(AM_V_at)$(MKDIR_P) $(dir $@)
687         $(AM_V_LN)$(LN_S) -f ../../man $@
688
689 noinst_DATA += \
690         docs/html/man
691
692 CLEANFILES += \
693         docs/html/man
694
695 if HAVE_PYTHON
696 man/index.html: man/systemd.index.html
697         $(AM_V_LN)$(LN_S) -f systemd.index.html $@
698
699 noinst_DATA += \
700         man/index.html
701
702 CLEANFILES += \
703         man/index.html
704
705 XML_GLOB = $(wildcard $(top_srcdir)/man/*.xml $(top_builddir)/man/*.xml)
706 NON_INDEX_XML_FILES = $(filter-out man/systemd.index.xml,$(XML_FILES))
707 SOURCE_XML_FILES = $(filter-out man/systemd.directives.xml,$(NON_INDEX_XML_FILES))
708
709 update-man-list: $(top_srcdir)/tools/make-man-rules.py $(XML_GLOB)
710         $(AM_V_GEN)$(PYTHON) $^ > $(top_srcdir)/Makefile-man.tmp
711         $(AM_V_at)mv $(top_srcdir)/Makefile-man.tmp $(top_srcdir)/Makefile-man.am
712         @echo "Makefile-man.am has been regenerated"
713
714 man/systemd.index.xml: $(top_srcdir)/tools/make-man-index.py $(NON_INDEX_XML_FILES)
715         $(AM_V_at)$(MKDIR_P) $(dir $@)
716         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
717
718 man/systemd.directives.xml: $(top_srcdir)/tools/make-directive-index.py $(SOURCE_XML_FILES)
719         $(AM_V_at)$(MKDIR_P) $(dir $@)
720         $(AM_V_GEN)$(PYTHON) $< $@ $(filter-out $<,$^)
721
722 EXTRA_DIST += \
723         man/systemd.index.xml \
724         man/index.html \
725         man/systemd.directives.xml \
726         man/glib-event-glue.c
727
728 CLEANFILES += \
729         man/systemd.index.xml \
730         man/systemd.directives.xml
731
732 endif
733
734 endif
735
736 EXTRA_DIST += \
737         $(XML_FILES) \
738         $(HTML_FILES) \
739         $(HTML_ALIAS) \
740         $(man_MANS) \
741         tools/make-man-index.py \
742         tools/make-directive-index.py \
743         tools/xml_helper.py
744
745 # ------------------------------------------------------------------------------
746 noinst_LTLIBRARIES += \
747         libsystemd-shared.la
748
749 libsystemd_shared_la_SOURCES = \
750         src/shared/capability.c \
751         src/shared/capability.h \
752         src/shared/linux/auto_dev-ioctl.h \
753         src/shared/ioprio.h \
754         src/shared/missing.h \
755         src/shared/initreq.h \
756         src/shared/securebits.h \
757         src/shared/special.h \
758         src/shared/list.h \
759         src/shared/unaligned.h \
760         src/shared/macro.h \
761         src/shared/def.h \
762         src/shared/sparse-endian.h \
763         src/shared/refcnt.h \
764         src/shared/udev-util.h \
765         src/shared/device-nodes.c \
766         src/shared/device-nodes.h \
767         src/shared/util.c \
768         src/shared/util.h \
769         src/shared/virt.c \
770         src/shared/virt.h \
771         src/shared/architecture.c \
772         src/shared/architecture.h \
773         src/shared/efivars.c \
774         src/shared/efivars.h \
775         src/shared/fstab-util.c \
776         src/shared/fstab-util.h \
777         src/shared/path-util.c \
778         src/shared/path-util.h \
779         src/shared/time-util.c \
780         src/shared/time-util.h \
781         src/shared/locale-util.c \
782         src/shared/locale-util.h \
783         src/shared/mempool.c \
784         src/shared/mempool.h \
785         src/shared/hashmap.c \
786         src/shared/hashmap.h \
787         src/shared/siphash24.c \
788         src/shared/siphash24.h \
789         src/shared/set.h \
790         src/shared/fdset.c \
791         src/shared/fdset.h \
792         src/shared/prioq.c \
793         src/shared/prioq.h \
794         src/shared/sleep-config.c \
795         src/shared/sleep-config.h \
796         src/shared/strv.c \
797         src/shared/strv.h \
798         src/shared/env-util.c \
799         src/shared/env-util.h \
800         src/shared/strbuf.c \
801         src/shared/strbuf.h \
802         src/shared/strxcpyx.c \
803         src/shared/strxcpyx.h \
804         src/shared/conf-parser.c \
805         src/shared/conf-parser.h \
806         src/shared/log.c \
807         src/shared/log.h \
808         src/shared/ratelimit.h \
809         src/shared/ratelimit.c \
810         src/shared/exit-status.c \
811         src/shared/exit-status.h \
812         src/shared/utf8.c \
813         src/shared/utf8.h \
814         src/shared/gunicode.c \
815         src/shared/gunicode.h \
816         src/shared/pager.c \
817         src/shared/pager.h \
818         src/shared/socket-util.c \
819         src/shared/socket-util.h \
820         src/shared/in-addr-util.c \
821         src/shared/in-addr-util.h \
822         src/shared/ether-addr-util.h \
823         src/shared/conf-files.c \
824         src/shared/conf-files.h \
825         src/shared/cgroup-util.c \
826         src/shared/cgroup-util.h \
827         src/shared/cgroup-show.c \
828         src/shared/cgroup-show.h \
829         src/shared/unit-name.c \
830         src/shared/unit-name.h \
831         src/shared/utmp-wtmp.h \
832         src/shared/watchdog.c \
833         src/shared/watchdog.h \
834         src/shared/spawn-ask-password-agent.c \
835         src/shared/spawn-ask-password-agent.h \
836         src/shared/replace-var.c \
837         src/shared/replace-var.h \
838         src/shared/spawn-polkit-agent.c \
839         src/shared/spawn-polkit-agent.h \
840         src/shared/clock-util.c \
841         src/shared/clock-util.h \
842         src/shared/time-dst.c \
843         src/shared/time-dst.h \
844         src/shared/calendarspec.c \
845         src/shared/calendarspec.h \
846         src/shared/fileio.c \
847         src/shared/fileio.h \
848         src/shared/output-mode.h \
849         src/shared/MurmurHash2.c \
850         src/shared/MurmurHash2.h \
851         src/shared/acpi-fpdt.h \
852         src/shared/acpi-fpdt.c \
853         src/shared/boot-timestamps.h \
854         src/shared/boot-timestamps.c \
855         src/shared/mkdir.c \
856         src/shared/mkdir.h \
857         src/shared/smack-util.c \
858         src/shared/smack-util.h \
859         src/shared/apparmor-util.c \
860         src/shared/apparmor-util.h \
861         src/shared/ima-util.c \
862         src/shared/ima-util.h \
863         src/shared/ptyfwd.c \
864         src/shared/ptyfwd.h \
865         src/shared/errno-list.c \
866         src/shared/errno-list.h \
867         src/shared/af-list.c \
868         src/shared/af-list.h \
869         src/shared/arphrd-list.c \
870         src/shared/arphrd-list.h \
871         src/shared/cap-list.c \
872         src/shared/cap-list.h \
873         src/shared/audit.c \
874         src/shared/audit.h \
875         src/shared/xml.c \
876         src/shared/xml.h \
877         src/shared/json.c \
878         src/shared/json.h \
879         src/shared/bus-label.c \
880         src/shared/bus-label.h \
881         src/shared/gpt.h \
882         src/shared/clean-ipc.h \
883         src/shared/clean-ipc.c \
884         src/shared/login-shared.c \
885         src/shared/login-shared.h \
886         src/shared/ring.c \
887         src/shared/ring.h \
888         src/shared/barrier.c \
889         src/shared/barrier.h \
890         src/shared/pty.c \
891         src/shared/pty.h \
892         src/shared/async.c \
893         src/shared/async.h \
894         src/shared/base-filesystem.c \
895         src/shared/base-filesystem.h \
896         src/shared/memfd-util.c \
897         src/shared/memfd-util.h \
898         src/shared/uid-range.c \
899         src/shared/uid-range.h \
900         src/shared/nss-util.h \
901         src/shared/verbs.c \
902         src/shared/verbs.h \
903         src/shared/sigbus.c \
904         src/shared/sigbus.h \
905         src/shared/build.h \
906         src/shared/import-util.c \
907         src/shared/import-util.h
908
909 if HAVE_UTMP
910 libsystemd_shared_la_SOURCES += \
911         src/shared/utmp-wtmp.c
912 endif
913
914 nodist_libsystemd_shared_la_SOURCES = \
915         src/shared/errno-from-name.h \
916         src/shared/errno-to-name.h \
917         src/shared/af-from-name.h \
918         src/shared/af-to-name.h \
919         src/shared/arphrd-from-name.h \
920         src/shared/arphrd-to-name.h \
921         src/shared/cap-from-name.h \
922         src/shared/cap-to-name.h
923
924 libsystemd_shared_la_CFLAGS = \
925         $(AM_CFLAGS) \
926         $(CAP_CFLAGS) \
927         $(SECCOMP_CFLAGS) \
928         -pthread
929
930 libsystemd_shared_la_LIBADD = \
931         $(CAP_LIBS) \
932         -lm
933
934 # ------------------------------------------------------------------------------
935 noinst_LTLIBRARIES += \
936         libsystemd-units.la
937
938 libsystemd_units_la_SOURCES = \
939         src/shared/install.c \
940         src/shared/install.h \
941         src/shared/install-printf.c \
942         src/shared/install-printf.h \
943         src/shared/path-lookup.c \
944         src/shared/path-lookup.h \
945         src/shared/specifier.c \
946         src/shared/specifier.h
947
948 # ------------------------------------------------------------------------------
949 noinst_LTLIBRARIES += \
950         libsystemd-label.la
951
952 libsystemd_label_la_SOURCES = \
953         src/shared/socket-label.c \
954         src/shared/label.c \
955         src/shared/label.h \
956         src/shared/selinux-util.c \
957         src/shared/selinux-util.h \
958         src/shared/mkdir-label.c \
959         src/shared/ask-password-api.c \
960         src/shared/ask-password-api.h \
961         src/shared/switch-root.h \
962         src/shared/switch-root.c \
963         src/shared/fileio-label.c \
964         src/shared/fileio-label.h \
965         src/shared/dev-setup.c \
966         src/shared/dev-setup.h \
967         src/shared/dropin.c \
968         src/shared/dropin.h \
969         src/shared/condition.c \
970         src/shared/condition.h \
971         src/shared/generator.h \
972         src/shared/generator.c \
973         src/shared/btrfs-util.c \
974         src/shared/btrfs-util.h \
975         src/shared/btrfs-ctree.h \
976         src/shared/machine-image.c \
977         src/shared/machine-image.h \
978         src/shared/copy.c \
979         src/shared/copy.h
980
981 libsystemd_label_la_CFLAGS = \
982         $(AM_CFLAGS) \
983         $(SELINUX_CFLAGS)
984
985 libsystemd_label_la_LIBADD = \
986         $(SELINUX_LIBS)
987
988 # -----------------------------------------------------------------------------
989
990 if HAVE_LIBIPTC
991 noinst_LTLIBRARIES += \
992         libsystemd-fw.la
993
994 libsystemd_fw_la_SOURCES = \
995         src/shared/fw-util.h \
996         src/shared/fw-util.c
997
998 libsystemd_fw_la_CFLAGS = \
999         $(AM_CFLAGS) \
1000         $(LIBIPTC_CFLAGS)
1001
1002 libsystemd_fw_la_LIBADD = \
1003         $(LIBIPTC_LIBS)
1004 endif
1005
1006 # -----------------------------------------------------------------------------
1007
1008 if ENABLE_LDCONFIG
1009 dist_systemunit_DATA += \
1010         units/ldconfig.service
1011
1012 SYSINIT_TARGET_WANTS += \
1013         ldconfig.service
1014 endif
1015
1016 # ------------------------------------------------------------------------------
1017
1018 if HAVE_SECCOMP
1019 noinst_LTLIBRARIES += \
1020         libsystemd-seccomp.la
1021
1022 libsystemd_seccomp_la_SOURCES = \
1023         src/shared/seccomp-util.h \
1024         src/shared/seccomp-util.c
1025
1026 libsystemd_seccomp_la_CFLAGS = \
1027         $(AM_CFLAGS) \
1028         $(SECCOMP_CFLAGS)
1029
1030 libsystemd_seccomp_la_LIBADD = \
1031         $(SECCOMP_LIBS)
1032 endif
1033
1034 # ------------------------------------------------------------------------------
1035 noinst_LTLIBRARIES += \
1036         libsystemd-logs.la
1037
1038 libsystemd_logs_la_SOURCES = \
1039         src/shared/logs-show.c \
1040         src/shared/logs-show.h
1041
1042 # ------------------------------------------------------------------------------
1043 if HAVE_ACL
1044 noinst_LTLIBRARIES += \
1045         libsystemd-acl.la
1046
1047 libsystemd_acl_la_SOURCES = \
1048         src/shared/acl-util.c \
1049         src/shared/acl-util.h
1050
1051 libsystemd_acl_la_CFLAGS = \
1052         $(AM_CFLAGS) \
1053         $(ACL_CFLAGS)
1054
1055 libsystemd_acl_la_LIBADD = \
1056         $(ACL_LIBS)
1057 endif
1058
1059 # ------------------------------------------------------------------------------
1060 noinst_LTLIBRARIES += \
1061         libsystemd-core.la
1062
1063 libsystemd_core_la_SOURCES = \
1064         src/core/unit.c \
1065         src/core/unit.h \
1066         src/core/unit-printf.c \
1067         src/core/unit-printf.h \
1068         src/core/job.c \
1069         src/core/job.h \
1070         src/core/manager.c \
1071         src/core/manager.h \
1072         src/core/transaction.c \
1073         src/core/transaction.h \
1074         src/core/load-fragment.c \
1075         src/core/load-fragment.h \
1076         src/core/service.c \
1077         src/core/service.h \
1078         src/core/socket.c \
1079         src/core/socket.h \
1080         src/core/busname.c \
1081         src/core/busname.h \
1082         src/core/bus-endpoint.c \
1083         src/core/bus-endpoint.h \
1084         src/core/bus-policy.c \
1085         src/core/bus-policy.h \
1086         src/core/target.c \
1087         src/core/target.h \
1088         src/core/snapshot.c \
1089         src/core/snapshot.h \
1090         src/core/device.c \
1091         src/core/device.h \
1092         src/core/mount.c \
1093         src/core/mount.h \
1094         src/core/automount.c \
1095         src/core/automount.h \
1096         src/core/swap.c \
1097         src/core/swap.h \
1098         src/core/timer.c \
1099         src/core/timer.h \
1100         src/core/path.c \
1101         src/core/path.h \
1102         src/core/slice.c \
1103         src/core/slice.h \
1104         src/core/scope.c \
1105         src/core/scope.h \
1106         src/core/load-dropin.c \
1107         src/core/load-dropin.h \
1108         src/core/execute.c \
1109         src/core/execute.h \
1110         src/core/kill.c \
1111         src/core/kill.h \
1112         src/core/dbus.c \
1113         src/core/dbus.h \
1114         src/core/dbus-manager.c \
1115         src/core/dbus-manager.h \
1116         src/core/dbus-unit.c \
1117         src/core/dbus-unit.h \
1118         src/core/dbus-job.c \
1119         src/core/dbus-job.h \
1120         src/core/dbus-service.c \
1121         src/core/dbus-service.h \
1122         src/core/dbus-socket.c \
1123         src/core/dbus-socket.h \
1124         src/core/dbus-busname.c \
1125         src/core/dbus-busname.h \
1126         src/core/dbus-target.c \
1127         src/core/dbus-target.h \
1128         src/core/dbus-snapshot.c \
1129         src/core/dbus-snapshot.h \
1130         src/core/dbus-device.c \
1131         src/core/dbus-device.h \
1132         src/core/dbus-mount.c \
1133         src/core/dbus-mount.h \
1134         src/core/dbus-automount.c \
1135         src/core/dbus-automount.h \
1136         src/core/dbus-swap.c \
1137         src/core/dbus-swap.h \
1138         src/core/dbus-timer.c \
1139         src/core/dbus-timer.h \
1140         src/core/dbus-path.c \
1141         src/core/dbus-path.h \
1142         src/core/dbus-slice.c \
1143         src/core/dbus-slice.h \
1144         src/core/dbus-scope.c \
1145         src/core/dbus-scope.h \
1146         src/core/dbus-execute.c \
1147         src/core/dbus-execute.h \
1148         src/core/dbus-kill.c \
1149         src/core/dbus-kill.h \
1150         src/core/dbus-cgroup.c \
1151         src/core/dbus-cgroup.h \
1152         src/core/cgroup.c \
1153         src/core/cgroup.h \
1154         src/core/selinux-access.c \
1155         src/core/selinux-access.h \
1156         src/core/selinux-setup.c \
1157         src/core/selinux-setup.h \
1158         src/core/smack-setup.c \
1159         src/core/smack-setup.h \
1160         src/core/ima-setup.c \
1161         src/core/ima-setup.h \
1162         src/core/locale-setup.h \
1163         src/core/locale-setup.c \
1164         src/core/hostname-setup.c \
1165         src/core/hostname-setup.h \
1166         src/core/machine-id-setup.c \
1167         src/core/machine-id-setup.h \
1168         src/core/mount-setup.c \
1169         src/core/mount-setup.h \
1170         src/core/kmod-setup.c \
1171         src/core/kmod-setup.h \
1172         src/core/loopback-setup.h \
1173         src/core/loopback-setup.c \
1174         src/core/namespace.c \
1175         src/core/namespace.h \
1176         src/core/killall.h \
1177         src/core/killall.c \
1178         src/core/audit-fd.c \
1179         src/core/audit-fd.h \
1180         src/core/show-status.c \
1181         src/core/show-status.h \
1182         src/core/failure-action.c \
1183         src/core/failure-action.h
1184
1185 nodist_libsystemd_core_la_SOURCES = \
1186         src/core/load-fragment-gperf.c \
1187         src/core/load-fragment-gperf-nulstr.c
1188
1189 libsystemd_core_la_CFLAGS = \
1190         $(AM_CFLAGS) \
1191         $(PAM_CFLAGS) \
1192         $(AUDIT_CFLAGS) \
1193         $(KMOD_CFLAGS) \
1194         $(APPARMOR_CFLAGS) \
1195         $(SECCOMP_CFLAGS) \
1196         $(MOUNT_CFLAGS) \
1197         -pthread
1198
1199 libsystemd_core_la_LIBADD = \
1200         libsystemd-units.la \
1201         libsystemd-label.la \
1202         libudev-internal.la \
1203         libsystemd-shared.la \
1204         libsystemd-internal.la \
1205         $(PAM_LIBS) \
1206         $(AUDIT_LIBS) \
1207         $(KMOD_LIBS) \
1208         $(APPARMOR_LIBS) \
1209         $(SECCOMP_LIBS) \
1210         $(MOUNT_LIBS)
1211
1212 if HAVE_SECCOMP
1213 libsystemd_core_la_LIBADD += \
1214         libsystemd-seccomp.la
1215 endif
1216
1217 src/core/load-fragment-gperf-nulstr.c: src/core/load-fragment-gperf.gperf
1218         $(AM_V_at)$(MKDIR_P) $(dir $@)
1219         $(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 ";" }' < $< > $@
1220
1221 EXTRA_DIST += \
1222         src/core/load-fragment-gperf.gperf.m4
1223
1224 CLEANFILES += \
1225         src/core/load-fragment-gperf.gperf \
1226         src/core/load-fragment-gperf.c \
1227         src/core/load-fragment-gperf-nulstr.c \
1228         src/shared/errno-list.txt \
1229         src/shared/errno-from-name.gperf \
1230         src/shared/af-list.txt \
1231         src/shared/af-from-name.gperf \
1232         src/shared/arphrd-list.txt \
1233         src/shared/arphrd-from-name.gperf \
1234         src/shared/cap-list.txt \
1235         src/shared/cap-from-name.gperf \
1236         src/resolve/dns_type-list.txt \
1237         src/resolve/dns_type-from-name.gperf
1238
1239 BUILT_SOURCES += \
1240         src/shared/errno-from-name.h \
1241         src/shared/errno-to-name.h \
1242         src/shared/af-from-name.h \
1243         src/shared/af-to-name.h \
1244         src/shared/arphrd-from-name.h \
1245         src/shared/arphrd-to-name.h \
1246         src/shared/cap-from-name.h \
1247         src/shared/cap-to-name.h \
1248         src/resolve/dns_type-from-name.h \
1249         src/resolve/dns_type-to-name.h
1250
1251 %-from-name.gperf: %-list.txt
1252         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct $(notdir $*)_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
1253
1254 %-from-name.h: %-from-name.gperf
1255         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_$(notdir $*) -H hash_$(notdir $*)_name -p -C <$< >$@
1256
1257
1258 src/shared/errno-list.txt:
1259         $(AM_V_at)$(MKDIR_P) $(dir $@)
1260         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include errno.h - </dev/null | $(AWK) '/^#define[ \t]+E[^ _]+[ \t]+/ { print $$2; }' >$@
1261
1262 src/shared/errno-to-name.h: src/shared/errno-list.txt
1263         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const errno_names[] = { "} !/EDEADLOCK/ && !/EWOULDBLOCK/ && !/ENOTSUP/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1264
1265
1266 src/shared/af-list.txt:
1267         $(AM_V_at)$(MKDIR_P) $(dir $@)
1268         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include sys/socket.h - </dev/null | grep -v AF_UNSPEC | grep -v AF_MAX | $(AWK) '/^#define[ \t]+AF_[^ \t]+[ \t]+PF_[^ \t]/ { print $$2; }' >$@
1269
1270 src/shared/af-to-name.h: src/shared/af-list.txt
1271         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const af_names[] = { "} !/AF_FILE/ && !/AF_ROUTE/ && !/AF_LOCAL/ { printf "[%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1272
1273
1274 src/shared/arphrd-list.txt:
1275         $(AM_V_at)$(MKDIR_P) $(dir $@)
1276         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include net/if_arp.h - </dev/null | $(AWK) '/^#define[ \t]+ARPHRD_[^ \t]+[ \t]+[^ \t]/ { print $$2; }' | sed -e 's/ARPHRD_//' >$@
1277
1278 src/shared/arphrd-to-name.h: src/shared/arphrd-list.txt
1279         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const arphrd_names[] = { "} !/CISCO/ { printf "[ARPHRD_%s] = \"%s\",\n", $$1, $$1 } END{print "};"}' <$< >$@
1280
1281 src/shared/arphrd-from-name.gperf: src/shared/arphrd-list.txt
1282         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct arphrd_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, ARPHRD_%s\n", $$1, $$1 }' <$< >$@
1283
1284
1285 src/shared/cap-list.txt:
1286         $(AM_V_at)$(MKDIR_P) $(dir $@)
1287         $(AM_V_GEN)$(CPP) $(CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) -dM -include linux/capability.h -include missing.h - </dev/null | $(AWK) '/^#define[ \t]+CAP_[A-Z_]+[ \t]+/ { print $$2; }' | grep -v CAP_LAST_CAP >$@
1288
1289 src/shared/cap-to-name.h: src/shared/cap-list.txt
1290         $(AM_V_GEN)$(AWK) 'BEGIN{ print "static const char* const capability_names[] = { "} { printf "[%s] = \"%s\",\n", $$1, tolower($$1) } END{print "};"}' <$< >$@
1291
1292 src/shared/cap-from-name.gperf: src/shared/cap-list.txt
1293         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct capability_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { printf "%s, %s\n", $$1, $$1 }' <$< >$@
1294
1295 src/shared/cap-from-name.h: src/shared/cap-from-name.gperf
1296         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_capability -H hash_capability_name -p -C <$< >$@
1297
1298
1299 src/resolve/dns_type-list.txt: src/resolve/dns-type.h
1300         $(AM_V_at)$(MKDIR_P) $(dir $@)
1301         $(AM_V_GEN)$(SED) -n -r 's/.* DNS_TYPE_(\w+).*/\1/p' <$< >$@
1302
1303 src/resolve/dns_type-to-name.h: src/resolve/dns_type-list.txt
1304         $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char *dns_type_to_string(int type) {\n\tswitch(type) {" } {printf "        case DNS_TYPE_%s: return ", $$1; sub(/_/, "-"); printf "\"%s\";\n", $$1 } END{ print "\ndefault: return NULL;\n\t}\n}\n" }' <$< >$@
1305
1306 src/resolve/dns_type-from-name.gperf: src/resolve/dns_type-list.txt
1307         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct dns_type_name { const char* name; int id; };"; print "%null-strings"; print "%%";} { s=$$1; sub(/_/, "-", s); printf "%s, ", $$s; printf "DNS_TYPE_%s\n", $$1 }' <$< >$@
1308
1309 # ------------------------------------------------------------------------------
1310 systemd_SOURCES = \
1311         src/core/main.c
1312
1313 systemd_CFLAGS = \
1314         $(AM_CFLAGS) \
1315         $(SECCOMP_CFLAGS)
1316
1317 systemd_LDADD = \
1318         libsystemd-core.la \
1319         $(RT_LIBS)
1320
1321 dist_pkgsysconf_DATA += \
1322         src/core/system.conf \
1323         src/core/user.conf
1324
1325 dist_dbuspolicy_DATA += \
1326         src/core/org.freedesktop.systemd1.conf
1327
1328 dist_dbussystemservice_DATA += \
1329         src/core/org.freedesktop.systemd1.service
1330
1331 polkitpolicy_in_in_files += \
1332         src/core/org.freedesktop.systemd1.policy.in.in
1333
1334 pkgconfiglib_DATA += \
1335         src/core/systemd.pc
1336
1337 nodist_rpmmacros_DATA = \
1338         src/core/macros.systemd
1339
1340 EXTRA_DIST += \
1341         src/core/systemd.pc.in \
1342         src/core/macros.systemd.in
1343
1344 CLEANFILES += \
1345         src/core/macros.systemd \
1346         src/core/org.freedesktop.systemd1.policy.in
1347
1348 # ------------------------------------------------------------------------------
1349
1350 manual_tests += \
1351         test-ns \
1352         test-loopback \
1353         test-hostname \
1354         test-daemon \
1355         test-cgroup \
1356         test-install \
1357         test-watchdog \
1358         test-log \
1359         test-ipcrm \
1360         test-btrfs
1361
1362 if HAVE_LIBIPTC
1363 manual_tests += \
1364         test-fw-util
1365 endif
1366
1367 if HAVE_KMOD
1368 manual_tests += \
1369         test-rtnl-manual
1370 endif
1371
1372 tests += \
1373         test-engine \
1374         test-cgroup-mask \
1375         test-job-type \
1376         test-env-replace \
1377         test-strbuf \
1378         test-strv \
1379         test-path \
1380         test-path-util \
1381         test-strxcpyx \
1382         test-unit-name \
1383         test-unit-file \
1384         test-utf8 \
1385         test-ellipsize \
1386         test-util \
1387         test-path-lookup \
1388         test-ring \
1389         test-barrier \
1390         test-pty \
1391         test-tmpfiles \
1392         test-namespace \
1393         test-date \
1394         test-sleep \
1395         test-replace-var \
1396         test-sched-prio \
1397         test-calendarspec \
1398         test-strip-tab-ansi \
1399         test-cgroup-util \
1400         test-fstab-util \
1401         test-prioq \
1402         test-fileio \
1403         test-time \
1404         test-hashmap \
1405         test-set \
1406         test-list \
1407         test-unaligned \
1408         test-tables \
1409         test-device-nodes \
1410         test-xml \
1411         test-json \
1412         test-architecture \
1413         test-socket-util \
1414         test-fdset \
1415         test-conf-files \
1416         test-capability \
1417         test-async \
1418         test-ratelimit \
1419         test-condition \
1420         test-uid-range \
1421         test-bus-policy \
1422         test-locale-util \
1423         test-execute \
1424         test-copy \
1425         test-cap-list \
1426         test-sigbus \
1427         test-verbs
1428
1429 EXTRA_DIST += \
1430         test/a.service \
1431         test/basic.target \
1432         test/b.service \
1433         test/c.service \
1434         test/daughter.service \
1435         test/d.service \
1436         test/end.service \
1437         test/e.service \
1438         test/f.service \
1439         test/grandchild.service \
1440         test/g.service \
1441         test/hello-after-sleep.target \
1442         test/hello.service \
1443         test/h.service \
1444         test/parent-deep.slice \
1445         test/parent.slice \
1446         test/paths.target \
1447         test/sched_idle_bad.service \
1448         test/sched_idle_ok.service \
1449         test/sched_rr_bad.service \
1450         test/sched_rr_change.service \
1451         test/sched_rr_ok.service \
1452         test/shutdown.target \
1453         test/sleep.service \
1454         test/sockets.target \
1455         test/son.service \
1456         test/sysinit.target \
1457         test/testsuite.target \
1458         test/timers.target \
1459         test/unstoppable.service \
1460         test/path-changed.service \
1461         test/path-directorynotempty.service \
1462         test/path-existsglob.service \
1463         test/path-exists.service \
1464         test/path-makedirectory.service \
1465         test/path-modified.service \
1466         test/path-mycustomunit.service \
1467         test/path-service.service \
1468         test/path-changed.path \
1469         test/path-directorynotempty.path \
1470         test/path-existsglob.path \
1471         test/path-exists.path \
1472         test/path-makedirectory.path \
1473         test/path-modified.path \
1474         test/path-unit.path \
1475         test/exec-environment-empty.service \
1476         test/exec-environment-multiple.service \
1477         test/exec-environment.service \
1478         test/exec-group.service \
1479         test/exec-ignoresigpipe-no.service \
1480         test/exec-ignoresigpipe-yes.service \
1481         test/exec-personality-x86-64.service \
1482         test/exec-personality-x86.service \
1483         test/exec-privatedevices-no.service \
1484         test/exec-privatedevices-yes.service \
1485         test/exec-privatetmp-no.service \
1486         test/exec-privatetmp-yes.service \
1487         test/exec-systemcallerrornumber.service \
1488         test/exec-systemcallfilter-failing2.service \
1489         test/exec-systemcallfilter-failing.service \
1490         test/exec-systemcallfilter-not-failing2.service \
1491         test/exec-systemcallfilter-not-failing.service \
1492         test/exec-user.service \
1493         test/exec-workingdirectory.service \
1494         test/exec-umask-0177.service \
1495         test/exec-umask-default.service \
1496         test/bus-policy/hello.conf \
1497         test/bus-policy/methods.conf \
1498         test/bus-policy/ownerships.conf \
1499         test/bus-policy/signals.conf \
1500         test/bus-policy/check-own-rules.conf \
1501         test/bus-policy/many-rules.conf \
1502         test/bus-policy/test.conf
1503
1504
1505 EXTRA_DIST += \
1506         src/test/test-helper.h
1507
1508 test_device_nodes_SOURCES = \
1509         src/test/test-device-nodes.c
1510
1511 test_device_nodes_LDADD = \
1512         libsystemd-shared.la
1513
1514 test_engine_SOURCES = \
1515         src/test/test-engine.c
1516
1517 test_engine_CFLAGS = \
1518         $(AM_CFLAGS) \
1519         $(SECCOMP_CFLAGS)
1520
1521 test_engine_LDADD = \
1522         libsystemd-core.la \
1523         $(RT_LIBS)
1524
1525 test_job_type_SOURCES = \
1526         src/test/test-job-type.c
1527
1528 test_job_type_CFLAGS = \
1529         $(AM_CFLAGS) \
1530         $(SECCOMP_CFLAGS)
1531
1532 test_job_type_LDADD = \
1533         libsystemd-core.la \
1534         $(RT_LIBS)
1535
1536 test_ns_SOURCES = \
1537         src/test/test-ns.c
1538
1539 test_ns_CFLAGS = \
1540         $(AM_CFLAGS) \
1541         $(SECCOMP_CFLAGS)
1542
1543 test_ns_LDADD = \
1544         libsystemd-core.la
1545
1546 test_loopback_SOURCES = \
1547         src/test/test-loopback.c
1548
1549 test_loopback_LDADD = \
1550         libsystemd-core.la
1551
1552 test_hostname_SOURCES = \
1553         src/test/test-hostname.c
1554
1555 test_hostname_LDADD = \
1556         libsystemd-core.la
1557
1558 if ENABLE_EFI
1559 manual_tests += \
1560         test-boot-timestamp
1561
1562 test_boot_timestamp_SOURCES = \
1563         src/test/test-boot-timestamps.c
1564
1565 test_boot_timestamp_LDADD = \
1566         libsystemd-shared.la
1567 endif
1568
1569 test_unit_name_SOURCES = \
1570         src/test/test-unit-name.c
1571
1572 test_unit_name_CFLAGS = \
1573         $(AM_CFLAGS) \
1574         $(SECCOMP_CFLAGS)
1575
1576 test_unit_name_LDADD = \
1577         libsystemd-core.la \
1578         $(RT_LIBS)
1579
1580 test_unit_file_SOURCES = \
1581         src/test/test-unit-file.c
1582
1583 test_unit_file_CFLAGS = \
1584         $(AM_CFLAGS) \
1585         $(SECCOMP_CFLAGS)
1586
1587 test_unit_file_LDADD = \
1588         libsystemd-core.la \
1589         $(RT_LIBS)
1590
1591 test_utf8_SOURCES = \
1592         src/test/test-utf8.c
1593
1594 test_utf8_LDADD = \
1595         libsystemd-shared.la
1596
1597 test_capability_SOURCES = \
1598         src/test/test-capability.c
1599
1600 test_capability_LDADD = \
1601         libsystemd-shared.la
1602
1603 test_async_SOURCES = \
1604         src/test/test-async.c
1605
1606 test_async_LDADD = \
1607         libsystemd-shared.la
1608
1609 test_locale_util_SOURCES = \
1610         src/test/test-locale-util.c
1611
1612 test_locale_util_LDADD = \
1613         libsystemd-shared.la
1614
1615 test_copy_SOURCES = \
1616         src/test/test-copy.c
1617
1618 test_copy_LDADD = \
1619         libsystemd-label.la \
1620         libsystemd-shared.la
1621
1622 test_sigbus_SOURCES = \
1623         src/test/test-sigbus.c
1624
1625 test_sigbus_LDADD = \
1626         libsystemd-shared.la
1627
1628 test_condition_SOURCES = \
1629         src/test/test-condition.c
1630
1631 test_condition_LDADD = \
1632         libsystemd-label.la \
1633         libsystemd-internal.la \
1634         libsystemd-shared.la
1635
1636 test_fdset_SOURCES = \
1637         src/test/test-fdset.c
1638
1639 test_fdset_LDADD = \
1640         libsystemd-shared.la \
1641         libsystemd-internal.la
1642
1643 test_fstab_util_SOURCES = \
1644         src/test/test-fstab-util.c
1645
1646 test_fstab_util_LDADD = \
1647         libsystemd-shared.la
1648
1649 test_ratelimit_SOURCES = \
1650         src/test/test-ratelimit.c
1651
1652 test_ratelimit_LDADD = \
1653         libsystemd-shared.la
1654
1655 test_util_SOURCES = \
1656         src/test/test-util.c
1657
1658 test_util_LDADD = \
1659         libsystemd-shared.la
1660
1661 test_path_lookup_SOURCES = \
1662         src/test/test-path-lookup.c
1663
1664 test_path_lookup_LDADD = \
1665         -lm \
1666         libsystemd-units.la \
1667         libsystemd-shared.la
1668
1669 test_uid_range_SOURCES = \
1670         src/test/test-uid-range.c
1671
1672 test_uid_range_LDADD = \
1673         libsystemd-shared.la
1674
1675 test_cap_list_SOURCES = \
1676         src/test/test-cap-list.c
1677
1678 test_cap_list_LDADD = \
1679         libsystemd-shared.la
1680
1681 test_socket_util_SOURCES = \
1682         src/test/test-socket-util.c
1683
1684 test_socket_util_LDADD = \
1685         libsystemd-shared.la
1686
1687 test_ring_SOURCES = \
1688         src/test/test-ring.c
1689
1690 test_ring_LDADD = \
1691         libsystemd-shared.la
1692
1693 test_barrier_SOURCES = \
1694         src/test/test-barrier.c
1695
1696 test_barrier_LDADD = \
1697         libsystemd-shared.la
1698
1699 test_pty_SOURCES = \
1700         src/test/test-pty.c
1701
1702 test_pty_LDADD = \
1703         libsystemd-core.la
1704
1705 test_tmpfiles_SOURCES = \
1706         src/test/test-tmpfiles.c
1707
1708 test_tmpfiles_LDADD = \
1709         libsystemd-shared.la
1710
1711 test_namespace_SOURCES = \
1712         src/test/test-namespace.c
1713
1714 test_verbs_SOURCES = \
1715         src/test/test-verbs.c
1716
1717 test_verbs_LDADD = \
1718         libsystemd-shared.la
1719
1720 test_namespace_LDADD = \
1721         libsystemd-core.la
1722
1723 CLEANFILES += \
1724         src/test/test-hashmap-ordered.c
1725
1726 BUILT_SOURCES += \
1727         src/test/test-hashmap-ordered.c
1728
1729 src/test/test-hashmap-ordered.c: src/test/test-hashmap-plain.c
1730         $(AM_V_at)$(MKDIR_P) $(dir $@)
1731         $(AM_V_GEN)$(AWK) 'BEGIN { print "/* GENERATED FILE */\n#define ORDERED" } \
1732                            { if (!match($$0, "^#include"))          \
1733                                  gsub(/hashmap/, "ordered_hashmap"); \
1734                              gsub(/HASHMAP/, "ORDERED_HASHMAP");     \
1735                              gsub(/Hashmap/, "OrderedHashmap");      \
1736                              print }' <$< >$@
1737
1738 nodist_test_hashmap_SOURCES = \
1739         src/test/test-hashmap-ordered.c
1740
1741 test_hashmap_SOURCES = \
1742         src/test/test-hashmap.c \
1743         src/test/test-hashmap-plain.c
1744
1745 test_hashmap_LDADD = \
1746         libsystemd-shared.la
1747
1748 test_set_SOURCES = \
1749         src/test/test-set.c
1750
1751 test_set_LDADD = \
1752         libsystemd-shared.la
1753
1754 test_xml_SOURCES = \
1755         src/test/test-xml.c
1756
1757 test_xml_LDADD = \
1758         libsystemd-shared.la
1759
1760 test_json_SOURCES = \
1761         src/test/test-json.c
1762
1763 test_json_LDADD = \
1764         libsystemd-shared.la
1765
1766 test_list_SOURCES = \
1767         src/test/test-list.c
1768
1769 test_list_LDADD = \
1770         libsystemd-shared.la
1771
1772 test_unaligned_LDADD = \
1773         libsystemd-shared.la
1774
1775 test_unaligned_SOURCES = \
1776         src/test/test-unaligned.c
1777
1778 test_tables_SOURCES = \
1779         src/test/test-tables.c \
1780         src/shared/test-tables.h \
1781         src/bus-proxyd/bus-xml-policy.c \
1782         src/bus-proxyd/bus-xml-policy.h \
1783         src/journal/journald-server.c \
1784         src/journal/journald-server.h
1785
1786 test_tables_CPPFLAGS = \
1787         $(AM_CPPFLAGS) \
1788         -I$(top_srcdir)/src/bus-proxyd
1789
1790 test_tables_CFLAGS = \
1791         $(AM_CFLAGS) \
1792         $(SECCOMP_CFLAGS)
1793
1794 test_tables_LDADD = \
1795         libsystemd-logs.la \
1796         libsystemd-journal-internal.la \
1797         libsystemd-journal-core.la \
1798         libsystemd-core.la \
1799         libudev-core.la \
1800         $(RT_LIBS)
1801
1802 test_prioq_SOURCES = \
1803         src/test/test-prioq.c
1804
1805 test_prioq_LDADD = \
1806         libsystemd-shared.la
1807
1808 test_fileio_SOURCES = \
1809         src/test/test-fileio.c
1810
1811 test_fileio_LDADD = \
1812         libsystemd-shared.la
1813
1814 test_time_SOURCES = \
1815         src/test/test-time.c
1816
1817 test_time_LDADD = \
1818         libsystemd-shared.la
1819
1820 test_architecture_SOURCES = \
1821         src/test/test-architecture.c
1822
1823 test_architecture_LDADD = \
1824         libsystemd-shared.la
1825
1826 test_log_SOURCES = \
1827         src/test/test-log.c
1828
1829 test_log_LDADD = \
1830         libsystemd-shared.la
1831
1832 test_ipcrm_SOURCES = \
1833         src/test/test-ipcrm.c
1834
1835 test_ipcrm_LDADD = \
1836         libsystemd-shared.la \
1837         -lrt
1838
1839 test_btrfs_SOURCES = \
1840         src/test/test-btrfs.c
1841
1842 test_btrfs_LDADD = \
1843         libsystemd-label.la \
1844         libsystemd-shared.la
1845
1846 if HAVE_LIBIPTC
1847 test_fw_util_SOURCES = \
1848         src/test/test-fw-util.c
1849
1850 test_fw_util_CFLAGS = \
1851         $(AM_CFLAGS) \
1852         $(LIBIPTC_CFLAGS)
1853
1854 test_fw_util_LDADD = \
1855         libsystemd-fw.la \
1856         libsystemd-shared.la \
1857         $(LIBIPTC_LIBS)
1858 endif
1859
1860 test_rtnl_manual_SOURCES = \
1861         src/test/test-rtnl-manual.c
1862
1863 test_rtnl_manual_CFLAGS = \
1864         $(AM_CFLAGS) \
1865         $(KMOD_CFLAGS)
1866
1867 test_rtnl_manual_LDADD = \
1868         libsystemd-internal.la \
1869         libsystemd-shared.la \
1870         $(KMOD_LIBS)
1871
1872 test_ellipsize_SOURCES = \
1873         src/test/test-ellipsize.c
1874
1875 test_ellipsize_LDADD = \
1876         libsystemd-shared.la
1877
1878 test_date_SOURCES = \
1879         src/test/test-date.c
1880
1881 test_date_LDADD = \
1882         libsystemd-shared.la
1883
1884 test_sleep_SOURCES = \
1885         src/test/test-sleep.c
1886
1887 test_sleep_LDADD = \
1888         libsystemd-core.la
1889
1890 test_replace_var_SOURCES = \
1891         src/test/test-replace-var.c
1892
1893 test_replace_var_LDADD = \
1894         libsystemd-shared.la
1895
1896 test_calendarspec_SOURCES = \
1897         src/test/test-calendarspec.c
1898
1899 test_calendarspec_LDADD = \
1900         libsystemd-shared.la
1901
1902 test_strip_tab_ansi_SOURCES = \
1903         src/test/test-strip-tab-ansi.c
1904
1905 test_strip_tab_ansi_LDADD = \
1906         libsystemd-shared.la
1907
1908 test_daemon_SOURCES = \
1909         src/test/test-daemon.c
1910
1911 test_daemon_LDADD = \
1912         libsystemd-internal.la \
1913         libsystemd-shared.la
1914
1915 test_cgroup_SOURCES = \
1916         src/test/test-cgroup.c
1917
1918 test_cgroup_LDADD = \
1919         libsystemd-label.la \
1920         libsystemd-shared.la \
1921         libsystemd-internal.la
1922
1923 test_cgroup_mask_SOURCES = \
1924         src/test/test-cgroup-mask.c
1925
1926 test_cgroup_mask_CPPFLAGS = \
1927         $(AM_CPPFLAGS)
1928
1929 test_cgroup_mask_CFLAGS = \
1930         $(AM_CFLAGS) \
1931         $(SECCOMP_CFLAGS)
1932
1933 test_cgroup_mask_LDADD = \
1934         libsystemd-core.la \
1935         $(RT_LIBS)
1936
1937 test_cgroup_util_SOURCES = \
1938         src/test/test-cgroup-util.c
1939
1940 test_cgroup_util_LDADD = \
1941         libsystemd-label.la \
1942         libsystemd-internal.la \
1943         libsystemd-shared.la
1944
1945 test_env_replace_SOURCES = \
1946         src/test/test-env-replace.c
1947
1948 test_env_replace_LDADD = \
1949         libsystemd-shared.la
1950
1951 test_strbuf_SOURCES = \
1952         src/test/test-strbuf.c
1953
1954 test_strbuf_LDADD = \
1955         libsystemd-shared.la
1956
1957 test_strv_SOURCES = \
1958         src/test/test-strv.c
1959
1960 test_strv_LDADD = \
1961         libsystemd-units.la \
1962         libsystemd-internal.la \
1963         libsystemd-shared.la
1964
1965 test_path_util_SOURCES = \
1966         src/test/test-path-util.c
1967
1968 test_path_util_LDADD = \
1969         libsystemd-shared.la
1970
1971 test_path_SOURCES = \
1972         src/test/test-path.c
1973
1974 test_path_CFLAGS = \
1975         $(AM_CFLAGS)
1976
1977 test_path_LDADD = \
1978         libsystemd-core.la
1979
1980 test_execute_SOURCES = \
1981         src/test/test-execute.c
1982
1983 test_execute_CFLAGS = \
1984         $(AM_CFLAGS)
1985
1986 test_execute_LDADD = \
1987         libsystemd-core.la
1988
1989 test_strxcpyx_SOURCES = \
1990         src/test/test-strxcpyx.c
1991
1992 test_strxcpyx_LDADD = \
1993         libsystemd-shared.la
1994
1995 test_install_SOURCES = \
1996         src/test/test-install.c
1997
1998 test_install_LDADD = \
1999         libsystemd-units.la \
2000         libsystemd-label.la \
2001         libsystemd-shared.la \
2002         libsystemd-internal.la
2003
2004 test_watchdog_SOURCES = \
2005         src/test/test-watchdog.c
2006
2007 test_watchdog_LDADD = \
2008         libsystemd-shared.la
2009
2010 test_sched_prio_SOURCES = \
2011         src/test/test-sched-prio.c
2012
2013 test_sched_prio_CPPFLAGS = \
2014         $(AM_CPPFLAGS)
2015
2016 test_sched_prio_CFLAGS = \
2017         $(AM_CFLAGS) \
2018         $(SECCOMP_CFLAGS)
2019
2020 test_sched_prio_LDADD = \
2021         libsystemd-core.la \
2022         $(RT_LIBS)
2023
2024 test_conf_files_SOURCES = \
2025         src/test/test-conf-files.c
2026
2027 test_conf_files_LDADD = \
2028         libsystemd-shared.la
2029
2030 test_bus_policy_SOURCES = \
2031         src/bus-proxyd/test-bus-xml-policy.c
2032
2033 test_bus_policy_LDADD = \
2034         libsystemd-proxy.la \
2035         libsystemd-internal.la \
2036         libsystemd-shared.la
2037
2038 # ------------------------------------------------------------------------------
2039 ## .PHONY so it always rebuilds it
2040 .PHONY: coverage lcov-run lcov-report coverage-sync
2041
2042 # run lcov from scratch, always
2043 coverage: all
2044         $(MAKE) lcov-run
2045         $(MAKE) lcov-report
2046
2047 coverage_dir = coverage
2048 coverage_opts = --base-directory $(srcdir) --directory $(builddir) --rc 'geninfo_adjust_src_path=$(abspath $(srcdir))=>$(abspath $(builddir))'
2049
2050 if ENABLE_COVERAGE
2051 # reset run coverage tests
2052 lcov-run:
2053         @rm -rf $(coverage_dir)
2054         lcov $(coverage_opts) --zerocounters
2055         -$(MAKE) check
2056
2057 # generate report based on current coverage data
2058 lcov-report:
2059         $(MKDIR_P) $(coverage_dir)
2060         lcov $(coverage_opts) --compat-libtool --capture --no-external \
2061                 | sed 's|$(abspath $(builddir))|$(abspath $(srcdir))|' > $(coverage_dir)/.lcov.info
2062         lcov --remove $(coverage_dir)/.lcov.info --output-file $(coverage_dir)/.lcov-clean.info 'test-*'
2063         genhtml -t "systemd test coverage" -o $(coverage_dir) $(coverage_dir)/.lcov-clean.info
2064         @echo "Coverage report generated in $(abs_builddir)/$(coverage_dir)/index.html"
2065
2066 # lcov doesn't work properly with vpath builds, make sure that bad
2067 # output is not uploaded by mistake.
2068 coverage-sync: coverage
2069         test "$(builddir)" = "$(srcdir)"
2070         rsync -rlv --delete --omit-dir-times coverage/ $(www_target)/coverage
2071
2072 else
2073 lcov-run lcov-report:
2074         echo "Need to reconfigure with --enable-coverage"
2075 endif
2076
2077 # ------------------------------------------------------------------------------
2078 systemd_analyze_SOURCES = \
2079         src/analyze/analyze.c \
2080         src/analyze/analyze-verify.c \
2081         src/analyze/analyze-verify.h
2082
2083 systemd_verify_CFLAGS = \
2084         $(AM_CFLAGS) \
2085         $(SECCOMP_CFLAGS)
2086
2087 systemd_analyze_LDADD = \
2088         libsystemd-core.la \
2089         libsystemd-internal.la \
2090         libsystemd-shared.la \
2091         $(RT_LIBS)
2092
2093 # ------------------------------------------------------------------------------
2094 systemd_initctl_SOURCES = \
2095         src/initctl/initctl.c
2096
2097 systemd_initctl_LDADD = \
2098         libsystemd-internal.la \
2099         libsystemd-shared.la
2100
2101 # ------------------------------------------------------------------------------
2102 systemd_update_utmp_SOURCES = \
2103         src/update-utmp/update-utmp.c
2104
2105 systemd_update_utmp_CFLAGS = \
2106         $(AM_CFLAGS) \
2107         $(AUDIT_CFLAGS)
2108
2109 systemd_update_utmp_LDADD = \
2110         libsystemd-internal.la \
2111         libsystemd-shared.la \
2112         $(AUDIT_LIBS)
2113
2114 # ------------------------------------------------------------------------------
2115 systemd_update_done_SOURCES = \
2116         src/update-done/update-done.c
2117
2118 systemd_update_done_LDADD = \
2119         libsystemd-internal.la \
2120         libsystemd-label.la \
2121         libsystemd-shared.la
2122
2123 # ------------------------------------------------------------------------------
2124 systemd_shutdownd_SOURCES = \
2125         src/shutdownd/shutdownd.c
2126
2127 systemd_shutdownd_LDADD = \
2128         libsystemd-label.la \
2129         libsystemd-internal.la \
2130         libsystemd-shared.la
2131
2132 dist_doc_DATA += \
2133         src/systemd/sd-shutdown.h
2134
2135 # ------------------------------------------------------------------------------
2136 systemd_shutdown_SOURCES = \
2137         src/core/umount.c \
2138         src/core/umount.h \
2139         src/core/shutdown.c \
2140         src/core/mount-setup.c \
2141         src/core/mount-setup.h \
2142         src/core/killall.h \
2143         src/core/killall.c
2144
2145 systemd_shutdown_LDADD = \
2146         libsystemd-label.la \
2147         libudev-internal.la \
2148         libsystemd-shared.la
2149
2150 # ------------------------------------------------------------------------------
2151 if HAVE_KMOD
2152 systemd_modules_load_SOURCES = \
2153         src/modules-load/modules-load.c
2154
2155 systemd_modules_load_CFLAGS = \
2156         $(AM_CFLAGS) \
2157         $(KMOD_CFLAGS)
2158
2159 systemd_modules_load_LDADD = \
2160         libsystemd-shared.la \
2161         $(KMOD_LIBS)
2162
2163 rootlibexec_PROGRAMS += \
2164         systemd-modules-load
2165
2166 nodist_systemunit_DATA += \
2167         units/systemd-modules-load.service
2168
2169 SYSINIT_TARGET_WANTS += \
2170         systemd-modules-load.service
2171
2172 if ENABLE_TMPFILES
2173 nodist_systemunit_DATA += \
2174         units/kmod-static-nodes.service
2175
2176 SYSINIT_TARGET_WANTS += \
2177         kmod-static-nodes.service
2178 endif
2179 endif
2180
2181 EXTRA_DIST += \
2182         units/systemd-modules-load.service.in \
2183         units/kmod-static-nodes.service.in
2184
2185 # ------------------------------------------------------------------------------
2186 if ENABLE_TMPFILES
2187 systemd_tmpfiles_SOURCES = \
2188         src/tmpfiles/tmpfiles.c
2189
2190 systemd_tmpfiles_LDADD = \
2191         libsystemd-units.la \
2192         libsystemd-label.la \
2193         libsystemd-internal.la \
2194         libsystemd-shared.la
2195
2196 rootbin_PROGRAMS += \
2197         systemd-tmpfiles
2198
2199 dist_systemunit_DATA += \
2200         units/systemd-tmpfiles-clean.timer
2201
2202 nodist_systemunit_DATA += \
2203         units/systemd-tmpfiles-setup-dev.service \
2204         units/systemd-tmpfiles-setup.service \
2205         units/systemd-tmpfiles-clean.service
2206
2207 nodist_tmpfiles_DATA = \
2208         tmpfiles.d/etc.conf
2209
2210 dist_tmpfiles_DATA = \
2211         tmpfiles.d/systemd.conf \
2212         tmpfiles.d/systemd-nologin.conf \
2213         tmpfiles.d/tmp.conf \
2214         tmpfiles.d/x11.conf \
2215         tmpfiles.d/var.conf
2216
2217 if HAVE_SYSV_COMPAT
2218 dist_tmpfiles_DATA += \
2219         tmpfiles.d/legacy.conf
2220 endif
2221
2222 SYSINIT_TARGET_WANTS += \
2223         systemd-tmpfiles-setup-dev.service \
2224         systemd-tmpfiles-setup.service
2225
2226 dist_zshcompletion_DATA += \
2227         shell-completion/zsh/_systemd-tmpfiles
2228
2229 TIMERS_TARGET_WANTS += \
2230         systemd-tmpfiles-clean.timer
2231
2232 INSTALL_DIRS += \
2233         $(tmpfilesdir) \
2234         $(sysconfdir)/tmpfiles.d
2235 endif
2236
2237 EXTRA_DIST += \
2238         tmpfiles.d/etc.conf.m4 \
2239         units/systemd-tmpfiles-setup-dev.service.in \
2240         units/systemd-tmpfiles-setup.service.in \
2241         units/systemd-tmpfiles-clean.service.in
2242
2243 CLEANFILES += \
2244         tmpfiles.d/etc.conf
2245
2246 # ------------------------------------------------------------------------------
2247 if ENABLE_SYSUSERS
2248 systemd_sysusers_SOURCES = \
2249         src/sysusers/sysusers.c
2250
2251 systemd_sysusers_LDADD = \
2252         libsystemd-units.la \
2253         libsystemd-label.la \
2254         libsystemd-internal.la \
2255         libsystemd-shared.la
2256
2257 rootbin_PROGRAMS += \
2258         systemd-sysusers
2259
2260 nodist_systemunit_DATA += \
2261         units/systemd-sysusers.service
2262
2263 SYSINIT_TARGET_WANTS += \
2264         systemd-sysusers.service
2265
2266 dist_sysusers_DATA = \
2267         sysusers.d/systemd.conf
2268
2269 nodist_sysusers_DATA = \
2270         sysusers.d/basic.conf
2271
2272 EXTRA_DIST += \
2273         units/systemd-sysusers.service.in \
2274         sysusers.d/basic.conf.in
2275
2276 CLEANFILES += \
2277         sysusers.d/basic.conf
2278
2279 INSTALL_DIRS += \
2280         $(sysusersdir)
2281 endif
2282
2283 # ------------------------------------------------------------------------------
2284 dist_factory_etc_DATA = \
2285         factory/etc/nsswitch.conf
2286
2287 if HAVE_PAM
2288 dist_factory_pam_DATA = \
2289         factory/etc/pam.d/system-auth \
2290         factory/etc/pam.d/other
2291 endif
2292
2293 # ------------------------------------------------------------------------------
2294 if ENABLE_FIRSTBOOT
2295 systemd_firstboot_SOURCES = \
2296         src/firstboot/firstboot.c
2297
2298 systemd_firstboot_LDADD = \
2299         libsystemd-units.la \
2300         libsystemd-label.la \
2301         libsystemd-internal.la \
2302         libsystemd-shared.la \
2303         -lcrypt
2304
2305 rootbin_PROGRAMS += \
2306         systemd-firstboot
2307
2308 nodist_systemunit_DATA += \
2309         units/systemd-firstboot.service
2310
2311 EXTRA_DIST += \
2312         units/systemd-firstboot.service.in
2313
2314 SYSINIT_TARGET_WANTS += \
2315         systemd-firstboot.service
2316 endif
2317
2318 # ------------------------------------------------------------------------------
2319 systemd_machine_id_setup_SOURCES = \
2320         src/machine-id-setup/machine-id-setup-main.c \
2321         src/core/machine-id-setup.c \
2322         src/core/machine-id-setup.h
2323
2324 systemd_machine_id_setup_LDADD = \
2325         libsystemd-label.la \
2326         libsystemd-internal.la \
2327         libsystemd-shared.la
2328
2329 # ------------------------------------------------------------------------------
2330 systemd_sysctl_SOURCES = \
2331         src/sysctl/sysctl.c
2332
2333 systemd_sysctl_LDADD = \
2334         libsystemd-shared.la
2335
2336 # ------------------------------------------------------------------------------
2337 systemd_sleep_SOURCES = \
2338         src/sleep/sleep.c
2339
2340 systemd_sleep_LDADD = \
2341         libsystemd-shared.la
2342
2343 # ------------------------------------------------------------------------------
2344 systemd_fsck_SOURCES = \
2345         src/fsck/fsck.c
2346
2347 systemd_fsck_LDADD = \
2348         libsystemd-internal.la \
2349         libudev-internal.la \
2350         libsystemd-shared.la
2351
2352 # ------------------------------------------------------------------------------
2353 systemd_machine_id_commit_SOURCES = \
2354         src/machine-id-commit/machine-id-commit.c \
2355         src/core/machine-id-setup.c \
2356         src/core/machine-id-setup.h
2357
2358 systemd_machine_id_commit_LDADD = \
2359         libsystemd-label.la \
2360         libsystemd-internal.la \
2361         libsystemd-shared.la
2362
2363 SYSINIT_TARGET_WANTS += \
2364         systemd-machine-id-commit.service
2365
2366 # ------------------------------------------------------------------------------
2367 systemd_ac_power_SOURCES = \
2368         src/ac-power/ac-power.c
2369
2370 systemd_ac_power_LDADD = \
2371         libudev-internal.la \
2372         libsystemd-shared.la
2373
2374 # ------------------------------------------------------------------------------
2375 systemd_detect_virt_SOURCES = \
2376         src/detect-virt/detect-virt.c
2377
2378 systemd_detect_virt_LDADD = \
2379         libsystemd-shared.la
2380
2381 INSTALL_EXEC_HOOKS += \
2382         systemd-detect-virt-install-hook
2383
2384 # ------------------------------------------------------------------------------
2385 systemd_delta_SOURCES = \
2386         src/delta/delta.c
2387
2388 systemd_delta_LDADD = \
2389         libsystemd-shared.la
2390
2391 # ------------------------------------------------------------------------------
2392 systemd_getty_generator_SOURCES = \
2393         src/getty-generator/getty-generator.c
2394
2395 systemd_getty_generator_LDADD = \
2396         libsystemd-label.la \
2397         libsystemd-shared.la
2398
2399 # ------------------------------------------------------------------------------
2400 systemd_debug_generator_SOURCES = \
2401         src/debug-generator/debug-generator.c
2402
2403 systemd_debug_generator_LDADD = \
2404         libsystemd-label.la \
2405         libsystemd-shared.la
2406
2407 # ------------------------------------------------------------------------------
2408 systemd_fstab_generator_SOURCES = \
2409         src/fstab-generator/fstab-generator.c \
2410         src/core/mount-setup.c
2411
2412 systemd_fstab_generator_LDADD = \
2413         libsystemd-label.la \
2414         libsystemd-shared.la
2415
2416 # ------------------------------------------------------------------------------
2417 systemd_system_update_generator_SOURCES = \
2418         src/system-update-generator/system-update-generator.c
2419
2420 systemd_system_update_generator_LDADD = \
2421         libsystemd-label.la \
2422         libsystemd-shared.la
2423
2424 # ------------------------------------------------------------------------------
2425 if ENABLE_HIBERNATE
2426 systemgenerator_PROGRAMS += \
2427         systemd-hibernate-resume-generator
2428
2429 rootlibexec_PROGRAMS += \
2430         systemd-hibernate-resume
2431
2432 systemd_hibernate_resume_SOURCES = \
2433         src/hibernate-resume/hibernate-resume.c
2434
2435 systemd_hibernate_resume_LDADD = \
2436         libsystemd-internal.la \
2437         libsystemd-shared.la
2438
2439 systemd_hibernate_resume_generator_SOURCES = \
2440         src/hibernate-resume/hibernate-resume-generator.c
2441
2442 systemd_hibernate_resume_generator_LDADD = \
2443         libsystemd-label.la \
2444         libsystemd-shared.la
2445
2446 EXTRA_DIST += \
2447         units/systemd-hibernate.service.in \
2448         units/systemd-hibernate-resume@.service.in \
2449         units/systemd-hybrid-sleep.service.in
2450
2451 dist_systemunit_DATA += \
2452         units/hibernate.target \
2453         units/hybrid-sleep.target
2454
2455 nodist_systemunit_DATA += \
2456         units/systemd-hibernate.service \
2457         units/systemd-hibernate-resume@.service \
2458         units/systemd-hybrid-sleep.service
2459 endif
2460
2461 # ------------------------------------------------------------------------------
2462 if ENABLE_EFI
2463 systemgenerator_PROGRAMS +=  \
2464         systemd-efi-boot-generator
2465
2466 systemd_efi_boot_generator_SOURCES = \
2467         src/efi-boot-generator/efi-boot-generator.c
2468
2469 systemd_efi_boot_generator_LDADD = \
2470         libsystemd-label.la \
2471         libsystemd-shared.la
2472
2473 # ------------------------------------------------------------------------------
2474 bootctl_SOURCES = \
2475         src/boot/boot.h \
2476         src/boot/boot-loader.h \
2477         src/boot/bootctl.c \
2478         src/boot/boot-loader.c \
2479         src/boot/boot-efi.c
2480
2481 bootctl_LDADD = \
2482         libsystemd-shared.la \
2483         libsystemd-internal.la
2484
2485 bin_PROGRAMS += \
2486         bootctl
2487
2488 dist_bashcompletion_DATA += \
2489         shell-completion/bash/bootctl
2490
2491 dist_zshcompletion_DATA += \
2492         shell-completion/zsh/_bootctl
2493
2494 endif
2495
2496 # ------------------------------------------------------------------------------
2497 if HAVE_BLKID
2498 systemgenerator_PROGRAMS +=  \
2499         systemd-gpt-auto-generator
2500
2501 systemd_gpt_auto_generator_SOURCES = \
2502         src/gpt-auto-generator/gpt-auto-generator.c \
2503         src/shared/blkid-util.h
2504
2505 systemd_gpt_auto_generator_LDADD = \
2506         libsystemd-label.la \
2507         libsystemd-internal.la \
2508         libudev-internal.la \
2509         libsystemd-shared.la \
2510         $(BLKID_LIBS)
2511
2512 systemd_gpt_auto_generator_CFLAGS = \
2513         $(AM_CFLAGS) \
2514         $(BLKID_CFLAGS)
2515 endif
2516
2517 # ------------------------------------------------------------------------------
2518 if ENABLE_KDBUS
2519 systemgenerator_PROGRAMS +=  \
2520         systemd-dbus1-generator
2521
2522 systemd_dbus1_generator_SOURCES = \
2523         src/dbus1-generator/dbus1-generator.c
2524
2525 systemd_dbus1_generator_LDADD = \
2526         libsystemd-label.la \
2527         libsystemd-internal.la \
2528         libsystemd-shared.la
2529
2530 dbus1-generator-install-hook:
2531         $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(usergeneratordir)
2532         $(AM_V_RM)rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2533         $(AM_V_LN)$(LN_S) --relative -f $(DESTDIR)$(systemgeneratordir)/systemd-dbus1-generator $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2534
2535 dbus1-generator-uninstall-hook:
2536         rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2537
2538 dist_xinitrc_SCRIPTS = \
2539         xorg/50-systemd-user.sh
2540
2541 INSTALL_EXEC_HOOKS += dbus1-generator-install-hook
2542 UNINSTALL_EXEC_HOOKS += dbus1-generator-uninstall-hook
2543 endif
2544
2545 # ------------------------------------------------------------------------------
2546 systemd_sysv_generator_SOURCES = \
2547         src/sysv-generator/sysv-generator.c
2548
2549 systemd_sysv_generator_LDADD = \
2550         libsystemd-core.la \
2551         libsystemd-label.la \
2552         libsystemd-shared.la
2553
2554 # ------------------------------------------------------------------------------
2555 systemd_rc_local_generator_SOURCES = \
2556         src/rc-local-generator/rc-local-generator.c
2557
2558 systemd_rc_local_generator_LDADD = \
2559         libsystemd-label.la \
2560         libsystemd-shared.la
2561
2562 # ------------------------------------------------------------------------------
2563 systemd_remount_fs_SOURCES = \
2564         src/remount-fs/remount-fs.c \
2565         src/core/mount-setup.c \
2566         src/core/mount-setup.h
2567
2568 systemd_remount_fs_LDADD = \
2569         libsystemd-label.la \
2570         libsystemd-shared.la
2571
2572 # ------------------------------------------------------------------------------
2573 systemd_cgroups_agent_SOURCES = \
2574         src/cgroups-agent/cgroups-agent.c
2575
2576 systemd_cgroups_agent_LDADD = \
2577         libsystemd-internal.la \
2578         libsystemd-shared.la
2579
2580 # ------------------------------------------------------------------------------
2581 systemd_escape_SOURCES = \
2582         src/escape/escape.c
2583
2584 systemd_escape_LDADD = \
2585         libsystemd-shared.la
2586
2587 # -----------------------------------------------------------------------------
2588 systemctl_SOURCES = \
2589         src/systemctl/systemctl.c
2590
2591 systemctl_LDADD = \
2592         libsystemd-units.la \
2593         libsystemd-label.la \
2594         libsystemd-internal.la \
2595         libsystemd-logs.la \
2596         libsystemd-journal-internal.la \
2597         libsystemd-shared.la
2598
2599 # ------------------------------------------------------------------------------
2600 systemd_notify_SOURCES = \
2601         src/notify/notify.c
2602
2603 systemd_notify_LDADD = \
2604         libsystemd-internal.la \
2605         libsystemd-shared.la
2606
2607 # ------------------------------------------------------------------------------
2608 systemd_path_SOURCES = \
2609         src/path/path.c
2610
2611 systemd_path_LDADD = \
2612         libsystemd-internal.la \
2613         libsystemd-shared.la
2614
2615 # ------------------------------------------------------------------------------
2616 systemd_ask_password_SOURCES = \
2617         src/ask-password/ask-password.c
2618
2619 systemd_ask_password_LDADD = \
2620         libsystemd-label.la \
2621         libsystemd-shared.la
2622
2623 # ------------------------------------------------------------------------------
2624 systemd_reply_password_SOURCES = \
2625         src/reply-password/reply-password.c
2626
2627 systemd_reply_password_LDADD = \
2628         libsystemd-shared.la
2629
2630 # ------------------------------------------------------------------------------
2631 systemd_cgls_SOURCES = \
2632         src/cgls/cgls.c
2633
2634 systemd_cgls_LDADD = \
2635         libsystemd-internal.la \
2636         libsystemd-shared.la
2637
2638 # ------------------------------------------------------------------------------
2639 systemd_cgtop_SOURCES = \
2640         src/cgtop/cgtop.c
2641
2642 systemd_cgtop_LDADD = \
2643         libsystemd-shared.la
2644
2645 # ------------------------------------------------------------------------------
2646 systemd_nspawn_SOURCES = \
2647         src/nspawn/nspawn.c \
2648         src/core/mount-setup.c \
2649         src/core/mount-setup.h \
2650         src/core/loopback-setup.c \
2651         src/core/loopback-setup.h
2652
2653 systemd_nspawn_CFLAGS = \
2654         $(AM_CFLAGS) \
2655         $(SECCOMP_CFLAGS) \
2656         $(BLKID_CFLAGS)
2657
2658 systemd_nspawn_LDADD = \
2659         libsystemd-label.la \
2660         libsystemd-internal.la \
2661         libudev-internal.la \
2662         libsystemd-shared.la \
2663         $(BLKID_LIBS)
2664
2665 if HAVE_SECCOMP
2666 systemd_nspawn_LDADD += \
2667         libsystemd-seccomp.la \
2668         $(SECCOMP_LIBS)
2669 endif
2670
2671 if HAVE_LIBIPTC
2672 systemd_nspawn_LDADD += \
2673         libsystemd-fw.la
2674 endif
2675
2676 # ------------------------------------------------------------------------------
2677 systemd_run_SOURCES = \
2678         src/run/run.c
2679
2680 systemd_run_LDADD = \
2681         libsystemd-label.la \
2682         libsystemd-internal.la \
2683         libsystemd-shared.la
2684
2685 # ------------------------------------------------------------------------------
2686 noinst_LTLIBRARIES += \
2687         libsystemd-proxy.la
2688
2689 libsystemd_proxy_la_SOURCES = \
2690         src/bus-proxyd/bus-xml-policy.c \
2691         src/bus-proxyd/bus-xml-policy.h \
2692         src/bus-proxyd/driver.c \
2693         src/bus-proxyd/driver.h \
2694         src/bus-proxyd/proxy.c \
2695         src/bus-proxyd/proxy.h \
2696         src/bus-proxyd/synthesize.c \
2697         src/bus-proxyd/synthesize.h
2698
2699 libsystemd_proxy_la_CFLAGS = \
2700         $(AM_CFLAGS) \
2701         -pthread
2702
2703 libsystemd_proxy_la_LIBADD = \
2704         libsystemd-internal.la \
2705         libsystemd-shared.la
2706
2707 systemd_bus_proxyd_SOURCES = \
2708         src/bus-proxyd/bus-proxyd.c
2709
2710 systemd_bus_proxyd_CFLAGS = \
2711         $(AM_CFLAGS) \
2712         -pthread
2713
2714 systemd_bus_proxyd_LDADD = \
2715         libsystemd-proxy.la \
2716         libsystemd-internal.la \
2717         libsystemd-shared.la
2718
2719 systemd_stdio_bridge_SOURCES = \
2720         src/bus-proxyd/stdio-bridge.c
2721
2722 systemd_stdio_bridge_LDADD = \
2723         libsystemd-proxy.la \
2724         libsystemd-internal.la \
2725         libsystemd-shared.la
2726
2727 if ENABLE_KDBUS
2728 nodist_systemunit_DATA += \
2729         units/systemd-bus-proxyd.service
2730
2731 dist_systemunit_DATA += \
2732         units/systemd-bus-proxyd.socket
2733
2734 nodist_userunit_DATA += \
2735         units/user/systemd-bus-proxyd.service
2736
2737 dist_userunit_DATA += \
2738         units/user/systemd-bus-proxyd.socket
2739 endif
2740
2741 EXTRA_DIST += \
2742         units/systemd-bus-proxyd.service.m4.in \
2743         units/user/systemd-bus-proxyd.service.in
2744
2745 CLEANFILES += \
2746         units/systemd-bus-proxyd.service.m4
2747
2748 if HAVE_SMACK
2749 bus-proxyd-set-cap-hook:
2750         -$(SETCAP) cap_mac_admin+ei $(DESTDIR)$(rootlibexecdir)/systemd-bus-proxyd
2751
2752 INSTALL_EXEC_HOOKS += bus-proxyd-set-cap-hook
2753 endif
2754
2755 # ------------------------------------------------------------------------------
2756 systemd_tty_ask_password_agent_SOURCES = \
2757         src/tty-ask-password-agent/tty-ask-password-agent.c
2758
2759 systemd_tty_ask_password_agent_LDADD = \
2760         libsystemd-label.la \
2761         libsystemd-shared.la
2762
2763 # ------------------------------------------------------------------------------
2764 libsystemd_internal_la_SOURCES = \
2765         src/systemd/sd-bus.h \
2766         src/systemd/sd-bus-protocol.h \
2767         src/systemd/sd-bus-vtable.h \
2768         src/systemd/sd-utf8.h \
2769         src/systemd/sd-event.h \
2770         src/systemd/sd-rtnl.h \
2771         src/systemd/sd-resolve.h \
2772         src/systemd/sd-login.h \
2773         src/systemd/sd-id128.h \
2774         src/systemd/sd-daemon.h \
2775         src/systemd/sd-path.h \
2776         src/systemd/sd-network.h \
2777         src/systemd/sd-hwdb.h \
2778         src/libsystemd/sd-bus/sd-bus.c \
2779         src/libsystemd/sd-bus/bus-control.c \
2780         src/libsystemd/sd-bus/bus-control.h \
2781         src/libsystemd/sd-bus/bus-error.c \
2782         src/libsystemd/sd-bus/bus-error.h \
2783         src/libsystemd/sd-bus/bus-common-errors.h \
2784         src/libsystemd/sd-bus/bus-common-errors.c \
2785         src/libsystemd/sd-bus/bus-internal.c \
2786         src/libsystemd/sd-bus/bus-internal.h \
2787         src/libsystemd/sd-bus/bus-socket.c \
2788         src/libsystemd/sd-bus/bus-socket.h \
2789         src/libsystemd/sd-bus/bus-kernel.c \
2790         src/libsystemd/sd-bus/bus-kernel.h \
2791         src/libsystemd/sd-bus/bus-container.c \
2792         src/libsystemd/sd-bus/bus-container.h \
2793         src/libsystemd/sd-bus/bus-message.c \
2794         src/libsystemd/sd-bus/bus-message.h \
2795         src/libsystemd/sd-bus/bus-creds.c \
2796         src/libsystemd/sd-bus/bus-creds.h \
2797         src/libsystemd/sd-bus/bus-signature.c \
2798         src/libsystemd/sd-bus/bus-signature.h \
2799         src/libsystemd/sd-bus/bus-type.c \
2800         src/libsystemd/sd-bus/bus-type.h \
2801         src/libsystemd/sd-bus/bus-match.c \
2802         src/libsystemd/sd-bus/bus-match.h \
2803         src/libsystemd/sd-bus/bus-bloom.c \
2804         src/libsystemd/sd-bus/bus-bloom.h \
2805         src/libsystemd/sd-bus/bus-introspect.c \
2806         src/libsystemd/sd-bus/bus-introspect.h \
2807         src/libsystemd/sd-bus/bus-objects.c \
2808         src/libsystemd/sd-bus/bus-objects.h \
2809         src/libsystemd/sd-bus/bus-gvariant.c \
2810         src/libsystemd/sd-bus/bus-gvariant.h \
2811         src/libsystemd/sd-bus/bus-convenience.c \
2812         src/libsystemd/sd-bus/bus-track.c \
2813         src/libsystemd/sd-bus/bus-track.h \
2814         src/libsystemd/sd-bus/bus-util.c \
2815         src/libsystemd/sd-bus/bus-util.h \
2816         src/libsystemd/sd-bus/bus-slot.c \
2817         src/libsystemd/sd-bus/bus-slot.h \
2818         src/libsystemd/sd-bus/bus-protocol.h \
2819         src/libsystemd/sd-bus/kdbus.h \
2820         src/libsystemd/sd-utf8/sd-utf8.c \
2821         src/libsystemd/sd-event/sd-event.c \
2822         src/libsystemd/sd-event/event-util.h \
2823         src/libsystemd/sd-rtnl/sd-rtnl.c \
2824         src/libsystemd/sd-rtnl/rtnl-internal.h \
2825         src/libsystemd/sd-rtnl/rtnl-message.c \
2826         src/libsystemd/sd-rtnl/rtnl-types.h \
2827         src/libsystemd/sd-rtnl/rtnl-types.c \
2828         src/libsystemd/sd-rtnl/rtnl-util.h \
2829         src/libsystemd/sd-rtnl/rtnl-util.c \
2830         src/libsystemd/sd-rtnl/local-addresses.h \
2831         src/libsystemd/sd-rtnl/local-addresses.c \
2832         src/libsystemd/sd-id128/sd-id128.c \
2833         src/libsystemd/sd-daemon/sd-daemon.c \
2834         src/libsystemd/sd-login/sd-login.c \
2835         src/libsystemd/sd-path/sd-path.c \
2836         src/libsystemd/sd-network/sd-network.c \
2837         src/libsystemd/sd-network/network-util.h \
2838         src/libsystemd/sd-network/network-util.c \
2839         src/libsystemd/sd-hwdb/sd-hwdb.c \
2840         src/libsystemd/sd-hwdb/hwdb-util.h \
2841         src/libsystemd/sd-hwdb/hwdb-internal.h
2842
2843 nodist_libsystemd_internal_la_SOURCES = \
2844         src/libsystemd/libsystemd.sym
2845
2846 libsystemd_internal_la_CFLAGS = \
2847         $(AM_CFLAGS) \
2848         -pthread
2849
2850 libsystemd_internal_la_LIBADD = \
2851         $(RT_LIBS)
2852
2853 libsystemd_resolve_la_SOURCES = \
2854         src/libsystemd/sd-resolve/sd-resolve.c \
2855         src/libsystemd/sd-resolve/resolve-util.h
2856
2857 libsystemd_resolve_la_CFLAGS = \
2858         $(AM_CFLAGS) \
2859         -pthread
2860
2861 libsystemd_resolve_la_LIBADD = \
2862         -lresolv
2863
2864 noinst_LTLIBRARIES += \
2865         libsystemd-internal.la \
2866         libsystemd-resolve.la
2867
2868 libsystemd_dump_la_SOURCES = \
2869         src/libsystemd/sd-bus/bus-dump.c \
2870         src/libsystemd/sd-bus/bus-dump.h
2871
2872 noinst_LTLIBRARIES += \
2873         libsystemd-dump.la
2874
2875 EXTRA_DIST += \
2876         src/libsystemd/libsystemd.sym.m4 \
2877         src/libsystemd/libsystemd.pc.in \
2878         src/libsystemd/sd-bus/DIFFERENCES \
2879         src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
2880
2881 CLEANFILES += \
2882         src/libsystemd/libsystemd.sym
2883
2884 BUILT_SOURCES += \
2885         src/libsystemd/libsystemd.sym
2886
2887 libsystemd_la_SOURCES = \
2888         $(libsystemd_internal_la_SOURCES) \
2889         $(libsystemd_resolve_la_SOURCES) \
2890         $(libsystemd_journal_internal_la_SOURCES)
2891
2892 nodist_libsystemd_la_SOURCES = \
2893         $(nodist_libsystemd_internal_la_SOURCES)
2894
2895 libsystemd_la_CFLAGS = \
2896         $(libsystemd_internal_la_CFLAGS) \
2897         $(libsystemd_resolve_la_CFLAGS) \
2898         $(libsystemd_journal_internal_la_CFLAGS)
2899
2900 libsystemd_la_LDFLAGS = \
2901         $(AM_LDFLAGS) \
2902         -version-info $(LIBSYSTEMD_CURRENT):$(LIBSYSTEMD_REVISION):$(LIBSYSTEMD_AGE) \
2903         -Wl,--version-script=$(top_builddir)/src/libsystemd/libsystemd.sym
2904
2905 libsystemd_la_LIBADD = \
2906         libsystemd-shared.la \
2907         $(libsystemd_internal_la_LIBADD) \
2908         $(libsystemd_journal_internal_la_LIBADD) \
2909         $(libsystemd_resolve_la_LIBADD)
2910
2911 libsystemd-install-hook:
2912         libname=libsystemd.so && $(move-to-rootlibdir)
2913
2914 libsystemd-uninstall-hook:
2915         rm -f $(DESTDIR)$(rootlibdir)/libsystemd.so*
2916
2917 INSTALL_EXEC_HOOKS += libsystemd-install-hook
2918 UNINSTALL_EXEC_HOOKS += libsystemd-uninstall-hook
2919
2920 pkgconfiglib_DATA += \
2921         src/libsystemd/libsystemd.pc
2922
2923 pkginclude_HEADERS += \
2924         src/systemd/sd-login.h \
2925         src/systemd/sd-id128.h \
2926         src/systemd/sd-daemon.h
2927
2928 if ENABLE_KDBUS
2929 pkginclude_HEADERS += \
2930         src/systemd/sd-bus.h \
2931         src/systemd/sd-bus-protocol.h \
2932         src/systemd/sd-bus-vtable.h \
2933         src/systemd/sd-utf8.h \
2934         src/systemd/sd-event.h \
2935         src/systemd/sd-rtnl.h \
2936         src/systemd/sd-resolve.h \
2937         src/systemd/sd-path.h
2938 endif
2939
2940 lib_LTLIBRARIES += \
2941         libsystemd.la
2942
2943 tests += \
2944         test-bus-marshal \
2945         test-bus-signature \
2946         test-bus-chat \
2947         test-bus-cleanup \
2948         test-bus-server \
2949         test-bus-match \
2950         test-bus-kernel \
2951         test-bus-kernel-bloom \
2952         test-bus-kernel-benchmark \
2953         test-bus-zero-copy \
2954         test-bus-introspect \
2955         test-bus-objects \
2956         test-bus-error \
2957         test-bus-creds \
2958         test-bus-gvariant \
2959         test-event \
2960         test-rtnl \
2961         test-local-addresses \
2962         test-resolve
2963
2964 bin_PROGRAMS += \
2965         busctl
2966
2967 test_bus_marshal_SOURCES = \
2968         src/libsystemd/sd-bus/test-bus-marshal.c
2969
2970 test_bus_marshal_LDADD = \
2971         libsystemd-dump.la \
2972         libsystemd-internal.la \
2973         libsystemd-shared.la \
2974         $(GLIB_LIBS) \
2975         $(DBUS_LIBS)
2976
2977 test_bus_marshal_CFLAGS = \
2978         $(AM_CFLAGS) \
2979         $(GLIB_CFLAGS) \
2980         $(DBUS_CFLAGS)
2981
2982 test_bus_signature_SOURCES = \
2983         src/libsystemd/sd-bus/test-bus-signature.c
2984
2985 test_bus_signature_LDADD = \
2986         libsystemd-internal.la \
2987         libsystemd-shared.la
2988
2989 test_bus_chat_SOURCES = \
2990         src/libsystemd/sd-bus/test-bus-chat.c
2991
2992 test_bus_chat_CFLAGS = \
2993         $(AM_CFLAGS) \
2994         -pthread
2995
2996 test_bus_chat_LDADD = \
2997         libsystemd-internal.la \
2998         libsystemd-shared.la
2999
3000 test_bus_cleanup_SOURCES = \
3001         src/libsystemd/sd-bus/test-bus-cleanup.c
3002
3003 test_bus_cleanup_CFLAGS = \
3004         $(AM_CFLAGS) \
3005         $(SECCOMP_CFLAGS)
3006
3007 test_bus_cleanup_LDADD = \
3008         libsystemd-internal.la \
3009         libsystemd-shared.la
3010
3011 test_bus_server_SOURCES = \
3012         src/libsystemd/sd-bus/test-bus-server.c
3013
3014 test_bus_server_CFLAGS = \
3015         $(AM_CFLAGS) \
3016         -pthread
3017
3018 test_bus_server_LDADD = \
3019         libsystemd-internal.la \
3020         libsystemd-shared.la
3021
3022 test_bus_objects_SOURCES = \
3023         src/libsystemd/sd-bus/test-bus-objects.c
3024
3025 test_bus_objects_CFLAGS = \
3026         $(AM_CFLAGS) \
3027         -pthread
3028
3029 test_bus_objects_LDADD = \
3030         libsystemd-dump.la \
3031         libsystemd-internal.la \
3032         libsystemd-shared.la
3033
3034 test_bus_error_SOURCES = \
3035         src/libsystemd/sd-bus/test-bus-error.c
3036
3037 test_bus_error_LDADD = \
3038         libsystemd-internal.la \
3039         libsystemd-shared.la
3040
3041 test_bus_gvariant_SOURCES = \
3042         src/libsystemd/sd-bus/test-bus-gvariant.c
3043
3044 test_bus_gvariant_LDADD = \
3045         libsystemd-dump.la \
3046         libsystemd-internal.la \
3047         libsystemd-shared.la \
3048         $(GLIB_LIBS)
3049
3050 test_bus_gvariant_CFLAGS = \
3051         $(AM_CFLAGS) \
3052         $(GLIB_CFLAGS)
3053
3054 test_bus_creds_SOURCES = \
3055         src/libsystemd/sd-bus/test-bus-creds.c
3056
3057 test_bus_creds_LDADD = \
3058         libsystemd-dump.la \
3059         libsystemd-internal.la \
3060         libsystemd-shared.la
3061
3062 test_bus_match_SOURCES = \
3063         src/libsystemd/sd-bus/test-bus-match.c
3064
3065 test_bus_match_LDADD = \
3066         libsystemd-internal.la \
3067         libsystemd-shared.la
3068
3069 test_bus_kernel_SOURCES = \
3070         src/libsystemd/sd-bus/test-bus-kernel.c
3071
3072 test_bus_kernel_LDADD = \
3073         libsystemd-dump.la \
3074         libsystemd-internal.la \
3075         libsystemd-shared.la
3076
3077 test_bus_kernel_bloom_SOURCES = \
3078         src/libsystemd/sd-bus/test-bus-kernel-bloom.c
3079
3080 test_bus_kernel_bloom_LDADD = \
3081         libsystemd-internal.la \
3082         libsystemd-shared.la
3083
3084 test_bus_kernel_benchmark_SOURCES = \
3085         src/libsystemd/sd-bus/test-bus-kernel-benchmark.c
3086
3087 test_bus_kernel_benchmark_LDADD = \
3088         libsystemd-internal.la \
3089         libsystemd-shared.la
3090
3091 test_bus_zero_copy_SOURCES = \
3092         src/libsystemd/sd-bus/test-bus-zero-copy.c
3093
3094 test_bus_zero_copy_LDADD = \
3095         libsystemd-dump.la \
3096         libsystemd-internal.la \
3097         libsystemd-shared.la
3098
3099 test_bus_introspect_SOURCES = \
3100         src/libsystemd/sd-bus/test-bus-introspect.c
3101
3102 test_bus_introspect_LDADD = \
3103         libsystemd-internal.la \
3104         libsystemd-shared.la
3105
3106 test_event_SOURCES = \
3107         src/libsystemd/sd-event/test-event.c
3108
3109 test_event_LDADD = \
3110         libsystemd-internal.la \
3111         libsystemd-shared.la
3112
3113 test_rtnl_SOURCES = \
3114         src/libsystemd/sd-rtnl/test-rtnl.c
3115
3116 test_rtnl_LDADD = \
3117         libsystemd-internal.la \
3118         libsystemd-shared.la
3119
3120 test_local_addresses_SOURCES = \
3121         src/libsystemd/sd-rtnl/test-local-addresses.c
3122
3123 test_local_addresses_LDADD = \
3124         libsystemd-internal.la \
3125         libsystemd-shared.la
3126
3127 test_resolve_SOURCES = \
3128         src/libsystemd/sd-resolve/test-resolve.c
3129
3130 test_resolve_LDADD = \
3131         libsystemd-resolve.la \
3132         libsystemd-internal.la \
3133         libsystemd-shared.la
3134
3135 test_resolve_CFLAGS = \
3136         $(AM_CFLAGS) \
3137         -pthread
3138
3139 busctl_SOURCES = \
3140         src/libsystemd/sd-bus/busctl.c \
3141         src/libsystemd/sd-bus/busctl-introspect.c \
3142         src/libsystemd/sd-bus/busctl-introspect.h
3143
3144 busctl_LDADD = \
3145         libsystemd-dump.la \
3146         libsystemd-internal.la \
3147         libsystemd-shared.la
3148
3149 # ------------------------------------------------------------------------------
3150 noinst_LTLIBRARIES += \
3151         libsystemd-network.la
3152
3153 libsystemd_network_la_CFLAGS = \
3154         $(AM_CFLAGS) \
3155         $(KMOD_CFLAGS)
3156
3157 libsystemd_network_la_SOURCES = \
3158         src/systemd/sd-dhcp-client.h \
3159         src/systemd/sd-dhcp-server.h \
3160         src/systemd/sd-dhcp-lease.h \
3161         src/systemd/sd-ipv4ll.h \
3162         src/systemd/sd-icmp6-nd.h \
3163         src/systemd/sd-dhcp6-client.h \
3164         src/systemd/sd-dhcp6-lease.h \
3165         src/systemd/sd-pppoe.h \
3166         src/systemd/sd-lldp.h \
3167         src/libsystemd-network/sd-dhcp-client.c \
3168         src/libsystemd-network/sd-dhcp-server.c \
3169         src/libsystemd-network/dhcp-network.c \
3170         src/libsystemd-network/dhcp-option.c \
3171         src/libsystemd-network/dhcp-packet.c \
3172         src/libsystemd-network/dhcp-internal.h \
3173         src/libsystemd-network/dhcp-server-internal.h \
3174         src/libsystemd-network/dhcp-protocol.h \
3175         src/libsystemd-network/dhcp-lease-internal.h \
3176         src/libsystemd-network/sd-dhcp-lease.c \
3177         src/libsystemd-network/sd-ipv4ll.c \
3178         src/libsystemd-network/ipv4ll-network.c \
3179         src/libsystemd-network/ipv4ll-packet.c \
3180         src/libsystemd-network/ipv4ll-internal.h \
3181         src/libsystemd-network/sd-pppoe.c \
3182         src/libsystemd-network/network-internal.c \
3183         src/libsystemd-network/network-internal.h \
3184         src/libsystemd-network/sd-icmp6-nd.c \
3185         src/libsystemd-network/sd-dhcp6-client.c \
3186         src/libsystemd-network/dhcp6-internal.h \
3187         src/libsystemd-network/dhcp6-protocol.h \
3188         src/libsystemd-network/dhcp6-network.c \
3189         src/libsystemd-network/dhcp6-option.c \
3190         src/libsystemd-network/dhcp6-lease-internal.h \
3191         src/libsystemd-network/sd-dhcp6-lease.c \
3192         src/libsystemd-network/dhcp-identifier.h \
3193         src/libsystemd-network/dhcp-identifier.c \
3194         src/libsystemd-network/lldp.h \
3195         src/libsystemd-network/lldp-tlv.h \
3196         src/libsystemd-network/lldp-tlv.c \
3197         src/libsystemd-network/lldp-network.h \
3198         src/libsystemd-network/lldp-network.c \
3199         src/libsystemd-network/lldp-port.h \
3200         src/libsystemd-network/lldp-port.c \
3201         src/libsystemd-network/lldp-internal.h \
3202         src/libsystemd-network/lldp-internal.c \
3203         src/libsystemd-network/lldp-util.h \
3204         src/libsystemd-network/sd-lldp.c
3205
3206 libsystemd_network_la_LIBADD = \
3207         libudev-internal.la \
3208         libsystemd-label.la \
3209         libsystemd-internal.la \
3210         libsystemd-shared.la \
3211         $(KMOD_LIBS)
3212
3213 test_dhcp_option_SOURCES = \
3214         src/libsystemd-network/dhcp-protocol.h \
3215         src/libsystemd-network/dhcp-internal.h \
3216         src/libsystemd-network/test-dhcp-option.c
3217
3218 test_dhcp_option_LDADD = \
3219         libsystemd-network.la \
3220         libsystemd-internal.la \
3221         libsystemd-shared.la
3222
3223 test_dhcp_client_SOURCES = \
3224         src/systemd/sd-dhcp-client.h \
3225         src/libsystemd-network/dhcp-protocol.h \
3226         src/libsystemd-network/dhcp-internal.h \
3227         src/libsystemd-network/test-dhcp-client.c
3228
3229 test_dhcp_client_LDADD = \
3230         libsystemd-network.la \
3231         libsystemd-label.la \
3232         libsystemd-internal.la \
3233         libsystemd-shared.la
3234
3235 test_dhcp_server_SOURCES = \
3236         src/libsystemd-network/test-dhcp-server.c
3237
3238 test_dhcp_server_LDADD = \
3239         libsystemd-network.la \
3240         libsystemd-internal.la \
3241         libsystemd-shared.la
3242
3243 test_ipv4ll_SOURCES = \
3244         src/systemd/sd-ipv4ll.h \
3245         src/libsystemd-network/ipv4ll-internal.h \
3246         src/libsystemd-network/test-ipv4ll.c
3247
3248 test_ipv4ll_LDADD = \
3249         libsystemd-network.la \
3250         libsystemd-label.la \
3251         libsystemd-internal.la \
3252         libsystemd-shared.la
3253
3254 test_pppoe_SOURCES = \
3255         src/systemd/sd-pppoe.h \
3256         src/libsystemd-network/test-pppoe.c
3257
3258 test_pppoe_LDADD = \
3259         libsystemd-network.la \
3260         libsystemd-shared.la
3261
3262 test_icmp6_rs_SOURCES = \
3263         src/systemd/sd-dhcp6-client.h \
3264         src/systemd/sd-icmp6-nd.h \
3265         src/libsystemd-network/dhcp6-internal.h \
3266         src/libsystemd-network/test-icmp6-rs.c \
3267         src/libsystemd-network/dhcp-identifier.h \
3268         src/libsystemd-network/dhcp-identifier.c
3269
3270 test_icmp6_rs_LDADD = \
3271         libsystemd-network.la \
3272         libsystemd-internal.la \
3273         libsystemd-shared.la
3274
3275 test_dhcp6_client_SOURCES = \
3276         src/systemd/sd-dhcp6-client.h \
3277         src/libsystemd-network/dhcp6-internal.h \
3278         src/libsystemd-network/test-dhcp6-client.c \
3279         src/libsystemd-network/dhcp-identifier.h \
3280         src/libsystemd-network/dhcp-identifier.c
3281
3282 test_dhcp6_client_LDADD = \
3283         libsystemd-network.la \
3284         libsystemd-internal.la \
3285         libsystemd-shared.la
3286
3287 test_lldp_SOURCES = \
3288        src/libsystemd-network/lldp.h \
3289        src/libsystemd-network/lldp-tlv.h \
3290        src/libsystemd-network/lldp-tlv.c \
3291        src/libsystemd-network/test-lldp.c
3292
3293 test_lldp_LDADD = \
3294         libsystemd-network.la \
3295         libsystemd-internal.la \
3296         libsystemd-shared.la
3297
3298 tests += \
3299         test-dhcp-option \
3300         test-dhcp-client \
3301         test-dhcp-server \
3302         test-ipv4ll \
3303         test-icmp6-rs \
3304         test-dhcp6-client \
3305         test-lldp
3306
3307 manual_tests += \
3308         test-pppoe
3309
3310 # ------------------------------------------------------------------------------
3311 if ENABLE_TERMINAL
3312 noinst_LTLIBRARIES += \
3313         libsystemd-terminal.la
3314
3315 rootlibexec_PROGRAMS += \
3316         systemd-consoled
3317
3318 noinst_PROGRAMS += \
3319         systemd-evcat \
3320         systemd-modeset \
3321         systemd-subterm
3322
3323 dist_pkgdata_DATA += \
3324         src/libsystemd-terminal/unifont-glyph-array.bin
3325
3326 nodist_userunit_DATA += \
3327         units/user/systemd-consoled.service
3328
3329 USER_DEFAULT_TARGET_WANTS += \
3330         systemd-consoled.service
3331
3332 tests += \
3333         test-term-page \
3334         test-term-parser \
3335         test-unifont
3336 endif
3337
3338 EXTRA_DIST += \
3339         units/user/systemd-consoled.service.in
3340
3341 libsystemd_terminal_la_CFLAGS = \
3342         $(AM_CFLAGS) \
3343         $(TERMINAL_CFLAGS)
3344
3345 libsystemd_terminal_la_SOURCES = \
3346         src/libsystemd-terminal/grdev.h \
3347         src/libsystemd-terminal/grdev-internal.h \
3348         src/libsystemd-terminal/grdev.c \
3349         src/libsystemd-terminal/grdev-drm.c \
3350         src/libsystemd-terminal/idev.h \
3351         src/libsystemd-terminal/idev-internal.h \
3352         src/libsystemd-terminal/idev.c \
3353         src/libsystemd-terminal/idev-evdev.c \
3354         src/libsystemd-terminal/idev-keyboard.c \
3355         src/libsystemd-terminal/sysview.h \
3356         src/libsystemd-terminal/sysview-internal.h \
3357         src/libsystemd-terminal/sysview.c \
3358         src/libsystemd-terminal/term.h \
3359         src/libsystemd-terminal/term-internal.h \
3360         src/libsystemd-terminal/term-charset.c \
3361         src/libsystemd-terminal/term-page.c \
3362         src/libsystemd-terminal/term-parser.c \
3363         src/libsystemd-terminal/term-screen.c \
3364         src/libsystemd-terminal/term-wcwidth.c \
3365         src/libsystemd-terminal/unifont.h \
3366         src/libsystemd-terminal/unifont-def.h \
3367         src/libsystemd-terminal/unifont.c
3368
3369 libsystemd_terminal_la_LIBADD = \
3370         libudev-internal.la \
3371         libsystemd-internal.la \
3372         libsystemd-shared.la \
3373         $(TERMINAL_LIBS)
3374
3375 systemd_consoled_CFLAGS = \
3376         $(AM_CFLAGS) \
3377         $(TERMINAL_CFLAGS)
3378
3379 systemd_consoled_SOURCES = \
3380         src/console/consoled.h \
3381         src/console/consoled.c \
3382         src/console/consoled-display.c \
3383         src/console/consoled-manager.c \
3384         src/console/consoled-session.c \
3385         src/console/consoled-terminal.c \
3386         src/console/consoled-workspace.c
3387
3388 systemd_consoled_LDADD = \
3389         libsystemd-terminal.la \
3390         libsystemd-internal.la \
3391         libsystemd-shared.la \
3392         $(TERMINAL_LIBS)
3393
3394 systemd_evcat_CFLAGS = \
3395         $(AM_CFLAGS) \
3396         $(TERMINAL_CFLAGS)
3397
3398 systemd_evcat_SOURCES = \
3399         src/libsystemd-terminal/evcat.c
3400
3401 systemd_evcat_LDADD = \
3402         libsystemd-terminal.la \
3403         libsystemd-internal.la \
3404         libsystemd-shared.la \
3405         $(TERMINAL_LIBS)
3406
3407 systemd_modeset_CFLAGS = \
3408         $(AM_CFLAGS) \
3409         $(TERMINAL_CFLAGS)
3410
3411 systemd_modeset_SOURCES = \
3412         src/libsystemd-terminal/modeset.c
3413
3414 systemd_modeset_LDADD = \
3415         libsystemd-terminal.la \
3416         libsystemd-internal.la \
3417         libsystemd-shared.la \
3418         $(TERMINAL_LIBS)
3419
3420 systemd_subterm_SOURCES = \
3421         src/libsystemd-terminal/subterm.c
3422
3423 systemd_subterm_LDADD = \
3424         libsystemd-terminal.la \
3425         libsystemd-internal.la \
3426         libsystemd-shared.la
3427
3428 test_term_page_SOURCES = \
3429         src/libsystemd-terminal/test-term-page.c
3430
3431 test_term_page_LDADD = \
3432         libsystemd-terminal.la \
3433         libsystemd-internal.la \
3434         libsystemd-shared.la
3435
3436 test_term_parser_SOURCES = \
3437         src/libsystemd-terminal/test-term-parser.c
3438
3439 test_term_parser_LDADD = \
3440         libsystemd-terminal.la \
3441         libsystemd-internal.la \
3442         libsystemd-shared.la
3443
3444 test_unifont_SOURCES = \
3445         src/libsystemd-terminal/test-unifont.c
3446
3447 test_unifont_LDADD = \
3448         libsystemd-terminal.la \
3449         libsystemd-internal.la \
3450         libsystemd-shared.la
3451
3452 .PHONY: update-unifont
3453 update-unifont: tools/compile-unifont.py
3454         $(AM_V_GEN)$(PYTHON) $< \
3455                 <$(top_srcdir)/src/libsystemd-terminal/unifont.hex \
3456                 >$(top_srcdir)/src/libsystemd-terminal/unifont-glyph-array.bin
3457         @echo "unifont-glyph-array.bin has been regenerated"
3458
3459 # ------------------------------------------------------------------------------
3460 if ENABLE_GTK_DOC
3461 SUBDIRS += \
3462         docs/libudev
3463
3464 noinst_DATA += \
3465         docs/html/libudev \
3466         docs/html/gudev
3467 endif
3468
3469 include_HEADERS += \
3470         src/libudev/libudev.h
3471
3472 lib_LTLIBRARIES += \
3473         libudev.la
3474
3475 libudev_la_SOURCES =\
3476         src/libudev/libudev.sym \
3477         src/libudev/libudev-private.h \
3478         src/libudev/libudev.c \
3479         src/libudev/libudev-list.c \
3480         src/libudev/libudev-util.c \
3481         src/libudev/libudev-device.c \
3482         src/libudev/libudev-enumerate.c \
3483         src/libudev/libudev-monitor.c \
3484         src/libudev/libudev-queue.c \
3485         src/libudev/libudev-hwdb.c
3486
3487 libudev_la_CFLAGS = \
3488         $(AM_CFLAGS) \
3489         -fvisibility=hidden
3490
3491 libudev_la_LDFLAGS = \
3492         $(AM_LDFLAGS) \
3493         -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
3494         -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
3495
3496 libudev_la_LIBADD = \
3497         libsystemd-internal.la \
3498         libsystemd-shared.la
3499
3500 pkgconfiglib_DATA += \
3501         src/libudev/libudev.pc
3502
3503 EXTRA_DIST += \
3504         src/libudev/libudev.pc.in
3505
3506 CLEANFILES += \
3507         src/libudev/libudev.pc \
3508         docs/html/libudev \
3509         docs/html/gudev
3510
3511 docs/html/libudev:
3512         $(AM_V_at)$(MKDIR_P) $(dir $@)
3513         $(AM_V_LN)$(LN_S) -f ../libudev/html $@
3514
3515 docs/html/gudev:
3516         $(AM_V_at)$(MKDIR_P) $(dir $@)
3517         $(AM_V_LN)$(LN_S) -f ../gudev/html $@
3518
3519 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
3520 libudev-install-hook:
3521         libname=libudev.so && $(move-to-rootlibdir)
3522
3523 libudev-uninstall-hook:
3524         rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
3525
3526 INSTALL_EXEC_HOOKS += libudev-install-hook
3527 UNINSTALL_EXEC_HOOKS += libudev-uninstall-hook
3528
3529 # ------------------------------------------------------------------------------
3530 noinst_LTLIBRARIES += \
3531         libudev-internal.la
3532
3533 libudev_internal_la_SOURCES =\
3534         $(libudev_la_SOURCES) \
3535         src/libudev/libudev-device-private.c
3536
3537 libudev_internal_la_CFLAGS = \
3538         $(AM_CFLAGS) \
3539         -fvisibility=default
3540
3541 # ------------------------------------------------------------------------------
3542 INSTALL_DIRS += \
3543         $(sysconfdir)/udev/rules.d
3544
3545 dist_network_DATA = \
3546         network/99-default.link \
3547         network/80-container-host0.network \
3548         network/80-container-ve.network
3549
3550 dist_udevrules_DATA += \
3551         rules/42-usb-hid-pm.rules \
3552         rules/50-udev-default.rules \
3553         rules/60-drm.rules \
3554         rules/60-keyboard.rules \
3555         rules/70-mouse.rules \
3556         rules/60-persistent-storage-tape.rules \
3557         rules/60-persistent-serial.rules \
3558         rules/60-persistent-input.rules \
3559         rules/60-persistent-alsa.rules \
3560         rules/60-persistent-storage.rules \
3561         rules/64-btrfs.rules \
3562         rules/75-net-description.rules \
3563         rules/75-tty-description.rules \
3564         rules/78-sound-card.rules \
3565         rules/80-net-setup-link.rules \
3566         rules/95-udev-late.rules
3567
3568 nodist_udevrules_DATA += \
3569         rules/99-systemd.rules
3570
3571 udevconfdir = $(sysconfdir)/udev
3572 dist_udevconf_DATA = \
3573         src/udev/udev.conf
3574
3575 sharepkgconfigdir = $(datadir)/pkgconfig
3576 sharepkgconfig_DATA = \
3577         src/udev/udev.pc
3578
3579 EXTRA_DIST += \
3580         rules/99-systemd.rules.in \
3581         src/udev/udev.pc.in
3582
3583 CLEANFILES += \
3584         rules/99-systemd.rules \
3585         src/udev/udev.pc
3586
3587 EXTRA_DIST += \
3588         units/systemd-udevd.service.in \
3589         units/systemd-udev-trigger.service.in \
3590         units/systemd-udev-settle.service.in
3591
3592 CLEANFILES += \
3593         units/systemd-udevd.service \
3594         units/systemd-udev-trigger.service \
3595         units/systemd-udev-settle.service
3596
3597 SOCKETS_TARGET_WANTS += \
3598         systemd-udevd-control.socket \
3599         systemd-udevd-kernel.socket
3600
3601 SYSINIT_TARGET_WANTS += \
3602         systemd-udevd.service \
3603         systemd-udev-trigger.service
3604
3605 rootbin_PROGRAMS += \
3606         udevadm
3607
3608 rootlibexec_PROGRAMS += \
3609         systemd-udevd
3610
3611 noinst_LTLIBRARIES += \
3612         libudev-core.la
3613
3614 src/udev/keyboard-keys.txt:
3615         $(AM_V_at)$(MKDIR_P) $(dir $@)
3616         $(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/' > $@
3617
3618 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt
3619         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
3620
3621 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
3622         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
3623
3624 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt
3625         $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
3626
3627 libudev_core_la_SOURCES = \
3628         src/udev/udev.h \
3629         src/udev/udev-event.c \
3630         src/udev/udev-watch.c \
3631         src/udev/udev-node.c \
3632         src/udev/udev-rules.c \
3633         src/udev/udev-ctrl.c \
3634         src/udev/udev-builtin.c \
3635         src/udev/udev-builtin-btrfs.c \
3636         src/udev/udev-builtin-hwdb.c \
3637         src/udev/udev-builtin-input_id.c \
3638         src/udev/udev-builtin-keyboard.c \
3639         src/udev/udev-builtin-net_id.c \
3640         src/udev/udev-builtin-net_setup_link.c \
3641         src/udev/udev-builtin-path_id.c \
3642         src/udev/udev-builtin-usb_id.c \
3643         src/udev/net/link-config.h \
3644         src/udev/net/link-config.c \
3645         src/udev/net/ethtool-util.h \
3646         src/udev/net/ethtool-util.c
3647
3648 nodist_libudev_core_la_SOURCES = \
3649         src/udev/keyboard-keys-from-name.h \
3650         src/udev/keyboard-keys-to-name.h \
3651         src/udev/net/link-config-gperf.c
3652
3653 BUILT_SOURCES += \
3654         $(nodist_libudev_core_la_SOURCES)
3655
3656 CLEANFILES += \
3657         src/udev/keyboard-keys-from-name.gperf \
3658         src/udev/keyboard-keys.txt \
3659         src/udev/net/link-config-gperf.c
3660
3661 EXTRA_DIST += \
3662         src/udev/net/link-config-gperf.gperf
3663
3664 libudev_core_la_CFLAGS = \
3665         $(AM_CFLAGS) \
3666         $(BLKID_CFLAGS) \
3667         $(KMOD_CFLAGS)
3668
3669 libudev_core_la_LIBADD = \
3670         libudev-internal.la \
3671         libsystemd-label.la \
3672         libsystemd-internal.la \
3673         libsystemd-network.la \
3674         libsystemd-shared.la \
3675         $(BLKID_LIBS) \
3676         $(KMOD_LIBS)
3677
3678 if HAVE_KMOD
3679 libudev_core_la_SOURCES += \
3680         src/udev/udev-builtin-kmod.c
3681
3682 dist_udevrules_DATA += \
3683         rules/80-drivers.rules
3684 endif
3685
3686 if HAVE_BLKID
3687 libudev_core_la_SOURCES += \
3688         src/udev/udev-builtin-blkid.c
3689 endif
3690
3691 if HAVE_ACL
3692 libudev_core_la_SOURCES += \
3693         src/udev/udev-builtin-uaccess.c \
3694         src/login/logind-acl.c \
3695         src/libsystemd/sd-login/sd-login.c \
3696         src/systemd/sd-login.h
3697
3698 libudev_core_la_LIBADD += \
3699         libsystemd-acl.la
3700 endif
3701
3702 systemd_udevd_SOURCES = \
3703         src/udev/udevd.c
3704
3705 systemd_udevd_LDADD = \
3706         libudev-core.la
3707
3708 udevadm_SOURCES = \
3709         src/udev/udevadm.c \
3710         src/udev/udevadm-info.c \
3711         src/udev/udevadm-control.c \
3712         src/udev/udevadm-monitor.c \
3713         src/udev/udevadm-hwdb.c \
3714         src/udev/udevadm-settle.c \
3715         src/udev/udevadm-trigger.c \
3716         src/udev/udevadm-test.c \
3717         src/udev/udevadm-test-builtin.c \
3718         src/udev/udevadm-util.c \
3719         src/udev/udevadm-util.h
3720
3721 udevadm_LDADD = \
3722         libudev-core.la
3723
3724 # ------------------------------------------------------------------------------
3725 if ENABLE_HWDB
3726 INSTALL_DIRS += \
3727         $(sysconfdir)/udev/hwdb.d
3728
3729 systemd_hwdb_SOURCES = \
3730         src/libsystemd/sd-hwdb/hwdb-internal.h \
3731         src/hwdb/hwdb.c
3732
3733 systemd_hwdb_LDADD = \
3734         libsystemd-shared.la \
3735         libsystemd-internal.la \
3736         libudev-internal.la
3737
3738 rootbin_PROGRAMS += \
3739         systemd-hwdb
3740
3741 dist_udevhwdb_DATA = \
3742         hwdb/20-pci-vendor-model.hwdb \
3743         hwdb/20-pci-classes.hwdb \
3744         hwdb/20-usb-vendor-model.hwdb \
3745         hwdb/20-usb-classes.hwdb \
3746         hwdb/20-sdio-vendor-model.hwdb \
3747         hwdb/20-sdio-classes.hwdb \
3748         hwdb/20-bluetooth-vendor-product.hwdb \
3749         hwdb/20-acpi-vendor.hwdb \
3750         hwdb/20-OUI.hwdb \
3751         hwdb/20-net-ifname.hwdb \
3752         hwdb/60-keyboard.hwdb \
3753         hwdb/70-mouse.hwdb
3754
3755 EXTRA_DIST += \
3756         units/systemd-hwdb-update.service.in
3757
3758 CLEANFILES += \
3759         units/systemd-hwdb-update.service
3760
3761 SYSINIT_TARGET_WANTS += \
3762         systemd-hwdb-update.service
3763
3764 # Update hwdb on installation. Do not bother if installing
3765 # in DESTDIR, since this is likely for packaging purposes.
3766 hwdb-update-hook:
3767         -test -n "$(DESTDIR)" || $(rootbindir)/systemd-hwdb update
3768
3769 INSTALL_DATA_HOOKS += \
3770         hwdb-update-hook
3771
3772 hwdb-remove-hook:
3773         -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
3774 endif
3775
3776 # ------------------------------------------------------------------------------
3777 TESTS += \
3778         test/udev-test.pl \
3779         $(NULL)
3780
3781 if HAVE_PYTHON
3782 TESTS += \
3783         test/rule-syntax-check.py \
3784         test/sysv-generator-test.py \
3785         $(NULL)
3786 endif
3787
3788 manual_tests += \
3789         test-libudev \
3790         test-udev
3791
3792 test_libudev_SOURCES = \
3793         src/test/test-libudev.c
3794
3795 test_libudev_LDADD = \
3796         libsystemd-label.la \
3797         libudev-internal.la \
3798         libsystemd-shared.la \
3799         libsystemd-internal.la
3800
3801 test_udev_SOURCES = \
3802         src/test/test-udev.c
3803
3804 test_udev_LDADD = \
3805         libudev-core.la  \
3806         $(BLKID_LIBS) \
3807         $(KMOD_LIBS) \
3808         $(SELINUX_LIBS)
3809
3810 if HAVE_ACL
3811 test_udev_LDADD += \
3812         libsystemd-acl.la
3813 endif
3814
3815 check_DATA += \
3816         test/sys
3817
3818 # packed sysfs test tree
3819 test/sys:
3820         $(AM_V_at)$(MKDIR_P) $(dir $@)
3821         $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3822
3823 test-sys-distclean:
3824         -rm -rf test/sys
3825 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
3826
3827 EXTRA_DIST += \
3828         test/sys.tar.xz \
3829         test/udev-test.pl \
3830         test/rule-syntax-check.py \
3831         test/sysv-generator-test.py \
3832         $(NULL)
3833
3834
3835 # ------------------------------------------------------------------------------
3836 ata_id_SOURCES = \
3837         src/udev/ata_id/ata_id.c
3838
3839 ata_id_LDADD = \
3840         libudev-internal.la \
3841         libsystemd-shared.la
3842
3843 udevlibexec_PROGRAMS += \
3844         ata_id
3845
3846 # ------------------------------------------------------------------------------
3847 cdrom_id_SOURCES = \
3848         src/udev/cdrom_id/cdrom_id.c
3849
3850 cdrom_id_LDADD = \
3851         libudev-internal.la \
3852         libsystemd-shared.la
3853
3854 udevlibexec_PROGRAMS += \
3855         cdrom_id
3856
3857 dist_udevrules_DATA += \
3858         rules/60-cdrom_id.rules
3859
3860 # ------------------------------------------------------------------------------
3861 collect_SOURCES = \
3862         src/udev/collect/collect.c
3863
3864 collect_LDADD = \
3865         libudev-internal.la \
3866         libsystemd-shared.la
3867
3868 udevlibexec_PROGRAMS += \
3869         collect
3870
3871 # ------------------------------------------------------------------------------
3872 scsi_id_SOURCES =\
3873         src/udev/scsi_id/scsi_id.c \
3874         src/udev/scsi_id/scsi_serial.c \
3875         src/udev/scsi_id/scsi.h \
3876         src/udev/scsi_id/scsi_id.h
3877
3878 scsi_id_LDADD = \
3879         libudev-internal.la \
3880         libsystemd-shared.la
3881
3882 udevlibexec_PROGRAMS += \
3883         scsi_id
3884
3885 EXTRA_DIST += \
3886         src/udev/scsi_id/README
3887
3888 # ------------------------------------------------------------------------------
3889 v4l_id_SOURCES = \
3890         src/udev/v4l_id/v4l_id.c
3891
3892 v4l_id_LDADD = \
3893         libudev-internal.la \
3894         libsystemd-shared.la
3895
3896 udevlibexec_PROGRAMS += \
3897         v4l_id
3898
3899 dist_udevrules_DATA += \
3900         rules/60-persistent-v4l.rules
3901
3902 # ------------------------------------------------------------------------------
3903 accelerometer_SOURCES = \
3904         src/udev/accelerometer/accelerometer.c
3905
3906 accelerometer_LDADD = \
3907         libudev-internal.la \
3908         libsystemd-shared.la
3909
3910 udevlibexec_PROGRAMS += \
3911         accelerometer
3912
3913 dist_udevrules_DATA += \
3914         rules/61-accelerometer.rules
3915
3916 # ------------------------------------------------------------------------------
3917 if ENABLE_GUDEV
3918 if ENABLE_GTK_DOC
3919 SUBDIRS += \
3920         docs/gudev
3921 endif
3922
3923 libgudev_includedir = \
3924         $(includedir)/gudev-1.0/gudev
3925
3926 libgudev_include_HEADERS = \
3927         src/gudev/gudev.h \
3928         src/gudev/gudevenums.h \
3929         src/gudev/gudevenumtypes.h \
3930         src/gudev/gudevtypes.h \
3931         src/gudev/gudevclient.h \
3932         src/gudev/gudevdevice.h \
3933         src/gudev/gudevenumerator.h
3934
3935 lib_LTLIBRARIES += libgudev-1.0.la
3936
3937 pkgconfiglib_DATA += \
3938         src/gudev/gudev-1.0.pc
3939
3940 CLEANFILES += \
3941         src/gudev/gudev-1.0.pc
3942
3943 libgudev_1_0_la_SOURCES = \
3944         src/gudev/libgudev-1.0.sym \
3945         src/gudev/gudevenums.h \
3946         src/gudev/gudevenumtypes.h \
3947         src/gudev/gudevenumtypes.h\
3948         src/gudev/gudevtypes.h \
3949         src/gudev/gudevclient.h \
3950         src/gudev/gudevclient.c \
3951         src/gudev/gudevdevice.h \
3952         src/gudev/gudevdevice.c \
3953         src/gudev/gudevenumerator.h \
3954         src/gudev/gudevenumerator.c \
3955         src/gudev/gudevprivate.h
3956
3957 nodist_libgudev_1_0_la_SOURCES = \
3958         src/gudev/gudevmarshal.h \
3959         src/gudev/gudevmarshal.c \
3960         src/gudev/gudevenumtypes.h \
3961         src/gudev/gudevenumtypes.c
3962
3963 BUILT_SOURCES += \
3964         $(nodist_libgudev_1_0_la_SOURCES)
3965
3966 libgudev_1_0_la_CPPFLAGS = \
3967         $(AM_CPPFLAGS) \
3968         -I$(top_builddir)/src\
3969         -I$(top_srcdir)/src\
3970         -I$(top_builddir)/src/gudev \
3971         -I$(top_srcdir)/src/gudev \
3972         -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
3973         -D_GUDEV_COMPILATION \
3974         -DG_LOG_DOMAIN=\"GUdev\"
3975
3976 libgudev_1_0_la_CFLAGS = \
3977         $(AM_CFLAGS) \
3978         -fvisibility=default \
3979         $(GLIB_CFLAGS)
3980
3981 libgudev_1_0_la_LIBADD = \
3982         libudev.la \
3983         $(GLIB_LIBS)
3984
3985 libgudev_1_0_la_LDFLAGS = \
3986         $(AM_LDFLAGS) \
3987         -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
3988         -export-dynamic \
3989         -no-undefined \
3990         -Wl,--version-script=$(top_srcdir)/src/gudev/libgudev-1.0.sym
3991
3992 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
3993         $(AM_V_at)$(MKDIR_P) $(dir $@)
3994         $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
3995
3996 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
3997         $(AM_V_at)$(MKDIR_P) $(dir $@)
3998         $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
3999         glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
4000
4001 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
4002         $(AM_V_at)$(MKDIR_P) $(dir $@)
4003         $(AM_V_GEN)glib-mkenums --template $^ > $@
4004
4005 if HAVE_INTROSPECTION
4006 -include $(INTROSPECTION_MAKEFILE)
4007
4008 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
4009
4010 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
4011
4012 src_gudev_GUdev_1_0_gir_CFLAGS = \
4013         $(AM_CFLAGS) \
4014         $(INCLUDES) \
4015         -D_GUDEV_COMPILATION \
4016         -D_GUDEV_WORK_AROUND_DEV_T_BUG \
4017         -I$(top_srcdir)/src \
4018         -I$(top_builddir)/src \
4019         -I$(top_srcdir)/src/gudev \
4020         -I$(top_builddir)/src/gudev
4021
4022 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
4023
4024 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
4025         --pkg-export=gudev-1.0 \
4026         --warn-all
4027
4028 src_gudev_GUdev_1_0_gir_FILES = \
4029         src/gudev/gudev.h \
4030         src/gudev/gudevtypes.h \
4031         src/gudev/gudevenums.h \
4032         src/gudev/gudevenumtypes.h \
4033         src/gudev/gudevclient.h \
4034         src/gudev/gudevdevice.h \
4035         src/gudev/gudevenumerator.h \
4036         src/gudev/gudevclient.c \
4037         src/gudev/gudevdevice.c \
4038         src/gudev/gudevenumerator.c
4039
4040 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
4041 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
4042
4043 girdir = $(datadir)/gir-1.0
4044 gir_DATA = \
4045         src/gudev/GUdev-1.0.gir
4046
4047 typelibsdir = $(libdir)/girepository-1.0
4048 typelibs_DATA = \
4049         src/gudev/GUdev-1.0.typelib
4050
4051 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
4052 endif # HAVE_INTROSPECTION
4053 endif
4054
4055 EXTRA_DIST += \
4056         src/gudev/gudev-1.0.pc.in \
4057         src/gudev/gudevmarshal.list \
4058         src/gudev/gudevenumtypes.h.template \
4059         src/gudev/gudevenumtypes.c.template \
4060         src/gudev/gjs-example.js \
4061         src/gudev/seed-example-enum.js \
4062         src/gudev/seed-example.js
4063
4064 # ------------------------------------------------------------------------------
4065 mtd_probe_SOURCES =  \
4066         src/udev/mtd_probe/mtd_probe.c \
4067         src/udev/mtd_probe/mtd_probe.h \
4068         src/udev/mtd_probe/probe_smartmedia.c
4069
4070 dist_udevrules_DATA += \
4071         rules/75-probe_mtd.rules
4072
4073 udevlibexec_PROGRAMS += \
4074         mtd_probe
4075
4076 # ------------------------------------------------------------------------------
4077 test_id128_SOURCES = \
4078         src/test/test-id128.c
4079
4080 test_id128_LDADD = \
4081         libsystemd-internal.la \
4082         libsystemd-shared.la
4083
4084 tests += \
4085         test-id128
4086
4087 # ------------------------------------------------------------------------------
4088
4089 rootlibexec_PROGRAMS += \
4090         systemd-activate
4091
4092 systemd_activate_SOURCES = \
4093         src/activate/activate.c
4094
4095 systemd_activate_LDADD = \
4096         libsystemd-label.la \
4097         libsystemd-internal.la \
4098         libsystemd-shared.la
4099
4100 # ------------------------------------------------------------------------------
4101 systemd_journald_SOURCES = \
4102         src/journal/journald.c \
4103         src/journal/journald-server.h
4104
4105 systemd_journald_LDADD = \
4106         libsystemd-journal-core.la \
4107         libsystemd-internal.la \
4108         libsystemd-shared.la
4109
4110 systemd_cat_SOURCES = \
4111         src/journal/cat.c
4112
4113 systemd_cat_LDADD = \
4114         libsystemd-journal-core.la
4115
4116 if HAVE_MICROHTTPD
4117 rootlibexec_PROGRAMS += \
4118         systemd-journal-remote
4119
4120 systemd_journal_remote_SOURCES = \
4121         src/journal-remote/journal-remote-parse.h \
4122         src/journal-remote/journal-remote-parse.c \
4123         src/journal-remote/journal-remote-write.h \
4124         src/journal-remote/journal-remote-write.c \
4125         src/journal-remote/journal-remote.h \
4126         src/journal-remote/journal-remote.c
4127
4128 systemd_journal_remote_LDADD = \
4129         libsystemd-internal.la \
4130         libsystemd-journal-core.la
4131
4132 systemd_journal_remote_SOURCES += \
4133         src/journal-remote/microhttpd-util.h \
4134         src/journal-remote/microhttpd-util.c
4135
4136 systemd_journal_remote_CFLAGS = \
4137         $(AM_CFLAGS) \
4138         $(MICROHTTPD_CFLAGS)
4139
4140 systemd_journal_remote_LDADD += \
4141         $(MICROHTTPD_LIBS)
4142
4143 if ENABLE_SYSUSERS
4144 dist_sysusers_DATA += \
4145         sysusers.d/systemd-remote.conf
4146 endif
4147
4148 if ENABLE_TMPFILES
4149 dist_tmpfiles_DATA += \
4150         tmpfiles.d/systemd-remote.conf
4151 endif
4152
4153 if HAVE_GNUTLS
4154 systemd_journal_remote_LDADD += \
4155         $(GNUTLS_LIBS)
4156
4157 # systemd-journal-remote make sense mostly with full crypto stack
4158 dist_systemunit_DATA += \
4159         units/systemd-journal-remote.socket
4160
4161 nodist_systemunit_DATA += \
4162         units/systemd-journal-remote.service
4163
4164 EXTRA_DIST += \
4165         units/systemd-journal-remote.service.in
4166
4167 journal-remote-install-hook: journal-install-hook
4168         -$(MKDIR_P) $(DESTDIR)/var/log/journal/remote
4169         -chown 0:0 $(DESTDIR)/var/log/journal/remote
4170         -chmod 755 $(DESTDIR)/var/log/journal/remote
4171
4172 INSTALL_EXEC_HOOKS += journal-remote-install-hook
4173
4174 endif
4175
4176 nodist_pkgsysconf_DATA += \
4177         src/journal-remote/journal-remote.conf
4178
4179 EXTRA_DIST += \
4180         src/journal-remote/journal-remote.conf.in
4181
4182 CLEANFILES += \
4183         src/journal-remote/journal-remote.conf
4184 endif
4185
4186 if HAVE_LIBCURL
4187 rootlibexec_PROGRAMS += \
4188         systemd-journal-upload
4189
4190 systemd_journal_upload_SOURCES = \
4191         src/journal-remote/journal-upload.h \
4192         src/journal-remote/journal-upload.c \
4193         src/journal-remote/journal-upload-journal.c
4194
4195 systemd_journal_upload_CFLAGS = \
4196         $(AM_CFLAGS) \
4197         $(LIBCURL_CFLAGS)
4198
4199 systemd_journal_upload_LDADD = \
4200         libsystemd-internal.la \
4201         libsystemd-journal-internal.la \
4202         libsystemd-shared.la \
4203         $(LIBCURL_LIBS)
4204
4205 nodist_systemunit_DATA += \
4206         units/systemd-journal-upload.service
4207
4208 EXTRA_DIST += \
4209         units/systemd-journal-upload.service.in
4210
4211 nodist_pkgsysconf_DATA += \
4212         src/journal-remote/journal-upload.conf
4213
4214 EXTRA_DIST += \
4215         src/journal-remote/journal-upload.conf.in
4216
4217 CLEANFILES += \
4218         src/journal-remote/journal-upload.conf
4219 endif
4220
4221 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4222 journalctl_CFLAGS = \
4223         $(AM_CFLAGS)
4224
4225 journalctl_SOURCES = \
4226         src/journal/journalctl.c
4227
4228 journalctl_LDADD = \
4229         libsystemd-journal-internal.la \
4230         libsystemd-internal.la \
4231         libsystemd-logs.la \
4232         libsystemd-shared.la
4233
4234 if HAVE_ACL
4235 journalctl_LDADD += \
4236         libsystemd-acl.la
4237 endif
4238
4239 if HAVE_QRENCODE
4240 journalctl_SOURCES += \
4241         src/journal/journal-qrcode.c \
4242         src/journal/journal-qrcode.h
4243
4244 journalctl_CFLAGS += \
4245         $(QRENCODE_CFLAGS)
4246
4247 journalctl_LDADD += \
4248         $(QRENCODE_LIBS)
4249 endif
4250
4251 test_journal_SOURCES = \
4252         src/journal/test-journal.c
4253
4254 test_journal_LDADD = \
4255         libsystemd-journal-core.la
4256
4257 test_journal_send_SOURCES = \
4258         src/journal/test-journal-send.c
4259
4260 test_journal_send_LDADD = \
4261         libsystemd-journal-core.la
4262
4263 test_journal_syslog_SOURCES = \
4264         src/journal/test-journal-syslog.c
4265
4266 test_journal_syslog_LDADD = \
4267         libsystemd-journal-core.la
4268
4269 test_journal_match_SOURCES = \
4270         src/journal/test-journal-match.c
4271
4272 test_journal_match_LDADD = \
4273         libsystemd-journal-core.la
4274
4275 test_journal_enum_SOURCES = \
4276         src/journal/test-journal-enum.c
4277
4278 test_journal_enum_LDADD = \
4279         libsystemd-journal-core.la
4280
4281 test_journal_stream_SOURCES = \
4282         src/journal/test-journal-stream.c
4283
4284 test_journal_stream_LDADD = \
4285         libsystemd-journal-core.la
4286
4287 test_journal_flush_SOURCES = \
4288         src/journal/test-journal-flush.c
4289
4290 test_journal_flush_LDADD = \
4291         libsystemd-journal-core.la
4292
4293 test_journal_init_SOURCES = \
4294         src/journal/test-journal-init.c
4295
4296 test_journal_init_LDADD = \
4297         libsystemd-journal-core.la
4298
4299 test_journal_verify_SOURCES = \
4300         src/journal/test-journal-verify.c
4301
4302 test_journal_verify_LDADD = \
4303         libsystemd-journal-core.la
4304
4305 test_journal_interleaving_SOURCES = \
4306         src/journal/test-journal-interleaving.c
4307
4308 test_journal_interleaving_LDADD = \
4309         libsystemd-journal-core.la
4310
4311 test_mmap_cache_SOURCES = \
4312         src/journal/test-mmap-cache.c
4313
4314 test_mmap_cache_LDADD = \
4315         libsystemd-journal-core.la
4316
4317 test_catalog_SOURCES = \
4318         src/journal/test-catalog.c
4319
4320 test_catalog_CPPFLAGS = \
4321         $(AM_CPPFLAGS) \
4322         -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
4323
4324 test_catalog_LDADD = \
4325         libsystemd-journal-core.la
4326
4327 test_compress_SOURCES = \
4328         src/journal/test-compress.c
4329
4330 test_compress_LDADD = \
4331         libsystemd-journal-internal.la \
4332         libsystemd-shared.la
4333
4334 test_compress_benchmark_SOURCES = \
4335         src/journal/test-compress-benchmark.c
4336
4337 test_compress_benchmark_LDADD = \
4338         libsystemd-journal-internal.la \
4339         libsystemd-shared.la
4340
4341 libsystemd_journal_core_la_SOURCES = \
4342         src/journal/journald-kmsg.c \
4343         src/journal/journald-kmsg.h \
4344         src/journal/journald-syslog.c \
4345         src/journal/journald-syslog.h \
4346         src/journal/journald-stream.c \
4347         src/journal/journald-stream.h \
4348         src/journal/journald-server.c \
4349         src/journal/journald-server.h \
4350         src/journal/journald-console.c \
4351         src/journal/journald-console.h \
4352         src/journal/journald-wall.c \
4353         src/journal/journald-wall.h \
4354         src/journal/journald-native.c \
4355         src/journal/journald-native.h \
4356         src/journal/journald-audit.c \
4357         src/journal/journald-audit.h \
4358         src/journal/journald-rate-limit.c \
4359         src/journal/journald-rate-limit.h \
4360         src/journal/journal-internal.h
4361
4362 nodist_libsystemd_journal_core_la_SOURCES = \
4363         src/journal/journald-gperf.c
4364
4365 libsystemd_journal_core_la_LIBADD = \
4366         libsystemd-journal-internal.la \
4367         libudev-internal.la \
4368         libsystemd-label.la \
4369         libsystemd-internal.la \
4370         libsystemd-shared.la
4371
4372 if HAVE_ACL
4373 libsystemd_journal_core_la_LIBADD += \
4374         libsystemd-acl.la
4375 endif
4376
4377 noinst_LTLIBRARIES += \
4378         libsystemd-journal-core.la
4379
4380 journal-install-hook:
4381         -$(MKDIR_P) $(DESTDIR)/var/log/journal
4382         -chown 0:0 $(DESTDIR)/var/log/journal
4383         -chmod 755 $(DESTDIR)/var/log/journal
4384         -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
4385         -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
4386
4387 journal-uninstall-hook:
4388         -rmdir $(DESTDIR)/var/log/journal/remote
4389         -rmdir $(DESTDIR)/var/log/journal/
4390
4391 INSTALL_EXEC_HOOKS += journal-install-hook
4392 UNINSTALL_EXEC_HOOKS += journal-uninstall-hook
4393
4394 # ------------------------------------------------------------------------------
4395 # Update catalog on installation. Do not bother if installing
4396 # in DESTDIR, since this is likely for packaging purposes.
4397 catalog-update-hook:
4398         -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
4399
4400 INSTALL_DATA_HOOKS += \
4401         catalog-update-hook
4402
4403 catalog-remove-hook:
4404         -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
4405
4406 UNINSTALL_DATA_HOOKS += \
4407         catalog-remove-hook
4408
4409 manual_tests += \
4410         test-journal-enum
4411
4412 tests += \
4413         test-journal \
4414         test-journal-send \
4415         test-journal-syslog \
4416         test-journal-match \
4417         test-journal-stream \
4418         test-journal-init \
4419         test-journal-verify \
4420         test-journal-interleaving \
4421         test-journal-flush \
4422         test-mmap-cache \
4423         test-catalog
4424
4425 if HAVE_COMPRESSION
4426 tests += \
4427         test-compress \
4428         test-compress-benchmark
4429 endif
4430
4431 pkginclude_HEADERS += \
4432         src/systemd/sd-journal.h \
4433         src/systemd/sd-messages.h \
4434         src/systemd/_sd-common.h
4435
4436 libsystemd_journal_internal_la_SOURCES = \
4437         src/journal/sd-journal.c \
4438         src/systemd/sd-journal.h \
4439         src/systemd/_sd-common.h \
4440         src/journal/journal-file.c \
4441         src/journal/journal-file.h \
4442         src/journal/journal-vacuum.c \
4443         src/journal/journal-vacuum.h \
4444         src/journal/journal-verify.c \
4445         src/journal/journal-verify.h \
4446         src/journal/lookup3.c \
4447         src/journal/lookup3.h \
4448         src/journal/journal-send.c \
4449         src/journal/journal-def.h \
4450         src/journal/compress.h \
4451         src/journal/catalog.c \
4452         src/journal/catalog.h \
4453         src/journal/mmap-cache.c \
4454         src/journal/mmap-cache.h \
4455         src/journal/compress.c
4456
4457 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
4458 libsystemd_journal_internal_la_CFLAGS = \
4459         $(AM_CFLAGS)
4460
4461 libsystemd_journal_internal_la_LIBADD = \
4462         libsystemd-label.la
4463
4464 if HAVE_XZ
4465 libsystemd_journal_internal_la_CFLAGS += \
4466         $(XZ_CFLAGS)
4467
4468 libsystemd_journal_internal_la_LIBADD += \
4469         $(XZ_LIBS)
4470 endif
4471
4472 if HAVE_LZ4
4473 libsystemd_journal_internal_la_LIBADD += \
4474         -llz4
4475 endif
4476
4477 if HAVE_GCRYPT
4478 libsystemd_journal_internal_la_SOURCES += \
4479         src/journal/journal-authenticate.c \
4480         src/journal/journal-authenticate.h \
4481         src/journal/fsprg.c \
4482         src/journal/fsprg.h
4483
4484 libsystemd_journal_internal_la_LIBADD += \
4485         $(GCRYPT_LIBS)
4486
4487 # fsprg.c is a drop-in file using void pointer arithmetic
4488 libsystemd_journal_internal_la_CFLAGS += \
4489         $(GCRYPT_CFLAGS) \
4490         -Wno-pointer-arith
4491 endif
4492
4493 noinst_LTLIBRARIES += \
4494         libsystemd-journal-internal.la
4495
4496 rootlibexec_PROGRAMS += \
4497         systemd-journald
4498
4499 rootbin_PROGRAMS += \
4500         journalctl
4501
4502 bin_PROGRAMS += \
4503         systemd-cat
4504
4505 dist_systemunit_DATA += \
4506         units/systemd-journald.socket \
4507         units/systemd-journald-dev-log.socket \
4508         units/systemd-journald-audit.socket
4509
4510 nodist_systemunit_DATA += \
4511         units/systemd-journald.service \
4512         units/systemd-journal-flush.service \
4513         units/systemd-journal-catalog-update.service
4514
4515 dist_pkgsysconf_DATA += \
4516         src/journal/journald.conf
4517
4518 dist_catalog_DATA = \
4519         catalog/systemd.fr.catalog \
4520         catalog/systemd.it.catalog \
4521         catalog/systemd.pl.catalog \
4522         catalog/systemd.pt_BR.catalog \
4523         catalog/systemd.ru.catalog \
4524         catalog/systemd.catalog
4525
4526 SOCKETS_TARGET_WANTS += \
4527         systemd-journald.socket \
4528         systemd-journald-dev-log.socket \
4529         systemd-journald-audit.socket
4530
4531 SYSINIT_TARGET_WANTS += \
4532         systemd-journald.service \
4533         systemd-journal-flush.service \
4534         systemd-journal-catalog-update.service
4535
4536 EXTRA_DIST += \
4537         units/systemd-journald.service.in \
4538         units/systemd-journal-flush.service.in \
4539         units/systemd-journal-catalog-update.service.in \
4540         src/journal/journald-gperf.gperf
4541
4542 CLEANFILES += \
4543         src/journal/journald-gperf.c
4544
4545 # ------------------------------------------------------------------------------
4546 if HAVE_MICROHTTPD
4547 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
4548
4549 rootlibexec_PROGRAMS += \
4550         systemd-journal-gatewayd
4551
4552 systemd_journal_gatewayd_SOURCES = \
4553         src/journal-remote/journal-gatewayd.c \
4554         src/journal-remote/microhttpd-util.h \
4555         src/journal-remote/microhttpd-util.c
4556
4557 systemd_journal_gatewayd_LDADD = \
4558         libsystemd-logs.la \
4559         libsystemd-journal-internal.la \
4560         libsystemd-internal.la \
4561         libsystemd-shared.la \
4562         $(MICROHTTPD_LIBS)
4563
4564 if HAVE_GNUTLS
4565 systemd_journal_gatewayd_LDADD += \
4566         $(GNUTLS_LIBS)
4567 endif
4568
4569 systemd_journal_gatewayd_CFLAGS = \
4570         $(AM_CFLAGS) \
4571         $(MICROHTTPD_CFLAGS)
4572
4573 systemd_journal_gatewayd_CPPFLAGS = \
4574         $(AM_CPPFLAGS) \
4575         -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\"
4576
4577 dist_systemunit_DATA += \
4578         units/systemd-journal-gatewayd.socket
4579
4580 nodist_systemunit_DATA += \
4581         units/systemd-journal-gatewayd.service
4582
4583 dist_gatewayddocumentroot_DATA = \
4584         src/journal-remote/browse.html
4585
4586 endif
4587
4588 EXTRA_DIST += \
4589         units/systemd-journal-gatewayd.service.in
4590
4591 # ------------------------------------------------------------------------------
4592
4593 systemd_socket_proxyd_SOURCES = \
4594         src/socket-proxy/socket-proxyd.c
4595
4596 systemd_socket_proxyd_LDADD = \
4597         libsystemd-logs.la \
4598         libsystemd-internal.la \
4599         libsystemd-journal-internal.la \
4600         libsystemd-shared.la \
4601         libsystemd-resolve.la
4602
4603 # ------------------------------------------------------------------------------
4604 if ENABLE_COREDUMP
4605 systemd_coredump_SOURCES = \
4606         src/journal/coredump.c \
4607         src/journal/coredump-vacuum.c \
4608         src/journal/coredump-vacuum.h
4609
4610 systemd_coredump_LDADD = \
4611         libsystemd-journal-internal.la \
4612         libsystemd-label.la \
4613         libsystemd-internal.la \
4614         libsystemd-shared.la
4615
4616 if HAVE_ELFUTILS
4617 systemd_coredump_SOURCES += \
4618         src/journal/stacktrace.c \
4619         src/journal/stacktrace.h
4620
4621 systemd_coredump_LDADD += \
4622         $(ELFUTILS_LIBS)
4623 endif
4624
4625 rootlibexec_PROGRAMS += \
4626         systemd-coredump
4627
4628 dist_pkgsysconf_DATA += \
4629         src/journal/coredump.conf
4630
4631 if HAVE_ACL
4632 systemd_coredump_LDADD += \
4633         libsystemd-acl.la
4634 endif
4635
4636 coredumpctl_SOURCES = \
4637         src/journal/coredumpctl.c
4638
4639 coredumpctl_LDADD = \
4640         libsystemd-journal-internal.la \
4641         libsystemd-internal.la \
4642         libsystemd-shared.la
4643
4644 bin_PROGRAMS += \
4645         coredumpctl
4646
4647 manual_tests += \
4648         test-coredump-vacuum
4649
4650 test_coredump_vacuum_SOURCES = \
4651         src/journal/test-coredump-vacuum.c  \
4652         src/journal/coredump-vacuum.c \
4653         src/journal/coredump-vacuum.h
4654
4655 test_coredump_vacuum_LDADD = \
4656         libsystemd-internal.la \
4657         libsystemd-shared.la
4658
4659 dist_bashcompletion_DATA += \
4660         shell-completion/bash/coredumpctl
4661
4662 dist_zshcompletion_DATA += \
4663         shell-completion/zsh/_coredumpctl
4664
4665 sysctl_DATA = \
4666         sysctl.d/50-coredump.conf
4667
4668 CLEANFILES += \
4669         sysctl.d/50-coredump.conf
4670 endif
4671
4672 EXTRA_DIST += \
4673         sysctl.d/50-coredump.conf.in
4674
4675 # ------------------------------------------------------------------------------
4676 if ENABLE_BINFMT
4677 systemd_binfmt_SOURCES = \
4678         src/binfmt/binfmt.c
4679
4680 systemd_binfmt_LDADD = \
4681         libsystemd-shared.la
4682
4683 rootlibexec_PROGRAMS += \
4684         systemd-binfmt
4685
4686 dist_systemunit_DATA += \
4687         units/proc-sys-fs-binfmt_misc.automount \
4688         units/proc-sys-fs-binfmt_misc.mount
4689
4690 nodist_systemunit_DATA += \
4691         units/systemd-binfmt.service
4692
4693 INSTALL_DIRS += \
4694         $(prefix)/lib/binfmt.d \
4695         $(sysconfdir)/binfmt.d
4696
4697 SYSINIT_TARGET_WANTS += \
4698         systemd-binfmt.service \
4699         proc-sys-fs-binfmt_misc.automount
4700
4701 endif
4702
4703 EXTRA_DIST += \
4704         units/systemd-binfmt.service.in
4705
4706 # ------------------------------------------------------------------------------
4707 if ENABLE_VCONSOLE
4708 systemd_vconsole_setup_SOURCES = \
4709         src/vconsole/vconsole-setup.c
4710
4711 systemd_vconsole_setup_LDADD = \
4712         libsystemd-shared.la
4713
4714 rootlibexec_PROGRAMS += \
4715         systemd-vconsole-setup
4716
4717 nodist_systemunit_DATA += \
4718         units/systemd-vconsole-setup.service
4719
4720 nodist_udevrules_DATA += \
4721         src/vconsole/90-vconsole.rules
4722
4723 SYSINIT_TARGET_WANTS += \
4724         systemd-vconsole-setup.service
4725
4726 CLEANFILES += \
4727         src/vconsole/90-vconsole.rules
4728 endif
4729
4730 EXTRA_DIST += \
4731         src/vconsole/90-vconsole.rules.in \
4732         units/systemd-vconsole-setup.service.in
4733
4734 # ------------------------------------------------------------------------------
4735 if ENABLE_BOOTCHART
4736 systemd_bootchart_SOURCES = \
4737         src/bootchart/bootchart.c \
4738         src/bootchart/bootchart.h \
4739         src/bootchart/store.c \
4740         src/bootchart/store.h \
4741         src/bootchart/svg.c \
4742         src/bootchart/svg.h
4743
4744 systemd_bootchart_LDADD = \
4745         libsystemd-journal-internal.la \
4746         libsystemd-shared.la
4747
4748 rootlibexec_PROGRAMS += \
4749         systemd-bootchart
4750
4751 dist_pkgsysconf_DATA += \
4752         src/bootchart/bootchart.conf
4753
4754 nodist_systemunit_DATA += \
4755         units/systemd-bootchart.service
4756
4757 EXTRA_DIST += \
4758         units/systemd-bootchart.service.in
4759
4760 CLEANFILES += \
4761         units/systemd-bootchart.service
4762 endif
4763
4764 # ------------------------------------------------------------------------------
4765 if ENABLE_QUOTACHECK
4766 rootlibexec_PROGRAMS += \
4767         systemd-quotacheck
4768
4769 nodist_systemunit_DATA += \
4770         units/systemd-quotacheck.service
4771
4772 systemd_quotacheck_SOURCES = \
4773         src/quotacheck/quotacheck.c
4774
4775 systemd_quotacheck_LDADD = \
4776         libsystemd-shared.la
4777 endif
4778
4779 EXTRA_DIST += \
4780         units/systemd-quotacheck.service.in
4781
4782 nodist_systemunit_DATA += \
4783         units/quotaon.service
4784
4785 # ------------------------------------------------------------------------------
4786 if ENABLE_RANDOMSEED
4787 rootlibexec_PROGRAMS += \
4788         systemd-random-seed
4789
4790 nodist_systemunit_DATA += \
4791         units/systemd-random-seed.service
4792
4793 systemd_random_seed_SOURCES = \
4794         src/random-seed/random-seed.c
4795
4796 systemd_random_seed_LDADD = \
4797         libsystemd-label.la \
4798         libsystemd-shared.la
4799
4800 SYSINIT_TARGET_WANTS += \
4801         systemd-random-seed.service
4802
4803 endif
4804
4805 EXTRA_DIST += \
4806         units/systemd-random-seed.service.in
4807
4808 # ------------------------------------------------------------------------------
4809 if ENABLE_BACKLIGHT
4810 rootlibexec_PROGRAMS += \
4811         systemd-backlight
4812
4813 nodist_systemunit_DATA += \
4814         units/systemd-backlight@.service
4815
4816 systemd_backlight_SOURCES = \
4817         src/backlight/backlight.c
4818
4819 systemd_backlight_LDADD = \
4820         libsystemd-label.la \
4821         libudev-internal.la \
4822         libsystemd-shared.la
4823 endif
4824
4825 EXTRA_DIST += \
4826         units/systemd-backlight@.service.in
4827
4828 # ------------------------------------------------------------------------------
4829 if ENABLE_RFKILL
4830 rootlibexec_PROGRAMS += \
4831         systemd-rfkill
4832
4833 nodist_systemunit_DATA += \
4834         units/systemd-rfkill@.service
4835
4836 systemd_rfkill_SOURCES = \
4837         src/rfkill/rfkill.c
4838
4839 systemd_rfkill_LDADD = \
4840         libsystemd-label.la \
4841         libudev-internal.la \
4842         libsystemd-shared.la
4843 endif
4844
4845 EXTRA_DIST += \
4846         units/systemd-rfkill@.service.in
4847
4848 # ------------------------------------------------------------------------------
4849 if HAVE_LIBCRYPTSETUP
4850 rootlibexec_PROGRAMS += \
4851         systemd-cryptsetup
4852
4853 systemgenerator_PROGRAMS += \
4854         systemd-cryptsetup-generator
4855
4856 dist_systemunit_DATA += \
4857         units/cryptsetup.target \
4858         units/cryptsetup-pre.target
4859
4860 systemd_cryptsetup_SOURCES = \
4861         src/cryptsetup/cryptsetup.c
4862
4863 systemd_cryptsetup_CFLAGS = \
4864         $(AM_CFLAGS) \
4865         $(LIBCRYPTSETUP_CFLAGS)
4866
4867 systemd_cryptsetup_LDADD = \
4868         libsystemd-label.la \
4869         libudev-internal.la \
4870         libsystemd-shared.la \
4871         $(LIBCRYPTSETUP_LIBS)
4872
4873 systemd_cryptsetup_generator_SOURCES = \
4874         src/cryptsetup/cryptsetup-generator.c
4875
4876 systemd_cryptsetup_generator_LDADD = \
4877         libsystemd-label.la \
4878         libsystemd-shared.la
4879
4880 SYSINIT_TARGET_WANTS += \
4881         cryptsetup.target
4882
4883 endif
4884
4885 # ------------------------------------------------------------------------------
4886 if ENABLE_HOSTNAMED
4887 systemd_hostnamed_SOURCES = \
4888         src/hostname/hostnamed.c
4889
4890 systemd_hostnamed_LDADD = \
4891         libsystemd-label.la \
4892         libsystemd-internal.la \
4893         libsystemd-shared.la
4894
4895 rootlibexec_PROGRAMS += \
4896         systemd-hostnamed
4897
4898 nodist_systemunit_DATA += \
4899         units/systemd-hostnamed.service
4900
4901 dist_systemunit_DATA_busnames += \
4902         units/org.freedesktop.hostname1.busname
4903
4904 dist_dbuspolicy_DATA += \
4905         src/hostname/org.freedesktop.hostname1.conf
4906
4907 dist_dbussystemservice_DATA += \
4908         src/hostname/org.freedesktop.hostname1.service
4909
4910 polkitpolicy_files += \
4911         src/hostname/org.freedesktop.hostname1.policy
4912
4913 SYSTEM_UNIT_ALIASES += \
4914         systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
4915
4916 BUSNAMES_TARGET_WANTS += \
4917         org.freedesktop.hostname1.busname
4918
4919 hostnamectl_SOURCES = \
4920         src/hostname/hostnamectl.c
4921
4922 hostnamectl_LDADD = \
4923         libsystemd-internal.la \
4924         libsystemd-shared.la
4925
4926 bin_PROGRAMS += \
4927         hostnamectl
4928
4929 dist_bashcompletion_DATA += \
4930         shell-completion/bash/hostnamectl
4931
4932 dist_zshcompletion_DATA += \
4933         shell-completion/zsh/_hostnamectl
4934
4935 endif
4936
4937 polkitpolicy_in_files += \
4938         src/hostname/org.freedesktop.hostname1.policy.in
4939
4940 EXTRA_DIST += \
4941         units/systemd-hostnamed.service.in
4942
4943 # ------------------------------------------------------------------------------
4944 dist_systemunit_DATA_busnames += \
4945         units/org.freedesktop.systemd1.busname
4946
4947 BUSNAMES_TARGET_WANTS += \
4948         org.freedesktop.systemd1.busname
4949
4950 # ------------------------------------------------------------------------------
4951 if ENABLE_LOCALED
4952 systemd_localed_SOURCES = \
4953         src/locale/localed.c
4954
4955 systemd_localed_LDADD = \
4956         libsystemd-label.la \
4957         libsystemd-internal.la \
4958         libsystemd-shared.la \
4959         $(XKBCOMMON_LIBS)
4960
4961 systemd_localed_CFLAGS = \
4962         $(AM_CFLAGS) \
4963         $(XKBCOMMON_CFLAGS)
4964
4965 nodist_systemunit_DATA += \
4966         units/systemd-localed.service
4967
4968 dist_systemunit_DATA_busnames += \
4969         units/org.freedesktop.locale1.busname
4970
4971 rootlibexec_PROGRAMS += \
4972         systemd-localed
4973
4974 dist_dbuspolicy_DATA += \
4975         src/locale/org.freedesktop.locale1.conf
4976
4977 dist_dbussystemservice_DATA += \
4978         src/locale/org.freedesktop.locale1.service
4979
4980 polkitpolicy_files += \
4981         src/locale/org.freedesktop.locale1.policy
4982
4983 SYSTEM_UNIT_ALIASES += \
4984         systemd-localed.service dbus-org.freedesktop.locale1.service
4985
4986 BUSNAMES_TARGET_WANTS += \
4987         org.freedesktop.locale1.busname
4988
4989 dist_pkgdata_DATA += \
4990         src/locale/kbd-model-map
4991
4992 dist_noinst_SCRIPT = \
4993         src/locale/generate-kbd-model-map
4994
4995 localectl_SOURCES = \
4996         src/locale/localectl.c
4997
4998 localectl_LDADD = \
4999         libsystemd-internal.la \
5000         libsystemd-shared.la
5001
5002 bin_PROGRAMS += \
5003         localectl
5004
5005 dist_bashcompletion_DATA += \
5006         shell-completion/bash/localectl
5007
5008 dist_zshcompletion_DATA += \
5009         shell-completion/zsh/_localectl
5010
5011 endif
5012
5013 .PHONY: update-kbd-model-map
5014
5015 polkitpolicy_in_files += \
5016         src/locale/org.freedesktop.locale1.policy.in
5017
5018 EXTRA_DIST += \
5019         units/systemd-localed.service.in
5020
5021 # ------------------------------------------------------------------------------
5022 if ENABLE_TIMEDATED
5023 systemd_timedated_SOURCES = \
5024         src/timedate/timedated.c
5025
5026 systemd_timedated_LDADD = \
5027         libsystemd-label.la \
5028         libsystemd-internal.la \
5029         libsystemd-shared.la
5030
5031 rootlibexec_PROGRAMS += \
5032         systemd-timedated
5033
5034 dist_dbussystemservice_DATA += \
5035         src/timedate/org.freedesktop.timedate1.service
5036
5037 dist_dbuspolicy_DATA += \
5038         src/timedate/org.freedesktop.timedate1.conf
5039
5040 nodist_systemunit_DATA += \
5041         units/systemd-timedated.service
5042
5043 dist_systemunit_DATA_busnames += \
5044         units/org.freedesktop.timedate1.busname
5045
5046 polkitpolicy_files += \
5047         src/timedate/org.freedesktop.timedate1.policy
5048
5049 SYSTEM_UNIT_ALIASES += \
5050         systemd-timedated.service dbus-org.freedesktop.timedate1.service
5051
5052 BUSNAMES_TARGET_WANTS += \
5053         org.freedesktop.timedate1.busname
5054
5055 timedatectl_SOURCES = \
5056         src/timedate/timedatectl.c
5057
5058 timedatectl_LDADD = \
5059         libsystemd-internal.la \
5060         libsystemd-shared.la
5061
5062 bin_PROGRAMS += \
5063         timedatectl
5064
5065 dist_bashcompletion_DATA += \
5066         shell-completion/bash/timedatectl
5067
5068 dist_zshcompletion_DATA += \
5069         shell-completion/zsh/_timedatectl
5070 endif
5071
5072 polkitpolicy_in_files += \
5073         src/timedate/org.freedesktop.timedate1.policy.in
5074
5075 EXTRA_DIST += \
5076         units/systemd-timedated.service.in
5077
5078 # ------------------------------------------------------------------------------
5079 if ENABLE_TIMESYNCD
5080 systemd_timesyncd_SOURCES = \
5081         src/timesync/timesyncd.c \
5082         src/timesync/timesyncd-manager.c \
5083         src/timesync/timesyncd-manager.h \
5084         src/timesync/timesyncd-conf.c \
5085         src/timesync/timesyncd-conf.h \
5086         src/timesync/timesyncd-server.c \
5087         src/timesync/timesyncd-server.h
5088
5089 nodist_systemd_timesyncd_SOURCES = \
5090         src/timesync/timesyncd-gperf.c
5091
5092 EXTRA_DIST += \
5093         src/timesync/timesyncd-gperf.gperf
5094
5095 CLEANFILES += \
5096         src/timesync/timesyncd-gperf.c
5097
5098 systemd_timesyncd_LDADD = \
5099         libsystemd-resolve.la \
5100         libsystemd-network.la \
5101         libsystemd-label.la \
5102         libsystemd-internal.la \
5103         libsystemd-shared.la
5104
5105 rootlibexec_PROGRAMS += \
5106         systemd-timesyncd
5107
5108 nodist_systemunit_DATA += \
5109         units/systemd-timesyncd.service
5110
5111 GENERAL_ALIASES += \
5112         $(systemunitdir)/systemd-timesyncd.service $(pkgsysconfdir)/system/sysinit.target.wants/systemd-timesyncd.service
5113
5114 EXTRA_DIST += \
5115         units/systemd-timesyncd.service.in
5116
5117 nodist_pkgsysconf_DATA += \
5118         src/timesync/timesyncd.conf
5119
5120 EXTRA_DIST += \
5121         src/timesync/timesyncd.conf.in
5122
5123 CLEANFILES += \
5124         src/timesync/timesyncd.conf
5125 endif
5126
5127 # ------------------------------------------------------------------------------
5128 if HAVE_MYHOSTNAME
5129 libnss_myhostname_la_SOURCES = \
5130         src/nss-myhostname/nss-myhostname.sym \
5131         src/nss-myhostname/nss-myhostname.c
5132
5133 libnss_myhostname_la_LDFLAGS = \
5134         $(AM_LDFLAGS) \
5135         -module \
5136         -export-dynamic \
5137         -avoid-version \
5138         -shared \
5139         -shrext .so.2 \
5140         -Wl,--version-script=$(top_srcdir)/src/nss-myhostname/nss-myhostname.sym
5141
5142 libnss_myhostname_la_LIBADD = \
5143         libsystemd-shared.la \
5144         libsystemd-internal.la
5145
5146 lib_LTLIBRARIES += \
5147         libnss_myhostname.la
5148 endif
5149
5150 # ------------------------------------------------------------------------------
5151 if ENABLE_MACHINED
5152 systemd_machined_SOURCES = \
5153         src/machine/machined.c \
5154         src/machine/machined.h
5155
5156 systemd_machined_LDADD = \
5157         libsystemd-machine-core.la
5158
5159 rootlibexec_PROGRAMS += \
5160         systemd-machined
5161
5162 libsystemd_machine_core_la_SOURCES = \
5163         src/machine/machine.c \
5164         src/machine/machine.h \
5165         src/machine/machined-dbus.c \
5166         src/machine/machine-dbus.c \
5167         src/machine/machine-dbus.h \
5168         src/machine/image-dbus.c \
5169         src/machine/image-dbus.h
5170
5171 libsystemd_machine_core_la_LIBADD = \
5172         libsystemd-label.la \
5173         libsystemd-internal.la \
5174         libudev-internal.la \
5175         libsystemd-shared.la
5176
5177 noinst_LTLIBRARIES += \
5178         libsystemd-machine-core.la
5179
5180 machinectl_SOURCES = \
5181         src/machine/machinectl.c
5182
5183 machinectl_LDADD = \
5184         libsystemd-internal.la \
5185         libsystemd-logs.la \
5186         libsystemd-journal-internal.la \
5187         libsystemd-shared.la
5188
5189 rootbin_PROGRAMS += \
5190         machinectl
5191
5192 dist_bashcompletion_DATA += \
5193         shell-completion/bash/machinectl
5194
5195 test_machine_tables_SOURCES = \
5196         src/machine/test-machine-tables.c
5197
5198 test_machine_tables_LDADD = \
5199         libsystemd-machine-core.la
5200
5201 tests += \
5202         test-machine-tables
5203
5204 nodist_systemunit_DATA += \
5205         units/systemd-machined.service
5206
5207 dist_systemunit_DATA += \
5208         units/machine.slice
5209
5210 dist_systemunit_DATA_busnames += \
5211         units/org.freedesktop.machine1.busname
5212
5213 dist_dbussystemservice_DATA += \
5214         src/machine/org.freedesktop.machine1.service
5215
5216 dist_dbuspolicy_DATA += \
5217         src/machine/org.freedesktop.machine1.conf
5218
5219 polkitpolicy_files += \
5220         src/machine/org.freedesktop.machine1.policy
5221
5222 polkitpolicy_in_files += \
5223         src/machine/org.freedesktop.machine1.policy.in
5224
5225 dist_zshcompletion_DATA += \
5226         shell-completion/zsh/_machinectl \
5227         shell-completion/zsh/_sd_machines
5228
5229 SYSTEM_UNIT_ALIASES += \
5230         systemd-machined.service dbus-org.freedesktop.machine1.service
5231
5232 BUSNAMES_TARGET_WANTS += \
5233         org.freedesktop.machine1.busname
5234
5235 EXTRA_DIST += \
5236         units/systemd-machined.service.in
5237
5238 libnss_mymachines_la_SOURCES = \
5239         src/nss-mymachines/nss-mymachines.sym \
5240         src/nss-mymachines/nss-mymachines.c
5241
5242 libnss_mymachines_la_LDFLAGS = \
5243         $(AM_LDFLAGS) \
5244         -module \
5245         -export-dynamic \
5246         -avoid-version \
5247         -shared \
5248         -shrext .so.2 \
5249         -Wl,--version-script=$(top_srcdir)/src/nss-mymachines/nss-mymachines.sym
5250
5251 libnss_mymachines_la_LIBADD = \
5252         libsystemd-shared.la \
5253         libsystemd-internal.la
5254
5255 lib_LTLIBRARIES += \
5256         libnss_mymachines.la
5257
5258 endif
5259
5260 # ------------------------------------------------------------------------------
5261 if ENABLE_IMPORTD
5262
5263 if HAVE_LIBCURL
5264 if HAVE_XZ
5265 if HAVE_ZLIB
5266 if HAVE_BZIP2
5267 if HAVE_GCRYPT
5268
5269 rootlibexec_PROGRAMS += \
5270         systemd-importd \
5271         systemd-import
5272
5273 systemd_importd_SOURCES = \
5274         src/import/importd.c \
5275         src/import/importd.h
5276
5277 systemd_importd_CFLAGS = \
5278         $(AM_CFLAGS) \
5279         -D SYSTEMD_IMPORT_PATH=\"$(rootlibexecdir)/systemd-import\" \
5280         -D VENDOR_KEYRING_PATH=\"$(rootlibexecdir)/import-pubring.gpg\" \
5281         -D USER_KEYRING_PATH=\"$(pkgsysconfdir)/import-pubring.gpg\"
5282
5283 systemd_importd_LDADD = \
5284         libsystemd-internal.la \
5285         libsystemd-shared.la
5286
5287 systemd_import_SOURCES = \
5288         src/import/import.c \
5289         src/import/import-raw.c \
5290         src/import/import-raw.h \
5291         src/import/import-tar.c \
5292         src/import/import-tar.h \
5293         src/import/import-dkr.c \
5294         src/import/import-dkr.h \
5295         src/import/import-job.c \
5296         src/import/import-job.h \
5297         src/import/import-common.c \
5298         src/import/import-common.h \
5299         src/import/curl-util.c \
5300         src/import/curl-util.h \
5301         src/import/aufs-util.c \
5302         src/import/aufs-util.h \
5303         src/import/qcow2-util.c \
5304         src/import/qcow2-util.h
5305
5306 systemd_import_CFLAGS = \
5307         $(AM_CFLAGS) \
5308         $(LIBCURL_CFLAGS) \
5309         $(XZ_CFLAGS) \
5310         $(ZLIB_CFLAGS) \
5311         $(GCRYPT_CFLAGS) \
5312         -D VENDOR_KEYRING_PATH=\"$(rootlibexecdir)/import-pubring.gpg\" \
5313         -D USER_KEYRING_PATH=\"$(pkgsysconfdir)/import-pubring.gpg\"
5314
5315 systemd_import_LDADD = \
5316         libsystemd-internal.la \
5317         libsystemd-label.la \
5318         libsystemd-shared.la \
5319         $(LIBCURL_LIBS) \
5320         $(XZ_LIBS) \
5321         $(ZLIB_LIBS) \
5322         -lbz2 \
5323         $(GCRYPT_LIBS)
5324
5325 dist_rootlibexec_DATA = \
5326         src/import/import-pubring.gpg
5327
5328 nodist_systemunit_DATA += \
5329         units/systemd-importd.service
5330
5331 EXTRA_DIST += \
5332         units/systemd-importd.service.in
5333
5334 dist_systemunit_DATA_busnames += \
5335         units/org.freedesktop.import1.busname
5336
5337 BUSNAMES_TARGET_WANTS += \
5338         org.freedesktop.import1.busname
5339
5340 SYSTEM_UNIT_ALIASES += \
5341         systemd-importd.service dbus-org.freedesktop.import1.service
5342
5343 dist_dbussystemservice_DATA += \
5344         src/import/org.freedesktop.import1.service
5345
5346 dist_dbuspolicy_DATA += \
5347         src/import/org.freedesktop.import1.conf
5348
5349 polkitpolicy_files += \
5350         src/import/org.freedesktop.import1.policy
5351
5352 polkitpolicy_in_files += \
5353         src/import/org.freedesktop.import1.policy.in
5354
5355 manual_tests += \
5356         test-qcow2
5357
5358 test_qcow2_SOURCES = \
5359         src/import/test-qcow2.c \
5360         src/import/qcow2-util.c \
5361         src/import/qcow2-util.h
5362
5363 test_qcow2_CFLAGS = \
5364         $(AM_CFLAGS) \
5365         $(ZLIB_CFLAGS)
5366
5367 test_qcow2_LDADD = \
5368         libsystemd-internal.la \
5369         libsystemd-label.la \
5370         libsystemd-shared.la \
5371         $(ZLIB_LIBS)
5372
5373 endif
5374 endif
5375 endif
5376 endif
5377 endif
5378
5379 endif
5380
5381 # ------------------------------------------------------------------------------
5382 if ENABLE_RESOLVED
5383 systemd_resolved_SOURCES = \
5384         src/resolve/resolved.c \
5385         src/resolve/resolved-manager.c \
5386         src/resolve/resolved-manager.h \
5387         src/resolve/resolved-conf.c \
5388         src/resolve/resolved-conf.h \
5389         src/resolve/resolved-bus.c \
5390         src/resolve/resolved-bus.h \
5391         src/resolve/resolved-link.h \
5392         src/resolve/resolved-link.c \
5393         src/resolve/resolved-def.h \
5394         src/resolve/resolved-dns-domain.h \
5395         src/resolve/resolved-dns-domain.c \
5396         src/resolve/resolved-dns-rr.h \
5397         src/resolve/resolved-dns-rr.c \
5398         src/resolve/resolved-dns-question.h \
5399         src/resolve/resolved-dns-question.c \
5400         src/resolve/resolved-dns-answer.h \
5401         src/resolve/resolved-dns-answer.c \
5402         src/resolve/resolved-dns-packet.h \
5403         src/resolve/resolved-dns-packet.c \
5404         src/resolve/resolved-dns-query.h \
5405         src/resolve/resolved-dns-query.c \
5406         src/resolve/resolved-dns-transaction.h \
5407         src/resolve/resolved-dns-transaction.c \
5408         src/resolve/resolved-dns-scope.h \
5409         src/resolve/resolved-dns-scope.c \
5410         src/resolve/resolved-dns-server.h \
5411         src/resolve/resolved-dns-server.c \
5412         src/resolve/resolved-dns-cache.h \
5413         src/resolve/resolved-dns-cache.c \
5414         src/resolve/resolved-dns-zone.h \
5415         src/resolve/resolved-dns-zone.c \
5416         src/resolve/resolved-dns-stream.h \
5417         src/resolve/resolved-dns-stream.c \
5418         src/resolve/dns-type.c \
5419         src/resolve/dns-type.h \
5420         src/resolve/dns_type-from-name.h \
5421         src/resolve/dns_type-to-name.h
5422
5423 nodist_systemd_resolved_SOURCES = \
5424         src/resolve/resolved-gperf.c
5425
5426 EXTRA_DIST += \
5427         src/resolve/resolved-gperf.gperf \
5428         src/resolve/dns_type-from-name.gperf
5429
5430 CLEANFILES += \
5431         src/resolve/resolved-gperf.c
5432
5433 systemd_resolved_LDADD = \
5434         libsystemd-network.la \
5435         libsystemd-label.la \
5436         libsystemd-internal.la \
5437         libsystemd-shared.la \
5438         $(LIBIDN_LIBS)
5439
5440 rootlibexec_PROGRAMS += \
5441         systemd-resolved
5442
5443 nodist_systemunit_DATA += \
5444         units/systemd-resolved.service
5445
5446 dist_systemunit_DATA_busnames += \
5447         units/org.freedesktop.resolve1.busname
5448
5449 dist_dbuspolicy_DATA += \
5450         src/resolve/org.freedesktop.resolve1.conf
5451
5452 dist_dbussystemservice_DATA += \
5453         src/resolve/org.freedesktop.resolve1.service
5454
5455 EXTRA_DIST += \
5456         units/systemd-resolved.service.in
5457
5458 SYSTEM_UNIT_ALIASES += \
5459         systemd-resolved.service dbus-org.freedesktop.resolve1.service
5460
5461 BUSNAMES_TARGET_WANTS += \
5462         org.freedesktop.resolve1.busname
5463
5464 GENERAL_ALIASES += \
5465         $(systemunitdir)/systemd-resolved.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-resolved.service
5466
5467 nodist_pkgsysconf_DATA += \
5468         src/resolve/resolved.conf
5469
5470 EXTRA_DIST += \
5471         src/resolve/resolved.conf.in
5472
5473 CLEANFILES += \
5474         src/resolve/resolved.conf
5475
5476 tests += \
5477         test-dns-domain
5478
5479 test_dns_domain_SOURCES = \
5480         src/resolve/resolved-dns-domain.h \
5481         src/resolve/resolved-dns-domain.c \
5482         src/resolve/test-dns-domain.c
5483
5484 test_dns_domain_LDADD = \
5485         libsystemd-network.la \
5486         libsystemd-label.la \
5487         libsystemd-internal.la \
5488         libsystemd-shared.la \
5489         $(LIBIDN_LIBS)
5490
5491 libnss_resolve_la_SOURCES = \
5492         src/nss-resolve/nss-resolve.sym \
5493         src/nss-resolve/nss-resolve.c
5494
5495 libnss_resolve_la_LDFLAGS = \
5496         $(AM_LDFLAGS) \
5497         -module \
5498         -export-dynamic \
5499         -avoid-version \
5500         -shared \
5501         -shrext .so.2 \
5502         -Wl,--version-script=$(top_srcdir)/src/nss-resolve/nss-resolve.sym
5503
5504 libnss_resolve_la_LIBADD = \
5505         libsystemd-internal.la \
5506         libsystemd-shared.la
5507
5508 lib_LTLIBRARIES += \
5509         libnss_resolve.la
5510
5511 systemd_resolve_host_SOURCES = \
5512         src/resolve-host/resolve-host.c \
5513         src/resolve/resolved-dns-packet.c \
5514         src/resolve/resolved-dns-packet.h \
5515         src/resolve/resolved-dns-rr.c \
5516         src/resolve/resolved-dns-rr.h \
5517         src/resolve/resolved-dns-answer.c \
5518         src/resolve/resolved-dns-answer.h \
5519         src/resolve/resolved-dns-question.c \
5520         src/resolve/resolved-dns-question.h \
5521         src/resolve/resolved-dns-domain.c \
5522         src/resolve/resolved-dns-domain.h \
5523         src/resolve/dns-type.c \
5524         src/resolve/dns-type.h \
5525         src/resolve/dns_type-from-name.h \
5526         src/resolve/dns_type-to-name.h
5527
5528 systemd_resolve_host_LDADD = \
5529         libsystemd-internal.la \
5530         libsystemd-shared.la \
5531         $(LIBIDN_LIBS)
5532
5533 rootlibexec_PROGRAMS += \
5534         systemd-resolve-host
5535
5536 endif
5537
5538 # ------------------------------------------------------------------------------
5539 if ENABLE_NETWORKD
5540 rootlibexec_PROGRAMS += \
5541         systemd-networkd
5542
5543 systemd_networkd_SOURCES = \
5544         src/network/networkd.c
5545
5546 systemd_networkd_LDADD = \
5547         libsystemd-networkd-core.la
5548
5549 if HAVE_LIBIPTC
5550 systemd_networkd_LDADD += \
5551         libsystemd-fw.la
5552 endif
5553
5554 noinst_LTLIBRARIES += \
5555         libsystemd-networkd-core.la
5556
5557 libsystemd_networkd_core_la_CFLAGS = \
5558         $(AM_CFLAGS)
5559
5560 libsystemd_networkd_core_la_SOURCES = \
5561         src/libsystemd-network/network-internal.h \
5562         src/network/networkd.h \
5563         src/network/networkd-link.h \
5564         src/network/networkd-netdev.h \
5565         src/network/networkd-netdev-tunnel.h \
5566         src/network/networkd-netdev-veth.h \
5567         src/network/networkd-netdev-vxlan.h \
5568         src/network/networkd-netdev-vlan.h \
5569         src/network/networkd-netdev-macvlan.h \
5570         src/network/networkd-netdev-ipvlan.h \
5571         src/network/networkd-netdev-dummy.h \
5572         src/network/networkd-netdev-tuntap.h \
5573         src/network/networkd-netdev-bond.h \
5574         src/network/networkd-netdev-bridge.h \
5575         src/network/networkd-netdev.c \
5576         src/network/networkd-netdev-tunnel.c \
5577         src/network/networkd-netdev-veth.c \
5578         src/network/networkd-netdev-vxlan.c \
5579         src/network/networkd-netdev-vlan.c \
5580         src/network/networkd-netdev-macvlan.c \
5581         src/network/networkd-netdev-ipvlan.c \
5582         src/network/networkd-netdev-dummy.c \
5583         src/network/networkd-netdev-tuntap.c \
5584         src/network/networkd-netdev-bond.c \
5585         src/network/networkd-netdev-bridge.c \
5586         src/network/networkd-link.c \
5587         src/network/networkd-ipv4ll.c \
5588         src/network/networkd-dhcp4.c \
5589         src/network/networkd-dhcp6.c \
5590         src/network/networkd-network.c \
5591         src/network/networkd-address.c \
5592         src/network/networkd-route.c \
5593         src/network/networkd-manager.c \
5594         src/network/networkd-fdb.c \
5595         src/network/networkd-address-pool.c
5596
5597 nodist_libsystemd_networkd_core_la_SOURCES = \
5598         src/network/networkd-network-gperf.c \
5599         src/network/networkd-netdev-gperf.c
5600
5601 libsystemd_networkd_core_la_LIBADD = \
5602         libudev-internal.la \
5603         libsystemd-internal.la \
5604         libsystemd-network.la \
5605         libsystemd-label.la \
5606         libsystemd-shared.la
5607
5608 rootlibexec_PROGRAMS += \
5609         systemd-networkd-wait-online
5610
5611 systemd_networkd_wait_online_CFLAGS = \
5612         $(AM_CFLAGS)
5613
5614 systemd_networkd_wait_online_SOURCES = \
5615         src/libsystemd-network/network-internal.h \
5616         src/network/networkd-wait-online.h \
5617         src/network/networkd-wait-online-link.h \
5618         src/network/networkd-wait-online.c \
5619         src/network/networkd-wait-online-manager.c \
5620         src/network/networkd-wait-online-link.c
5621
5622 systemd_networkd_wait_online_LDADD = \
5623         libsystemd-network.la \
5624         libudev-internal.la \
5625         libsystemd-internal.la \
5626         libsystemd-shared.la
5627
5628 rootbin_PROGRAMS += \
5629         networkctl
5630
5631 networkctl_SOURCES = \
5632         src/network/networkctl.c
5633
5634 networkctl_LDADD = \
5635         libsystemd-internal.la \
5636         libudev-internal.la \
5637         libsystemd-shared.la \
5638         libsystemd-network.la
5639
5640 test_network_SOURCES = \
5641         src/network/test-network.c
5642
5643 test_network_LDADD = \
5644         libsystemd-networkd-core.la
5645
5646 if HAVE_LIBIPTC
5647 test_network_LDADD += \
5648         libsystemd-fw.la
5649 endif
5650
5651 test_network_tables_SOURCES = \
5652         src/network/test-network-tables.c \
5653         src/shared/test-tables.h
5654
5655 test_network_tables_LDADD = \
5656         libsystemd-networkd-core.la \
5657         libudev-core.la
5658
5659 if HAVE_LIBIPTC
5660 test_network_tables_LDADD += \
5661         libsystemd-fw.la
5662 endif
5663
5664 tests += \
5665         test-network \
5666         test-network-tables
5667
5668 nodist_systemunit_DATA += \
5669         units/systemd-networkd.service \
5670         units/systemd-networkd-wait-online.service
5671
5672 GENERAL_ALIASES += \
5673         $(systemunitdir)/systemd-networkd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-networkd.service \
5674         $(systemunitdir)/systemd-networkd-wait-online.service $(pkgsysconfdir)/system/network-online.target.wants/systemd-networkd-wait-online.service
5675
5676 EXTRA_DIST += \
5677         src/network/networkd-network-gperf.gperf \
5678         src/network/networkd-netdev-gperf.gperf \
5679         units/systemd-networkd.service.in \
5680         units/systemd-networkd-wait-online.service.in
5681
5682 CLEANFILES += \
5683         src/network/networkd-network-gperf.c \
5684         src/network/networkd-netdev-gperf.c
5685 endif
5686
5687 # ------------------------------------------------------------------------------
5688 if ENABLE_LOGIND
5689 systemd_logind_SOURCES = \
5690         src/login/logind.c \
5691         src/login/logind.h
5692
5693 nodist_systemd_logind_SOURCES = \
5694         src/login/logind-gperf.c
5695
5696 systemd_logind_LDADD = \
5697         libsystemd-logind-core.la
5698
5699 libsystemd_logind_core_la_SOURCES = \
5700         src/login/logind-core.c \
5701         src/login/logind-device.c \
5702         src/login/logind-device.h \
5703         src/login/logind-button.c \
5704         src/login/logind-button.h \
5705         src/login/logind-action.c \
5706         src/login/logind-action.h \
5707         src/login/logind-seat.c \
5708         src/login/logind-seat.h \
5709         src/login/logind-session.c \
5710         src/login/logind-session.h \
5711         src/login/logind-session-device.c \
5712         src/login/logind-session-device.h \
5713         src/login/logind-user.c \
5714         src/login/logind-user.h \
5715         src/login/logind-inhibit.c \
5716         src/login/logind-inhibit.h \
5717         src/login/logind-dbus.c \
5718         src/login/logind-session-dbus.c \
5719         src/login/logind-seat-dbus.c \
5720         src/login/logind-user-dbus.c \
5721         src/login/logind-acl.h
5722
5723 libsystemd_logind_core_la_LIBADD = \
5724         libsystemd-label.la \
5725         libsystemd-internal.la \
5726         libudev-internal.la \
5727         libsystemd-shared.la
5728
5729 if HAVE_ACL
5730 libsystemd_logind_core_la_SOURCES += \
5731         src/login/logind-acl.c
5732
5733 libsystemd_logind_core_la_LIBADD += \
5734         libsystemd-acl.la
5735 endif
5736
5737 noinst_LTLIBRARIES += \
5738         libsystemd-logind-core.la
5739
5740 systemd_user_sessions_SOURCES = \
5741         src/login/user-sessions.c
5742
5743 systemd_user_sessions_LDADD = \
5744         libsystemd-shared.la
5745
5746 rootlibexec_PROGRAMS += \
5747         systemd-logind \
5748         systemd-user-sessions
5749
5750 loginctl_SOURCES = \
5751         src/login/loginctl.c \
5752         src/login/sysfs-show.h \
5753         src/login/sysfs-show.c
5754
5755 loginctl_LDADD = \
5756         libsystemd-internal.la \
5757         libsystemd-logs.la \
5758         libsystemd-journal-internal.la \
5759         libudev-internal.la \
5760         libsystemd-shared.la
5761
5762 rootbin_PROGRAMS += \
5763         loginctl
5764
5765 dist_bashcompletion_DATA += \
5766         shell-completion/bash/loginctl
5767
5768 dist_zshcompletion_DATA += \
5769         shell-completion/zsh/_loginctl \
5770         shell-completion/zsh/_systemd-inhibit
5771
5772 systemd_inhibit_SOURCES = \
5773         src/login/inhibit.c
5774
5775 systemd_inhibit_LDADD = \
5776         libsystemd-internal.la \
5777         libsystemd-shared.la
5778
5779 rootbin_PROGRAMS += \
5780         systemd-inhibit
5781
5782 test_login_SOURCES = \
5783         src/libsystemd/sd-login/test-login.c
5784
5785 test_login_LDADD = \
5786         libsystemd-internal.la \
5787         libsystemd-shared.la
5788
5789 test_login_shared_SOURCES = \
5790         src/login/test-login-shared.c
5791
5792 test_login_shared_LDADD = \
5793         libsystemd-internal.la \
5794         libsystemd-shared.la
5795
5796 test_inhibit_SOURCES = \
5797         src/login/test-inhibit.c
5798
5799 test_inhibit_LDADD = \
5800         libsystemd-internal.la \
5801         libsystemd-shared.la
5802
5803 test_login_tables_SOURCES = \
5804         src/login/test-login-tables.c
5805
5806 test_login_tables_LDADD = \
5807         libsystemd-logind-core.la
5808
5809 manual_tests += \
5810         test-login \
5811         test-inhibit
5812
5813 tests += \
5814         test-login-tables \
5815         test-login-shared
5816
5817 if HAVE_PAM
5818 pam_systemd_la_SOURCES = \
5819         src/login/pam_systemd.sym \
5820         src/login/pam_systemd.c
5821
5822 pam_systemd_la_CFLAGS = \
5823         $(AM_CFLAGS) \
5824         $(PAM_CFLAGS) \
5825         -fvisibility=hidden
5826
5827 pam_systemd_la_LDFLAGS = \
5828         $(AM_LDFLAGS) \
5829         -module \
5830         -export-dynamic \
5831         -avoid-version \
5832         -shared \
5833         -Wl,--version-script=$(top_srcdir)/src/login/pam_systemd.sym
5834
5835 pam_systemd_la_LIBADD = \
5836         libsystemd-internal.la \
5837         libsystemd-shared.la \
5838         $(PAM_LIBS)
5839
5840 pamlib_LTLIBRARIES = \
5841         pam_systemd.la
5842
5843 dist_pamconf_DATA = \
5844         src/login/systemd-user
5845 endif
5846
5847 nodist_systemunit_DATA += \
5848         units/systemd-logind.service \
5849         units/systemd-user-sessions.service
5850
5851 dist_systemunit_DATA += \
5852         units/user.slice
5853
5854 dist_systemunit_DATA_busnames += \
5855         units/org.freedesktop.login1.busname
5856
5857 dist_dbussystemservice_DATA += \
5858         src/login/org.freedesktop.login1.service
5859
5860 dist_dbuspolicy_DATA += \
5861         src/login/org.freedesktop.login1.conf
5862
5863 dist_pkgsysconf_DATA += \
5864         src/login/logind.conf
5865
5866 polkitpolicy_files += \
5867         src/login/org.freedesktop.login1.policy
5868
5869 INSTALL_DIRS += \
5870         $(systemdstatedir)
5871
5872 MULTI_USER_TARGET_WANTS += \
5873         systemd-logind.service \
5874         systemd-user-sessions.service
5875
5876 SYSTEM_UNIT_ALIASES += \
5877         systemd-logind.service dbus-org.freedesktop.login1.service
5878
5879 BUSNAMES_TARGET_WANTS += \
5880         org.freedesktop.login1.busname
5881
5882 dist_udevrules_DATA += \
5883         src/login/70-uaccess.rules \
5884         src/login/70-power-switch.rules
5885
5886 nodist_udevrules_DATA += \
5887         src/login/71-seat.rules \
5888         src/login/73-seat-late.rules
5889
5890 CLEANFILES += \
5891         src/login/logind-gperf.c \
5892         src/login/71-seat.rules \
5893         src/login/73-seat-late.rules
5894 endif
5895
5896 polkitpolicy_in_files += \
5897         src/login/org.freedesktop.login1.policy.in
5898
5899 EXTRA_DIST += \
5900         src/login/logind-gperf.gperf \
5901         src/login/71-seat.rules.in \
5902         src/login/73-seat-late.rules.in \
5903         units/systemd-logind.service.in \
5904         units/systemd-user-sessions.service.in
5905
5906 # ------------------------------------------------------------------------------
5907 if HAVE_PYTHON_DEVEL
5908 pkgpyexec_LTLIBRARIES = \
5909         _journal.la \
5910         id128.la \
5911         _daemon.la \
5912         _reader.la \
5913         login.la
5914
5915 _journal_la_SOURCES = \
5916         src/python-systemd/_journal.c
5917
5918 _journal_la_CFLAGS = \
5919         $(AM_CFLAGS) \
5920         -fvisibility=default \
5921         $(PYTHON_DEVEL_CFLAGS)
5922
5923 _journal_la_LDFLAGS = \
5924         $(AM_LDFLAGS) \
5925         -shared \
5926         -module \
5927         -avoid-version
5928
5929 _journal_la_LIBADD = \
5930         $(PYTHON_DEVEL_LIBS) \
5931         libsystemd.la
5932
5933 id128_la_SOURCES = \
5934         src/python-systemd/id128.c \
5935         src/python-systemd/pyutil.c \
5936         src/python-systemd/pyutil.h
5937
5938 nodist_id128_la_SOURCES = \
5939         src/python-systemd/id128-constants.h
5940
5941 id128_la_CFLAGS = \
5942         $(AM_CFLAGS) \
5943         -fvisibility=default \
5944         $(PYTHON_DEVEL_CFLAGS) \
5945         -I$(top_builddir)/src/python-systemd
5946
5947 id128_la_LDFLAGS = \
5948         $(AM_LDFLAGS) \
5949         -shared \
5950         -module \
5951         -avoid-version
5952
5953 id128_la_LIBADD = \
5954         $(PYTHON_DEVEL_LIBS) \
5955         libsystemd-shared.la \
5956         libsystemd.la
5957
5958 _daemon_la_SOURCES = \
5959         src/python-systemd/_daemon.c \
5960         src/python-systemd/pyutil.c \
5961         src/python-systemd/pyutil.h
5962
5963 _daemon_la_CFLAGS = \
5964         $(AM_CFLAGS) \
5965         -fvisibility=default \
5966         $(PYTHON_DEVEL_CFLAGS) \
5967         -I$(top_builddir)/src/python-systemd
5968
5969 _daemon_la_LDFLAGS = \
5970         $(AM_LDFLAGS) \
5971         -shared \
5972         -module \
5973         -avoid-version
5974
5975 _daemon_la_LIBADD = \
5976         $(PYTHON_DEVEL_LIBS) \
5977         libsystemd-shared.la \
5978         libsystemd.la
5979
5980 _reader_la_SOURCES = \
5981         src/python-systemd/_reader.c \
5982         src/python-systemd/pyutil.c \
5983         src/python-systemd/pyutil.h
5984
5985 _reader_la_CFLAGS = \
5986         $(AM_CFLAGS) \
5987         -fvisibility=default \
5988         $(PYTHON_DEVEL_CFLAGS)
5989
5990 _reader_la_LDFLAGS = \
5991         $(AM_LDFLAGS) \
5992         -shared \
5993         -module \
5994         -avoid-version
5995
5996 _reader_la_LIBADD = \
5997         $(PYTHON_DEVEL_LIBS) \
5998         libsystemd-shared.la \
5999         libsystemd.la
6000
6001 login_la_SOURCES = \
6002         src/python-systemd/login.c \
6003         src/python-systemd/pyutil.c \
6004         src/python-systemd/pyutil.h
6005
6006 login_la_CFLAGS = \
6007         $(AM_CFLAGS) \
6008         -fvisibility=default \
6009         $(PYTHON_DEVEL_CFLAGS)
6010
6011 login_la_LDFLAGS = \
6012         $(AM_LDFLAGS) \
6013         -shared \
6014         -module \
6015         -avoid-version
6016
6017 login_la_LIBADD = \
6018         $(PYTHON_DEVEL_LIBS) \
6019         libsystemd-shared.la \
6020         libsystemd.la
6021
6022 dist_pkgpyexec_PYTHON = \
6023         src/python-systemd/journal.py \
6024         src/python-systemd/daemon.py \
6025         src/python-systemd/__init__.py
6026
6027 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h
6028         $(AM_V_at)$(MKDIR_P) $(dir $@)
6029         $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
6030
6031 BUILT_SOURCES += \
6032         src/python-systemd/id128-constants.h
6033
6034 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
6035 sphinx-%:
6036         $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
6037         $(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/
6038         $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
6039
6040 python-shell:
6041         $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
6042         $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
6043
6044 destdir-sphinx: all
6045         dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
6046                 $(MAKE) DESTDIR="$$dir" install && \
6047                 $(MAKE) DESTDIR="$$dir" sphinx-html && \
6048                 rm -rf "$$dir"
6049
6050 endif
6051
6052 CLEAN_LOCAL_HOOKS += clean-sphinx
6053
6054 .PHONY: python-shell destdir-sphinx clean-sphinx clean-python
6055
6056 clean-sphinx:
6057         -rm -rf docs/html/python-systemd/
6058
6059 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
6060 clean-python:
6061         -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
6062         -rm -f _daemon.la id128.la _journal.la login.la _reader.la
6063
6064 # ------------------------------------------------------------------------------
6065 if ENABLE_COMPAT_LIBS
6066 EXTRA_DIST += \
6067         src/compat-libs/linkwarning.h
6068
6069 libsystemd-%.c: src/compat-libs/libsystemd-%.sym
6070         $(AM_V_at)$(MKDIR_P) $(dir $@)
6071         $(AM_V_GEN)sed -r -n 's/^ +(sd_.*);/obsolete_lib(\1,$(notdir $(basename $<)));/p' <$< >$@
6072
6073 BUILT_SOURCES += \
6074         libsystemd-journal.c \
6075         libsystemd-login.c \
6076         libsystemd-id128.c \
6077         libsystemd-daemon.c
6078
6079 libsystemd_journal_la_SOURCES = \
6080         libsystemd-journal.c \
6081         src/compat-libs/libsystemd-journal.sym
6082
6083 libsystemd_journal_la_CPPFLAGS = \
6084         $(AM_CFLAGS) \
6085         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6086
6087 libsystemd_journal_la_LDFLAGS = \
6088         $(AM_LDFLAGS) \
6089         -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
6090         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-journal.sym
6091
6092 libsystemd_journal_la_LIBADD = \
6093         libsystemd-journal-internal.la \
6094         libsystemd-internal.la \
6095         libsystemd-shared.la
6096
6097 libsystemd_login_la_SOURCES = \
6098         libsystemd-login.c \
6099         src/compat-libs/libsystemd-login.sym
6100
6101 libsystemd_login_la_CPPFLAGS = \
6102         $(AM_CFLAGS) \
6103         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6104
6105 libsystemd_login_la_LDFLAGS = \
6106         $(AM_LDFLAGS) \
6107         -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
6108         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-login.sym
6109
6110 libsystemd_login_la_LIBADD = \
6111         libsystemd-internal.la \
6112         libsystemd-shared.la
6113
6114 libsystemd_id128_la_SOURCES = \
6115         libsystemd-id128.c \
6116         src/compat-libs/libsystemd-id128.sym
6117
6118 libsystemd_id128_la_CPPFLAGS = \
6119         $(AM_CFLAGS) \
6120         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6121
6122 libsystemd_id128_la_LDFLAGS = \
6123         $(AM_LDFLAGS) \
6124         -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
6125         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-id128.sym
6126
6127 libsystemd_id128_la_LIBADD = \
6128         libsystemd-internal.la \
6129         libsystemd-shared.la
6130
6131 libsystemd_daemon_la_SOURCES = \
6132         libsystemd-daemon.c \
6133         src/compat-libs/libsystemd-daemon.sym
6134
6135 libsystemd_daemon_la_CPPFLAGS = \
6136         $(AM_CFLAGS) \
6137         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
6138
6139 libsystemd_daemon_la_LDFLAGS = \
6140         $(AM_LDFLAGS) \
6141         -version-info $(LIBSYSTEMD_DAEMON_CURRENT):$(LIBSYSTEMD_DAEMON_REVISION):$(LIBSYSTEMD_DAEMON_AGE) \
6142         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-daemon.sym
6143
6144 libsystemd_daemon_la_LIBADD = \
6145         libsystemd-internal.la \
6146         libsystemd-shared.la
6147
6148 lib_LTLIBRARIES += \
6149         libsystemd-journal.la \
6150         libsystemd-login.la \
6151         libsystemd-id128.la \
6152         libsystemd-daemon.la
6153
6154 pkgconfiglib_DATA += \
6155         src/compat-libs/libsystemd-journal.pc \
6156         src/compat-libs/libsystemd-login.pc \
6157         src/compat-libs/libsystemd-id128.pc \
6158         src/compat-libs/libsystemd-daemon.pc
6159
6160 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
6161 compat-lib-install-hook:
6162         libname=libsystemd-login.so && $(move-to-rootlibdir)
6163         libname=libsystemd-journal.so && $(move-to-rootlibdir)
6164         libname=libsystemd-id128.so && $(move-to-rootlibdir)
6165         libname=libsystemd-daemon.so && $(move-to-rootlibdir)
6166
6167 compat-lib-uninstall-hook:
6168         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
6169         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
6170         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
6171         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-daemon.so*
6172
6173 INSTALL_EXEC_HOOKS += compat-lib-install-hook
6174 UNINSTALL_EXEC_HOOKS += compat-lib-uninstall-hook
6175 endif
6176
6177 EXTRA_DIST += \
6178         src/compat-libs/libsystemd-journal.pc.in \
6179         src/compat-libs/libsystemd-login.pc.in \
6180         src/compat-libs/libsystemd-id128.pc.in \
6181         src/compat-libs/libsystemd-daemon.pc.in
6182
6183 # ------------------------------------------------------------------------------
6184 substitutions = \
6185        '|rootlibexecdir=$(rootlibexecdir)|' \
6186        '|rootbindir=$(rootbindir)|' \
6187        '|bindir=$(bindir)|' \
6188        '|SYSTEMCTL=$(rootbindir)/systemctl|' \
6189        '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
6190        '|pkgsysconfdir=$(pkgsysconfdir)|' \
6191        '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
6192        '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
6193        '|pkgdatadir=$(pkgdatadir)|' \
6194        '|systemunitdir=$(systemunitdir)|' \
6195        '|userunitdir=$(userunitdir)|' \
6196        '|systempresetdir=$(systempresetdir)|' \
6197        '|userpresetdir=$(userpresetdir)|' \
6198        '|udevhwdbdir=$(udevhwdbdir)|' \
6199        '|udevrulesdir=$(udevrulesdir)|' \
6200        '|catalogdir=$(catalogdir)|' \
6201        '|tmpfilesdir=$(tmpfilesdir)|' \
6202        '|sysusersdir=$(sysusersdir)|' \
6203        '|sysctldir=$(sysctldir)|' \
6204        '|systemgeneratordir=$(systemgeneratordir)|' \
6205        '|usergeneratordir=$(usergeneratordir)|' \
6206        '|CERTIFICATEROOT=$(CERTIFICATEROOT)|' \
6207        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
6208        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
6209        '|PACKAGE_URL=$(PACKAGE_URL)|' \
6210        '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
6211        '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
6212        '|prefix=$(prefix)|' \
6213        '|exec_prefix=$(exec_prefix)|' \
6214        '|libdir=$(libdir)|' \
6215        '|includedir=$(includedir)|' \
6216        '|VERSION=$(VERSION)|' \
6217        '|rootprefix=$(rootprefix)|' \
6218        '|udevlibexecdir=$(udevlibexecdir)|' \
6219        '|SUSHELL=$(SUSHELL)|' \
6220        '|DEBUGTTY=$(DEBUGTTY)|' \
6221        '|KILL=$(KILL)|' \
6222        '|KMOD=$(KMOD)|' \
6223        '|MKDIR_P=$(MKDIR_P)|' \
6224        '|QUOTAON=$(QUOTAON)|' \
6225        '|QUOTACHECK=$(QUOTACHECK)|' \
6226        '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
6227        '|VARLOGDIR=$(varlogdir)|' \
6228        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
6229        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
6230        '|PYTHON=$(PYTHON)|' \
6231        '|PYTHON_BINARY=$(PYTHON_BINARY)|' \
6232        '|NTP_SERVERS=$(NTP_SERVERS)|' \
6233        '|DNS_SERVERS=$(DNS_SERVERS)|' \
6234        '|systemuidmax=$(SYSTEM_UID_MAX)|' \
6235        '|systemgidmax=$(SYSTEM_GID_MAX)|' \
6236        '|TTY_GID=$(TTY_GID)|' \
6237        '|systemsleepdir=$(systemsleepdir)|' \
6238        '|systemshutdowndir=$(systemshutdowndir)|' \
6239        '|binfmtdir=$(binfmtdir)|' \
6240        '|modulesloaddir=$(modulesloaddir)|'
6241
6242 SED_PROCESS = \
6243         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
6244         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
6245                 < $< > $@
6246
6247 units/%: units/%.in
6248         $(SED_PROCESS)
6249
6250 man/%: man/%.in
6251         $(SED_PROCESS)
6252
6253 sysctl.d/%: sysctl.d/%.in
6254         $(SED_PROCESS)
6255
6256 %.pc: %.pc.in
6257         $(SED_PROCESS)
6258
6259 %.conf: %.conf.in
6260         $(SED_PROCESS)
6261
6262 src/core/macros.%: src/core/macros.%.in
6263         $(SED_PROCESS)
6264
6265 src/%.policy.in: src/%.policy.in.in
6266         $(SED_PROCESS)
6267
6268 shell-completion/%: shell-completion/%.in
6269         $(SED_PROCESS)
6270
6271 %.rules: %.rules.in
6272         $(SED_PROCESS)
6273
6274 %.conf: %.conf.in
6275         $(SED_PROCESS)
6276
6277 %.sh: %.sh.in
6278         $(SED_PROCESS)
6279         $(AM_V_GEN)chmod +x $@
6280
6281 src/%.c: src/%.gperf
6282         $(AM_V_at)$(MKDIR_P) $(dir $@)
6283         $(AM_V_GPERF)$(GPERF) < $< > $@
6284
6285 src/%: src/%.m4
6286         $(AM_V_at)$(MKDIR_P) $(dir $@)
6287         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6288
6289 sysusers.d/%: sysusers.d/%.m4
6290         $(AM_V_at)$(MKDIR_P) $(dir $@)
6291         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6292
6293 tmpfiles.d/%: tmpfiles.d/%.m4
6294         $(AM_V_at)$(MKDIR_P) $(dir $@)
6295         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
6296
6297
6298 units/%: units/%.m4
6299         $(AM_V_at)$(MKDIR_P) $(dir $@)
6300         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
6301
6302 units/user/%: units/user/%.m4
6303         $(AM_V_at)$(MKDIR_P) $(dir $@)
6304         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
6305
6306 if ENABLE_POLKIT
6307 nodist_polkitpolicy_DATA = \
6308         $(polkitpolicy_files) \
6309         $(polkitpolicy_in_in_files:.policy.in.in=.policy)
6310 endif
6311
6312 EXTRA_DIST += \
6313         $(polkitpolicy_in_files) \
6314         $(polkitpolicy_in_in_files)
6315
6316 CLEANFILES += \
6317         $(nodist_systemunit_DATA) \
6318         $(nodist_userunit_DATA) \
6319         $(pkgconfiglib_DATA) \
6320         $(nodist_polkitpolicy_DATA)
6321
6322 # ------------------------------------------------------------------------------
6323 if ENABLE_MANPAGES
6324 man/custom-entities.ent: configure.ac
6325         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
6326         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
6327          printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
6328          > $@ # '
6329
6330 DISTCLEANFILES += \
6331         man/custom-entities.ent
6332
6333 XSLTPROC_FLAGS = \
6334         --nonet \
6335         --xinclude \
6336         --stringparam man.output.quietly 1 \
6337         --stringparam funcsynopsis.style ansi \
6338         --stringparam man.authors.section.enabled 0 \
6339         --stringparam man.copyright.section.enabled 0 \
6340         --stringparam systemd.version $(VERSION) \
6341         --path '$(builddir)/man:$(srcdir)/man'
6342
6343 XSLTPROC_PROCESS_MAN = \
6344         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
6345
6346 XSLTPROC_PROCESS_HTML = \
6347         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
6348
6349 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
6350         $(XSLTPROC_PROCESS_MAN)
6351
6352 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
6353         $(XSLTPROC_PROCESS_MAN)
6354
6355 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
6356         $(XSLTPROC_PROCESS_MAN)
6357
6358 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
6359         $(XSLTPROC_PROCESS_MAN)
6360
6361 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
6362         $(XSLTPROC_PROCESS_MAN)
6363
6364 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
6365         $(XSLTPROC_PROCESS_HTML)
6366
6367 define html-alias
6368         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
6369 endef
6370
6371 endif
6372
6373 EXTRA_DIST += \
6374         man/custom-html.xsl \
6375         man/custom-man.xsl
6376
6377 # ------------------------------------------------------------------------------
6378 if HAVE_SYSV_COMPAT
6379 sysvinit_DATA = \
6380         docs/sysvinit/README
6381
6382 varlog_DATA = \
6383         docs/var-log/README
6384
6385 docs/sysvinit/README: docs/sysvinit/README.in
6386         $(SED_PROCESS)
6387
6388 docs/var-log/README: docs/var-log/README.in
6389         $(SED_PROCESS)
6390
6391 CLEANFILES += \
6392         docs/sysvinit/README \
6393         docs/var-log/README
6394 endif
6395
6396 EXTRA_DIST += \
6397         docs/sysvinit/README.in \
6398         docs/var-log/README.in
6399
6400 SOCKETS_TARGET_WANTS += \
6401         systemd-initctl.socket \
6402         systemd-shutdownd.socket
6403
6404 if HAVE_UTMP
6405 if HAVE_SYSV_COMPAT
6406 RUNLEVEL1_TARGET_WANTS += \
6407         systemd-update-utmp-runlevel.service
6408 RUNLEVEL2_TARGET_WANTS += \
6409         systemd-update-utmp-runlevel.service
6410 RUNLEVEL3_TARGET_WANTS += \
6411         systemd-update-utmp-runlevel.service
6412 RUNLEVEL4_TARGET_WANTS += \
6413         systemd-update-utmp-runlevel.service
6414 RUNLEVEL5_TARGET_WANTS += \
6415         systemd-update-utmp-runlevel.service
6416 endif
6417
6418 SYSINIT_TARGET_WANTS += \
6419         systemd-update-utmp.service
6420 endif
6421
6422 SYSINIT_TARGET_WANTS += \
6423         systemd-update-done.service
6424
6425 LOCAL_FS_TARGET_WANTS += \
6426         systemd-remount-fs.service \
6427         tmp.mount
6428
6429 MULTI_USER_TARGET_WANTS += \
6430         getty.target \
6431         systemd-ask-password-wall.path
6432
6433 SYSINIT_TARGET_WANTS += \
6434         dev-hugepages.mount \
6435         dev-mqueue.mount \
6436         sys-kernel-config.mount \
6437         sys-kernel-debug.mount \
6438         sys-fs-fuse-connections.mount \
6439         systemd-sysctl.service \
6440         systemd-ask-password-console.path
6441
6442 if HAVE_SYSV_COMPAT
6443 SYSTEM_UNIT_ALIASES += \
6444         poweroff.target runlevel0.target \
6445         rescue.target runlevel1.target \
6446         multi-user.target runlevel2.target \
6447         multi-user.target runlevel3.target \
6448         multi-user.target runlevel4.target \
6449         graphical.target runlevel5.target \
6450         reboot.target runlevel6.target
6451 endif
6452
6453 SYSTEM_UNIT_ALIASES += \
6454         graphical.target default.target \
6455         reboot.target ctrl-alt-del.target \
6456         getty@.service autovt@.service
6457
6458 USER_UNIT_ALIASES += \
6459         $(systemunitdir)/shutdown.target shutdown.target \
6460         $(systemunitdir)/sockets.target sockets.target \
6461         $(systemunitdir)/timers.target timers.target \
6462         $(systemunitdir)/paths.target paths.target \
6463         $(systemunitdir)/bluetooth.target bluetooth.target \
6464         $(systemunitdir)/printer.target printer.target \
6465         $(systemunitdir)/sound.target sound.target \
6466         $(systemunitdir)/smartcard.target smartcard.target
6467
6468 if ENABLE_KDBUS
6469 USER_UNIT_ALIASES += \
6470         $(systemunitdir)/busnames.target busnames.target
6471 endif
6472
6473 GENERAL_ALIASES += \
6474         $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
6475         $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
6476         $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
6477         $(dbussystemservicedir)/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
6478
6479 if HAVE_SYSV_COMPAT
6480 INSTALL_DIRS += \
6481         $(systemunitdir)/runlevel1.target.wants \
6482         $(systemunitdir)/runlevel2.target.wants \
6483         $(systemunitdir)/runlevel3.target.wants \
6484         $(systemunitdir)/runlevel4.target.wants \
6485         $(systemunitdir)/runlevel5.target.wants
6486 endif
6487
6488 INSTALL_DIRS += \
6489         $(prefix)/lib/modules-load.d \
6490         $(sysconfdir)/modules-load.d \
6491         $(prefix)/lib/systemd/network \
6492         $(sysconfdir)/systemd/network \
6493         $(prefix)/lib/sysctl.d \
6494         $(sysconfdir)/sysctl.d \
6495         $(prefix)/lib/kernel/install.d \
6496         $(sysconfdir)/kernel/install.d \
6497         $(systemshutdowndir) \
6498         $(systemsleepdir) \
6499         $(systemgeneratordir) \
6500         $(usergeneratordir) \
6501         \
6502         $(userunitdir) \
6503         $(pkgsysconfdir)/system \
6504         $(pkgsysconfdir)/system/multi-user.target.wants \
6505         $(pkgsysconfdir)/system/getty.target.wants \
6506         $(pkgsysconfdir)/user \
6507         $(dbussessionservicedir) \
6508         $(sysconfdir)/xdg/systemd
6509
6510 install-exec-hook: $(INSTALL_EXEC_HOOKS)
6511
6512 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
6513
6514 install-data-hook: $(INSTALL_DATA_HOOKS)
6515
6516 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
6517
6518 clean-local: $(CLEAN_LOCAL_HOOKS)
6519         rm -rf $(abs_srcdir)/install-tree
6520         rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
6521               $(abs_srcdir)/hwdb/iab.txt
6522
6523 DISTCHECK_CONFIGURE_FLAGS = \
6524         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
6525         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
6526         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
6527         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
6528         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
6529         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
6530         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
6531         --with-rootprefix=$$dc_install_base \
6532         --disable-split-usr \
6533         --enable-kdbus \
6534         --enable-compat-libs
6535
6536 if HAVE_SYSV_COMPAT
6537 DISTCHECK_CONFIGURE_FLAGS += \
6538         --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
6539         --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
6540 else
6541 DISTCHECK_CONFIGURE_FLAGS += \
6542         --with-sysvinit-path= \
6543         --with-sysvrcnd-path=
6544 endif
6545
6546 if HAVE_PYTHON
6547 DISTCHECK_CONFIGURE_FLAGS += \
6548         --with-python
6549 endif
6550
6551 if ENABLE_GTK_DOC
6552 DISTCHECK_CONFIGURE_FLAGS += \
6553         --enable-gtk-doc
6554 endif
6555
6556 #
6557 # Require python when making dist
6558 #
6559 .PHONY: dist-check-python
6560 dist-check-python:
6561 if !HAVE_PYTHON
6562         @echo "*** python and python-lxml module must be installed and enabled in order to make dist"
6563         @false
6564 endif
6565
6566 dist-check-compat-libs:
6567 if !ENABLE_COMPAT_LIBS
6568         @echo "*** compat-libs must be enabled in order to make dist"
6569         @false
6570 endif
6571
6572 dist: dist-check-python dist-check-compat-libs
6573
6574 # check "broken" platforms limited toolchains for link breakage before we release
6575 .PHONY: linkcheck
6576 linkcheck:
6577         $(MAKE) CFLAGS='-fno-lto' LDFLAGS='-Wl,-fuse-ld=gold -Wl,--as-needed -Wl,--no-gc-sections' distcheck
6578
6579 .PHONY: hwdb-update
6580 hwdb-update:
6581         ( cd $(top_srcdir)/hwdb && \
6582         wget -N http://www.linux-usb.org/usb.ids \
6583                 http://pci-ids.ucw.cz/v2.2/pci.ids \
6584                 http://standards.ieee.org/develop/regauth/oui/oui.txt \
6585                 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
6586         ./ids-update.pl )
6587
6588 .PHONY: kdbus-update
6589 kdbus-update:
6590         ( cd $(top_srcdir)/src/libsystemd/sd-bus/ && \
6591         wget -N https://d-bus.googlecode.com/git/kdbus.h )
6592
6593 .PHONY: git-tag
6594 git-tag:
6595         git tag -s "v$(VERSION)" -m "systemd $(VERSION)"
6596
6597 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
6598 .PHONY: upload
6599 upload: all check dist
6600         scp systemd-$(VERSION).tar.xz $(www_target)
6601
6602 .PHONY: doc-sync
6603 doc-sync: all destdir-sphinx
6604         gtkdoc-rebase --html-dir=docs/libudev/html --online
6605         rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
6606         gtkdoc-rebase --html-dir=docs/gudev/html --online
6607         rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
6608         rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
6609         rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
6610
6611 .PHONY: gardel
6612 gardel: upload
6613         scp man/*.html gardel:public/systemd-man/
6614
6615 .PHONY: lennart-fedora
6616 lennart-fedora:
6617         cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
6618
6619 .PHONY: install-tree
6620 install-tree: all
6621         rm -rf $(abs_srcdir)/install-tree
6622         $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
6623         tree $(abs_srcdir)/install-tree
6624
6625 # Let's run all tests of the test suite, but under valgrind. Let's
6626 # exclude the one perl script we have in there
6627 .PHONY: valgrind-tests
6628 valgrind-tests: $(TESTS)
6629         $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
6630                 if file $$f | grep -q shell; then \
6631                 echo -e "$${x}Skipping non-binary $$f"; else \
6632                 echo -e "$${x}Running $$f"; \
6633                 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
6634                 x="\n\n"; \
6635         done
6636
6637 exported-%: %
6638         $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
6639
6640 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
6641         $(AM_V_GEN)cat $^ > $@
6642
6643 .PHONY: check-api-docs
6644 check-api-docs: exported man
6645         $(AM_V_GEN)for symbol in `cat exported` ; do \
6646                 if test -f $(builddir)/man/$$symbol.html ; then \
6647                         echo "  Symbol $$symbol() is documented." ; \
6648                 else \
6649                         echo "‣ Symbol $$symbol() lacks documentation." ; \
6650                 fi ; \
6651         done
6652
6653 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
6654 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
6655
6656 undefined defined: $(ALL_OBJECTS)
6657         $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
6658                 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
6659         done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
6660
6661 CLEANFILES += \
6662         defined \
6663         undefined
6664
6665 .PHONY: check-api-unused
6666 check-api-unused: defined undefined exported
6667         ( cat exported undefined ) | sort -u  | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
6668
6669 .PHONY: check-includes
6670 check-includes: $(top_srcdir)/tools/check-includes.pl
6671         $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
6672                 | xargs $(top_srcdir)/tools/check-includes.pl
6673
6674 EXTRA_DIST += \
6675         $(top_srcdir)/tools/check-includes.pl
6676
6677 # Stupid test that everything purported to be exported really is
6678 define generate-sym-test
6679         $(AM_V_at)$(MKDIR_P) $(dir $@)
6680         $(AM_V_at)printf '#include <stdio.h>\n' > $@
6681         $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
6682         $(AM_V_at)printf 'void* functions[] = {\n' >> $@
6683         $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
6684         $(AM_V_at)printf '};\nint main(void) {\n' >> $@
6685         $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
6686         $(AM_V_at)printf 'return 0; }\n' >> $@
6687 endef
6688
6689 test-libsystemd-sym.c: \
6690                 $(top_builddir)/src/libsystemd/libsystemd.sym \
6691                 src/systemd/sd-journal.h \
6692                 src/systemd/sd-daemon.h \
6693                 src/systemd/sd-login.h \
6694                 src/systemd/sd-bus.h \
6695                 src/systemd/sd-utf8.h \
6696                 src/systemd/sd-resolve.h \
6697                 src/systemd/sd-path.h
6698         $(generate-sym-test)
6699
6700 test-libudev-sym.c: \
6701                 src/libudev/libudev.sym \
6702                 src/udev/udev.h
6703         $(generate-sym-test)
6704
6705 test_libsystemd_sym_SOURCES = \
6706         test-libsystemd-sym.c
6707 test_libsystemd_sym_LDADD = \
6708         libsystemd.la
6709
6710 test_libudev_sym_SOURCES = \
6711         test-libudev-sym.c
6712 test_libudev_sym_CFLAGS = \
6713         $(AM_CFLAGS) \
6714         -Wno-deprecated-declarations
6715 test_libudev_sym_LDADD = \
6716         libudev.la
6717
6718 BUILT_SOURCES += \
6719         $(test_libsystemd_sym_SOURCES) \
6720         $(test_libudev_sym_SOURCES)
6721
6722 tests += \
6723         test-libsystemd-sym \
6724         test-libudev-sym
6725
6726 .PHONY: cppcheck
6727 cppcheck:
6728         cppcheck --enable=all -q $(top_srcdir)
6729
6730 # Used to extract compile flags for YCM.
6731 print-%:
6732         @echo $($*)
6733
6734 git-contrib:
6735         @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u
6736
6737 EXTRA_DIST += \
6738         tools/gdb-sd_dump_hashmaps.py
6739
6740 list-keys:
6741         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --list-keys
6742
6743 add-key:
6744         gpg --verbose --no-options --no-default-keyring --no-auto-key-locate --batch --trust-model=always --keyring=$(srcdir)/src/import/import-pubring.gpg --import -