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