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