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