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