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