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