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