chiark / gitweb /
0bf803a1f366dbe36234f9cf69aa9255221c6f70
[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 systemd_machine_id_setup_SOURCES = \
1877         src/machine-id-setup/machine-id-setup-main.c \
1878         src/core/machine-id-setup.c \
1879         src/core/machine-id-setup.h
1880
1881 systemd_machine_id_setup_LDADD = \
1882         libsystemd-label.la \
1883         libsystemd-internal.la \
1884         libsystemd-shared.la
1885
1886 # ------------------------------------------------------------------------------
1887 systemd_sysctl_SOURCES = \
1888         src/sysctl/sysctl.c
1889
1890 systemd_sysctl_LDADD = \
1891         libsystemd-shared.la
1892
1893 # ------------------------------------------------------------------------------
1894 systemd_sleep_SOURCES = \
1895         src/sleep/sleep.c
1896
1897 systemd_sleep_LDADD = \
1898         libsystemd-shared.la
1899
1900 # ------------------------------------------------------------------------------
1901 systemd_fsck_SOURCES = \
1902         src/fsck/fsck.c
1903
1904 systemd_fsck_LDADD = \
1905         libsystemd-internal.la \
1906         libudev-internal.la \
1907         libsystemd-shared.la
1908
1909 # ------------------------------------------------------------------------------
1910 systemd_ac_power_SOURCES = \
1911         src/ac-power/ac-power.c
1912
1913 systemd_ac_power_LDADD = \
1914         libudev-internal.la \
1915         libsystemd-shared.la
1916
1917 # ------------------------------------------------------------------------------
1918 systemd_detect_virt_SOURCES = \
1919         src/detect-virt/detect-virt.c
1920
1921 systemd_detect_virt_LDADD = \
1922         libsystemd-shared.la
1923
1924 INSTALL_EXEC_HOOKS += \
1925         systemd-detect-virt-install-hook
1926
1927 # ------------------------------------------------------------------------------
1928 systemd_delta_SOURCES = \
1929         src/delta/delta.c
1930
1931 systemd_delta_LDADD = \
1932         libsystemd-shared.la
1933
1934 # ------------------------------------------------------------------------------
1935 systemd_getty_generator_SOURCES = \
1936         src/getty-generator/getty-generator.c
1937
1938 systemd_getty_generator_LDADD = \
1939         libsystemd-label.la \
1940         libsystemd-shared.la
1941
1942 # ------------------------------------------------------------------------------
1943 systemd_debug_generator_SOURCES = \
1944         src/debug-generator/debug-generator.c
1945
1946 systemd_debug_generator_LDADD = \
1947         libsystemd-label.la \
1948         libsystemd-shared.la
1949
1950 # ------------------------------------------------------------------------------
1951 systemd_fstab_generator_SOURCES = \
1952         src/fstab-generator/fstab-generator.c \
1953         src/core/mount-setup.c
1954
1955 systemd_fstab_generator_LDADD = \
1956         libsystemd-label.la \
1957         libsystemd-shared.la
1958
1959 # ------------------------------------------------------------------------------
1960 systemd_system_update_generator_SOURCES = \
1961         src/system-update-generator/system-update-generator.c
1962
1963 systemd_system_update_generator_LDADD = \
1964         libsystemd-label.la \
1965         libsystemd-shared.la
1966
1967 if ENABLE_EFI
1968 # ------------------------------------------------------------------------------
1969 systemgenerator_PROGRAMS +=  \
1970         systemd-efi-boot-generator
1971
1972 systemd_efi_boot_generator_SOURCES = \
1973         src/efi-boot-generator/efi-boot-generator.c
1974
1975 systemd_efi_boot_generator_LDADD = \
1976         libsystemd-label.la \
1977         libsystemd-shared.la
1978
1979 # ------------------------------------------------------------------------------
1980 bootctl_SOURCES = \
1981         src/boot/boot.h \
1982         src/boot/boot-loader.h \
1983         src/boot/bootctl.c \
1984         src/boot/boot-loader.c \
1985         src/boot/boot-efi.c
1986
1987 bootctl_LDADD = \
1988         libsystemd-shared.la \
1989         libsystemd-internal.la
1990
1991 bin_PROGRAMS += \
1992         bootctl
1993
1994 dist_bashcompletion_DATA += \
1995         shell-completion/bash/bootctl
1996
1997 dist_zshcompletion_DATA += \
1998         shell-completion/zsh/_bootctl
1999
2000 endif
2001
2002 # ------------------------------------------------------------------------------
2003 if HAVE_BLKID
2004 systemgenerator_PROGRAMS +=  \
2005         systemd-gpt-auto-generator
2006
2007 systemd_gpt_auto_generator_SOURCES = \
2008         src/gpt-auto-generator/gpt-auto-generator.c \
2009         src/shared/blkid-util.h
2010
2011 systemd_gpt_auto_generator_LDADD = \
2012         libsystemd-label.la \
2013         libsystemd-internal.la \
2014         libudev-internal.la \
2015         libsystemd-shared.la \
2016         $(BLKID_LIBS)
2017
2018 systemd_gpt_auto_generator_CFLAGS = \
2019         $(AM_CFLAGS) \
2020         $(BLKID_CFLAGS)
2021 endif
2022
2023 # ------------------------------------------------------------------------------
2024 if ENABLE_KDBUS
2025 systemgenerator_PROGRAMS +=  \
2026         systemd-dbus1-generator
2027
2028 systemd_dbus1_generator_SOURCES = \
2029         src/dbus1-generator/dbus1-generator.c
2030
2031 systemd_dbus1_generator_LDADD = \
2032         libsystemd-label.la \
2033         libsystemd-shared.la \
2034         libsystemd-internal.la
2035
2036 dbus1-generator-install-hook:
2037         $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(usergeneratordir)
2038         $(AM_V_RM)rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2039         $(AM_V_LN)$(LN_S) --relative -f $(DESTDIR)$(systemgeneratordir)/systemd-dbus1-generator $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2040
2041 dbus1-generator-uninstall-hook:
2042         rm -f $(DESTDIR)$(usergeneratordir)/systemd-dbus1-generator
2043
2044 INSTALL_EXEC_HOOKS += dbus1-generator-install-hook
2045 UNINSTALL_EXEC_HOOKS += dbus1-generator-uninstall-hook
2046 endif
2047
2048 # ------------------------------------------------------------------------------
2049 systemd_sysv_generator_SOURCES = \
2050         src/sysv-generator/sysv-generator.c
2051
2052 systemd_sysv_generator_LDADD = \
2053         libsystemd-core.la \
2054         libsystemd-label.la \
2055         libsystemd-shared.la
2056
2057 # ------------------------------------------------------------------------------
2058 systemd_rc_local_generator_SOURCES = \
2059         src/rc-local-generator/rc-local-generator.c
2060
2061 systemd_rc_local_generator_LDADD = \
2062         libsystemd-label.la \
2063         libsystemd-shared.la
2064
2065 # ------------------------------------------------------------------------------
2066 systemd_remount_fs_SOURCES = \
2067         src/remount-fs/remount-fs.c \
2068         src/core/mount-setup.c \
2069         src/core/mount-setup.h
2070
2071 systemd_remount_fs_LDADD = \
2072         libsystemd-label.la \
2073         libsystemd-shared.la
2074
2075 # ------------------------------------------------------------------------------
2076 systemd_cgroups_agent_SOURCES = \
2077         src/cgroups-agent/cgroups-agent.c
2078
2079 systemd_cgroups_agent_LDADD = \
2080         libsystemd-internal.la \
2081         libsystemd-shared.la
2082
2083 # ------------------------------------------------------------------------------
2084 systemctl_SOURCES = \
2085         src/systemctl/systemctl.c
2086
2087 systemctl_LDADD = \
2088         libsystemd-units.la \
2089         libsystemd-label.la \
2090         libsystemd-internal.la \
2091         libsystemd-logs.la \
2092         libsystemd-journal-internal.la \
2093         libsystemd-shared.la
2094
2095 # ------------------------------------------------------------------------------
2096 systemd_notify_SOURCES = \
2097         src/notify/notify.c \
2098         src/readahead/sd-readahead.c
2099
2100 systemd_notify_LDADD = \
2101         libsystemd-internal.la \
2102         libsystemd-shared.la
2103
2104 # ------------------------------------------------------------------------------
2105 systemd_path_SOURCES = \
2106         src/path/path.c
2107
2108 systemd_path_LDADD = \
2109         libsystemd-internal.la \
2110         libsystemd-shared.la
2111
2112 # ------------------------------------------------------------------------------
2113 systemd_ask_password_SOURCES = \
2114         src/ask-password/ask-password.c
2115
2116 systemd_ask_password_LDADD = \
2117         libsystemd-label.la \
2118         libsystemd-shared.la
2119
2120 # ------------------------------------------------------------------------------
2121 systemd_reply_password_SOURCES = \
2122         src/reply-password/reply-password.c
2123
2124 systemd_reply_password_LDADD = \
2125         libsystemd-shared.la
2126
2127 # ------------------------------------------------------------------------------
2128 systemd_cgls_SOURCES = \
2129         src/cgls/cgls.c
2130
2131 systemd_cgls_LDADD = \
2132         libsystemd-internal.la \
2133         libsystemd-shared.la
2134
2135 # ------------------------------------------------------------------------------
2136 systemd_cgtop_SOURCES = \
2137         src/cgtop/cgtop.c
2138
2139 systemd_cgtop_LDADD = \
2140         libsystemd-shared.la
2141
2142 # ------------------------------------------------------------------------------
2143 systemd_nspawn_SOURCES = \
2144         src/nspawn/nspawn.c \
2145         src/core/mount-setup.c \
2146         src/core/mount-setup.h \
2147         src/core/loopback-setup.c \
2148         src/core/loopback-setup.h
2149
2150 systemd_nspawn_CFLAGS = \
2151         $(AM_CFLAGS) \
2152         $(SECCOMP_CFLAGS) \
2153         $(BLKID_CFLAGS)
2154
2155 systemd_nspawn_LDADD = \
2156         libsystemd-label.la \
2157         libsystemd-capability.la \
2158         libsystemd-internal.la \
2159         libudev-internal.la \
2160         libsystemd-shared.la \
2161         $(BLKID_LIBS)
2162
2163 if HAVE_SECCOMP
2164 systemd_nspawn_LDADD += \
2165         libsystemd-seccomp.la \
2166         $(SECCOMP_LIBS)
2167 endif
2168
2169 # ------------------------------------------------------------------------------
2170 systemd_run_SOURCES = \
2171         src/run/run.c
2172
2173 systemd_run_LDADD = \
2174         libsystemd-label.la \
2175         libsystemd-capability.la \
2176         libsystemd-internal.la \
2177         libsystemd-shared.la
2178
2179 # ------------------------------------------------------------------------------
2180 systemd_bus_proxyd_SOURCES = \
2181         src/bus-proxyd/bus-proxyd.c \
2182         src/bus-proxyd/bus-policy.c \
2183         src/bus-proxyd/bus-policy.h
2184
2185 systemd_bus_proxyd_LDADD = \
2186         libsystemd-capability.la \
2187         libsystemd-internal.la \
2188         libsystemd-shared.la
2189
2190 bus-proxyd-install-hook:
2191         $(AM_V_at)$(MKDIR_P) $(DESTDIR)$(bindir)
2192         $(AM_V_RM)rm -f $(DESTDIR)$(bindir)/systemd-stdio-bridge
2193         $(AM_V_LN)$(LN_S) --relative -f $(DESTDIR)$(rootlibexecdir)/systemd-bus-proxyd $(DESTDIR)$(bindir)/systemd-stdio-bridge
2194
2195 bus-proxyd-uninstall-hook:
2196         rm -f $(DESTDIR)$(bindir)/systemd-stdio-bridge
2197
2198 INSTALL_EXEC_HOOKS += bus-proxyd-install-hook
2199 UNINSTALL_EXEC_HOOKS += bus-proxyd-uninstall-hook
2200
2201 if ENABLE_KDBUS
2202 nodist_systemunit_DATA += \
2203         units/systemd-bus-proxyd@.service
2204
2205 dist_systemunit_DATA += \
2206         units/systemd-bus-proxyd.socket
2207
2208 dist_userunit_DATA += \
2209         units/user/systemd-bus-proxyd.socket \
2210         units/user/systemd-bus-proxyd@.service
2211 endif
2212
2213 EXTRA_DIST += \
2214         units/systemd-bus-proxyd@.service.in
2215
2216 # ------------------------------------------------------------------------------
2217 systemd_tty_ask_password_agent_SOURCES = \
2218         src/tty-ask-password-agent/tty-ask-password-agent.c
2219
2220 systemd_tty_ask_password_agent_LDADD = \
2221         libsystemd-label.la \
2222         libsystemd-shared.la
2223
2224 # ------------------------------------------------------------------------------
2225 libsystemd_internal_la_SOURCES = \
2226         src/systemd/sd-bus.h \
2227         src/systemd/sd-bus-protocol.h \
2228         src/systemd/sd-bus-vtable.h \
2229         src/systemd/sd-memfd.h \
2230         src/systemd/sd-utf8.h \
2231         src/systemd/sd-event.h \
2232         src/systemd/sd-rtnl.h \
2233         src/systemd/sd-resolve.h \
2234         src/systemd/sd-login.h \
2235         src/systemd/sd-id128.h \
2236         src/systemd/sd-daemon.h \
2237         src/systemd/sd-path.h \
2238         src/libsystemd/sd-bus/sd-bus.c \
2239         src/libsystemd/sd-bus/bus-control.c \
2240         src/libsystemd/sd-bus/bus-control.h \
2241         src/libsystemd/sd-bus/bus-error.c \
2242         src/libsystemd/sd-bus/bus-error.h \
2243         src/libsystemd/sd-bus/bus-internal.c \
2244         src/libsystemd/sd-bus/bus-internal.h \
2245         src/libsystemd/sd-bus/bus-socket.c \
2246         src/libsystemd/sd-bus/bus-socket.h \
2247         src/libsystemd/sd-bus/bus-kernel.c \
2248         src/libsystemd/sd-bus/bus-kernel.h \
2249         src/libsystemd/sd-bus/bus-container.c \
2250         src/libsystemd/sd-bus/bus-container.h \
2251         src/libsystemd/sd-bus/bus-message.c \
2252         src/libsystemd/sd-bus/bus-message.h \
2253         src/libsystemd/sd-bus/bus-creds.c \
2254         src/libsystemd/sd-bus/bus-creds.h \
2255         src/libsystemd/sd-bus/bus-signature.c \
2256         src/libsystemd/sd-bus/bus-signature.h \
2257         src/libsystemd/sd-bus/bus-type.c \
2258         src/libsystemd/sd-bus/bus-type.h \
2259         src/libsystemd/sd-bus/bus-match.c \
2260         src/libsystemd/sd-bus/bus-match.h \
2261         src/libsystemd/sd-bus/bus-bloom.c \
2262         src/libsystemd/sd-bus/bus-bloom.h \
2263         src/libsystemd/sd-bus/bus-introspect.c \
2264         src/libsystemd/sd-bus/bus-introspect.h \
2265         src/libsystemd/sd-bus/bus-objects.c \
2266         src/libsystemd/sd-bus/bus-objects.h \
2267         src/libsystemd/sd-bus/bus-gvariant.c \
2268         src/libsystemd/sd-bus/bus-gvariant.h \
2269         src/libsystemd/sd-bus/bus-convenience.c \
2270         src/libsystemd/sd-bus/bus-track.c \
2271         src/libsystemd/sd-bus/bus-track.h \
2272         src/libsystemd/sd-bus/bus-util.c \
2273         src/libsystemd/sd-bus/bus-util.h \
2274         src/libsystemd/sd-bus/bus-slot.c \
2275         src/libsystemd/sd-bus/bus-slot.h \
2276         src/libsystemd/sd-bus/bus-protocol.h \
2277         src/libsystemd/sd-bus/kdbus.h \
2278         src/libsystemd/sd-bus/sd-memfd.c \
2279         src/libsystemd/sd-utf8/sd-utf8.c \
2280         src/libsystemd/sd-event/sd-event.c \
2281         src/libsystemd/sd-event/event-util.h \
2282         src/libsystemd/sd-rtnl/sd-rtnl.c \
2283         src/libsystemd/sd-rtnl/rtnl-internal.h \
2284         src/libsystemd/sd-rtnl/rtnl-message.c \
2285         src/libsystemd/sd-rtnl/rtnl-types.h \
2286         src/libsystemd/sd-rtnl/rtnl-types.c \
2287         src/libsystemd/sd-rtnl/rtnl-util.h \
2288         src/libsystemd/sd-rtnl/rtnl-util.c \
2289         src/libsystemd/sd-id128/sd-id128.c \
2290         src/libsystemd/sd-daemon/sd-daemon.c \
2291         src/libsystemd/sd-login/sd-login.c \
2292         src/libsystemd/sd-path/sd-path.c
2293
2294 nodist_libsystemd_internal_la_SOURCES = \
2295         src/libsystemd/libsystemd.sym \
2296         src/libsystemd/sd-bus/bus-error-mapping.c
2297
2298 libsystemd_internal_la_CFLAGS = \
2299         $(AM_CFLAGS) \
2300         -pthread
2301
2302 libsystemd_internal_la_LIBADD = \
2303         $(RT_LIBS)
2304
2305 libsystemd_resolve_la_SOURCES = \
2306         src/libsystemd/sd-resolve/sd-resolve.c \
2307         src/libsystemd/sd-resolve/resolve-util.h
2308
2309 libsystemd_resolve_la_CFLAGS = \
2310         $(AM_CFLAGS) \
2311         -pthread
2312
2313 libsystemd_resolve_la_LIBADD = \
2314         -lresolv
2315
2316 noinst_LTLIBRARIES += \
2317         libsystemd-internal.la \
2318         libsystemd-resolve.la
2319
2320 libsystemd_dump_la_SOURCES = \
2321         src/libsystemd/sd-bus/bus-dump.c \
2322         src/libsystemd/sd-bus/bus-dump.h
2323
2324 libsystemd_dump_la_CFLAGS = \
2325         $(AM_CFLAGS) \
2326         $(CAP_CFLAGS)
2327
2328 noinst_LTLIBRARIES += \
2329         libsystemd-dump.la
2330
2331 EXTRA_DIST += \
2332         src/libsystemd/libsystemd.sym.m4 \
2333         src/libsystemd/libsystemd.pc.in \
2334         src/libsystemd/sd-bus/bus-error-mapping.gperf \
2335         src/libsystemd/sd-bus/DIFFERENCES \
2336         src/libsystemd/sd-bus/GVARIANT-SERIALIZATION
2337
2338 CLEANFILES += \
2339         src/libsystemd/libsystemd.sym \
2340         src/libsystemd/sd-bus/bus-error-mapping.c
2341
2342 BUILT_SOURCES += \
2343         src/libsystemd/libsystemd.sym
2344
2345 libsystemd_la_SOURCES = \
2346         $(libsystemd_internal_la_SOURCES) \
2347         $(libsystemd_resolve_la_SOURCES) \
2348         $(libsystemd_journal_internal_la_SOURCES)
2349
2350 nodist_libsystemd_la_SOURCES = \
2351         $(nodist_libsystemd_internal_la_SOURCES)
2352
2353 libsystemd_la_CFLAGS = \
2354         $(libsystemd_internal_la_CFLAGS) \
2355         $(libsystemd_resolve_la_CFLAGS) \
2356         $(libsystemd_journal_internal_la_CFLAGS)
2357
2358 libsystemd_la_LDFLAGS = \
2359         $(AM_LDFLAGS) \
2360         -version-info $(LIBSYSTEMD_CURRENT):$(LIBSYSTEMD_REVISION):$(LIBSYSTEMD_AGE) \
2361         -Wl,--version-script=$(top_builddir)/src/libsystemd/libsystemd.sym
2362
2363 libsystemd_la_LIBADD = \
2364         libsystemd-shared.la \
2365         $(libsystemd_internal_la_LIBADD) \
2366         $(libsystemd_journal_internal_la_LIBADD) \
2367         $(libsystemd_resolve_la_LIBADD)
2368
2369 libsystemd-install-hook:
2370         libname=libsystemd.so && $(move-to-rootlibdir)
2371
2372 libsystemd-uninstall-hook:
2373         rm -f $(DESTDIR)$(rootlibdir)/libsystemd.so*
2374
2375 INSTALL_EXEC_HOOKS += libsystemd-install-hook
2376 UNINSTALL_EXEC_HOOKS += libsystemd-uninstall-hook
2377
2378 pkgconfiglib_DATA += \
2379         src/libsystemd/libsystemd.pc
2380
2381 pkginclude_HEADERS += \
2382         src/systemd/sd-login.h \
2383         src/systemd/sd-id128.h \
2384         src/systemd/sd-daemon.h
2385
2386 if ENABLE_KDBUS
2387 pkginclude_HEADERS += \
2388         src/systemd/sd-bus.h \
2389         src/systemd/sd-bus-protocol.h \
2390         src/systemd/sd-bus-vtable.h \
2391         src/systemd/sd-memfd.h \
2392         src/systemd/sd-utf8.h \
2393         src/systemd/sd-event.h \
2394         src/systemd/sd-rtnl.h \
2395         src/systemd/sd-resolve.h \
2396         src/systemd/sd-path.h
2397 endif
2398
2399 lib_LTLIBRARIES += \
2400         libsystemd.la
2401
2402 tests += \
2403         test-bus-marshal \
2404         test-bus-signature \
2405         test-bus-chat \
2406         test-bus-cleanup \
2407         test-bus-server \
2408         test-bus-match \
2409         test-bus-kernel \
2410         test-bus-kernel-bloom \
2411         test-bus-kernel-benchmark \
2412         test-bus-memfd \
2413         test-bus-zero-copy \
2414         test-bus-introspect \
2415         test-bus-objects \
2416         test-bus-error \
2417         test-bus-creds \
2418         test-bus-gvariant \
2419         test-event \
2420         test-rtnl \
2421         test-resolve
2422
2423 bin_PROGRAMS += \
2424         busctl
2425
2426 test_bus_marshal_SOURCES = \
2427         src/libsystemd/sd-bus/test-bus-marshal.c
2428
2429 test_bus_marshal_LDADD = \
2430         libsystemd-internal.la \
2431         libsystemd-shared.la \
2432         libsystemd-dump.la \
2433         libsystemd-capability.la \
2434         $(GLIB_LIBS) \
2435         $(DBUS_LIBS) \
2436         $(CAP_LIBS)
2437
2438 test_bus_marshal_CFLAGS = \
2439         $(AM_CFLAGS) \
2440         $(GLIB_CFLAGS) \
2441         $(DBUS_CFLAGS) \
2442         $(CAP_CFLAGS)
2443
2444 test_bus_signature_SOURCES = \
2445         src/libsystemd/sd-bus/test-bus-signature.c
2446
2447 test_bus_signature_LDADD = \
2448         libsystemd-shared.la \
2449         libsystemd-internal.la
2450
2451 test_bus_chat_SOURCES = \
2452         src/libsystemd/sd-bus/test-bus-chat.c
2453
2454 test_bus_chat_CFLAGS = \
2455         $(AM_CFLAGS) \
2456         -pthread
2457
2458 test_bus_chat_LDADD = \
2459         libsystemd-internal.la \
2460         libsystemd-shared.la
2461
2462 test_bus_cleanup_SOURCES = \
2463         src/libsystemd/sd-bus/test-bus-cleanup.c
2464
2465 test_bus_cleanup_CFLAGS = \
2466         $(AM_CFLAGS) \
2467         $(SECCOMP_CFLAGS)
2468
2469 test_bus_cleanup_LDADD = \
2470         libsystemd-internal.la \
2471         libsystemd-shared.la
2472
2473 test_bus_server_SOURCES = \
2474         src/libsystemd/sd-bus/test-bus-server.c
2475
2476 test_bus_server_CFLAGS = \
2477         $(AM_CFLAGS) \
2478         -pthread
2479
2480 test_bus_server_LDADD = \
2481         libsystemd-internal.la \
2482         libsystemd-shared.la
2483
2484 test_bus_objects_SOURCES = \
2485         src/libsystemd/sd-bus/test-bus-objects.c
2486
2487 test_bus_objects_CFLAGS = \
2488         $(AM_CFLAGS) \
2489         $(CAP_CFLAGS) \
2490         -pthread
2491
2492 test_bus_objects_LDADD = \
2493         libsystemd-internal.la \
2494         libsystemd-shared.la \
2495         libsystemd-dump.la \
2496         libsystemd-capability.la \
2497         $(CAP_LIBS)
2498
2499 test_bus_error_SOURCES = \
2500         src/libsystemd/sd-bus/test-bus-error.c
2501
2502 test_bus_error_LDADD = \
2503         libsystemd-internal.la \
2504         libsystemd-shared.la
2505
2506 test_bus_gvariant_SOURCES = \
2507         src/libsystemd/sd-bus/test-bus-gvariant.c
2508
2509 test_bus_gvariant_LDADD = \
2510         libsystemd-internal.la \
2511         libsystemd-shared.la \
2512         libsystemd-dump.la \
2513         libsystemd-capability.la \
2514         $(GLIB_LIBS) \
2515         $(CAP_LIBS)
2516
2517 test_bus_gvariant_CFLAGS = \
2518         $(AM_CFLAGS) \
2519         $(GLIB_CFLAGS)
2520         $(CAP_CFLAGS)
2521
2522 test_bus_creds_SOURCES = \
2523         src/libsystemd/sd-bus/test-bus-creds.c
2524
2525 test_bus_creds_LDADD = \
2526         libsystemd-internal.la \
2527         libsystemd-shared.la \
2528         libsystemd-dump.la \
2529         libsystemd-capability.la
2530
2531 test_bus_match_SOURCES = \
2532         src/libsystemd/sd-bus/test-bus-match.c
2533
2534 test_bus_match_LDADD = \
2535         libsystemd-internal.la \
2536         libsystemd-shared.la
2537
2538 test_bus_kernel_SOURCES = \
2539         src/libsystemd/sd-bus/test-bus-kernel.c
2540
2541 test_bus_kernel_LDADD = \
2542         libsystemd-internal.la \
2543         libsystemd-shared.la \
2544         libsystemd-dump.la \
2545         libsystemd-capability.la \
2546         $(CAP_LIBS)
2547
2548 test_bus_kernel_CFLAGS = \
2549         $(AM_CFLAGS) \
2550         $(CAP_CFLAGS)
2551
2552 test_bus_kernel_bloom_SOURCES = \
2553         src/libsystemd/sd-bus/test-bus-kernel-bloom.c
2554
2555 test_bus_kernel_bloom_LDADD = \
2556         libsystemd-internal.la \
2557         libsystemd-shared.la
2558
2559 test_bus_kernel_benchmark_SOURCES = \
2560         src/libsystemd/sd-bus/test-bus-kernel-benchmark.c
2561
2562 test_bus_kernel_benchmark_LDADD = \
2563         libsystemd-internal.la \
2564         libsystemd-shared.la
2565
2566 test_bus_memfd_SOURCES = \
2567         src/libsystemd/sd-bus/test-bus-memfd.c
2568
2569 test_bus_memfd_LDADD = \
2570         libsystemd-internal.la \
2571         libsystemd-shared.la
2572
2573 test_bus_zero_copy_SOURCES = \
2574         src/libsystemd/sd-bus/test-bus-zero-copy.c
2575
2576 test_bus_zero_copy_LDADD = \
2577         libsystemd-internal.la \
2578         libsystemd-shared.la \
2579         libsystemd-dump.la \
2580         libsystemd-capability.la \
2581         $(CAP_LIBS)
2582
2583 test_bus_zero_copy_CFLAGS = \
2584         $(AM_CFLAGS) \
2585         $(CAP_CFLAGS)
2586
2587 test_bus_introspect_SOURCES = \
2588         src/libsystemd/sd-bus/test-bus-introspect.c
2589
2590 test_bus_introspect_LDADD = \
2591         libsystemd-internal.la \
2592         libsystemd-shared.la
2593
2594 test_event_SOURCES = \
2595         src/libsystemd/sd-event/test-event.c
2596
2597 test_event_LDADD = \
2598         libsystemd-internal.la \
2599         libsystemd-shared.la
2600
2601 test_rtnl_SOURCES = \
2602         src/libsystemd/sd-rtnl/test-rtnl.c
2603
2604 test_rtnl_LDADD = \
2605         libsystemd-internal.la \
2606         libsystemd-shared.la
2607
2608 test_resolve_SOURCES = \
2609         src/libsystemd/sd-resolve/test-resolve.c
2610
2611 test_resolve_LDADD = \
2612         libsystemd-resolve.la \
2613         libsystemd-internal.la \
2614         libsystemd-shared.la
2615
2616 test_resolve_CFLAGS = \
2617         $(AM_CFLAGS) \
2618         -pthread
2619
2620 busctl_SOURCES = \
2621         src/libsystemd/sd-bus/busctl.c
2622
2623 busctl_LDADD = \
2624         libsystemd-internal.la \
2625         libsystemd-shared.la \
2626         libsystemd-dump.la \
2627         libsystemd-capability.la \
2628         $(CAP_LIBS)
2629
2630 busctl_CFLAGS = \
2631         $(AM_CFLAGS) \
2632         $(CAP_CFLAGS)
2633
2634 # ------------------------------------------------------------------------------
2635 noinst_LTLIBRARIES += \
2636         libsystemd-network.la
2637
2638 libsystemd_network_la_CFLAGS = \
2639         $(AM_CFLAGS) \
2640         $(KMOD_CFLAGS)
2641
2642 libsystemd_network_la_SOURCES = \
2643         src/systemd/sd-network.h \
2644         src/systemd/sd-dhcp-client.h \
2645         src/systemd/sd-dhcp-server.h \
2646         src/systemd/sd-dhcp-lease.h \
2647         src/systemd/sd-ipv4ll.h \
2648         src/network/sd-network.c \
2649         src/network/network-util.h \
2650         src/libsystemd-network/sd-dhcp-client.c \
2651         src/libsystemd-network/sd-dhcp-server.c \
2652         src/libsystemd-network/dhcp-network.c \
2653         src/libsystemd-network/dhcp-option.c \
2654         src/libsystemd-network/dhcp-packet.c \
2655         src/libsystemd-network/dhcp-internal.h \
2656         src/libsystemd-network/dhcp-server-internal.h \
2657         src/libsystemd-network/dhcp-protocol.h \
2658         src/libsystemd-network/dhcp-lease-internal.h \
2659         src/libsystemd-network/sd-dhcp-lease.c \
2660         src/libsystemd-network/sd-ipv4ll.c \
2661         src/libsystemd-network/ipv4ll-network.c \
2662         src/libsystemd-network/ipv4ll-packet.c \
2663         src/libsystemd-network/ipv4ll-internal.h \
2664         src/libsystemd-network/network-internal.c \
2665         src/libsystemd-network/network-internal.h \
2666         src/systemd/sd-icmp6-nd.h \
2667         src/systemd/sd-dhcp6-client.h \
2668         src/systemd/sd-dhcp6-lease.h \
2669         src/libsystemd-network/sd-icmp6-nd.c \
2670         src/libsystemd-network/sd-dhcp6-client.c \
2671         src/libsystemd-network/dhcp6-internal.h \
2672         src/libsystemd-network/dhcp6-protocol.h \
2673         src/libsystemd-network/dhcp6-network.c \
2674         src/libsystemd-network/dhcp6-option.c \
2675         src/libsystemd-network/dhcp6-lease-internal.h \
2676         src/libsystemd-network/sd-dhcp6-lease.c
2677
2678 libsystemd_network_la_LIBADD = \
2679         libudev-internal.la \
2680         libsystemd-label.la \
2681         libsystemd-internal.la \
2682         libsystemd-shared.la \
2683         $(KMOD_LIBS)
2684
2685 test_dhcp_option_SOURCES = \
2686         src/libsystemd-network/dhcp-protocol.h \
2687         src/libsystemd-network/dhcp-internal.h \
2688         src/libsystemd-network/test-dhcp-option.c
2689
2690 test_dhcp_option_LDADD = \
2691         libsystemd-network.la \
2692         libsystemd-internal.la \
2693         libsystemd-shared.la
2694
2695 test_dhcp_client_SOURCES = \
2696         src/systemd/sd-dhcp-client.h \
2697         src/libsystemd-network/dhcp-protocol.h \
2698         src/libsystemd-network/dhcp-internal.h \
2699         src/libsystemd-network/test-dhcp-client.c
2700
2701 test_dhcp_client_LDADD = \
2702         libsystemd-network.la \
2703         libsystemd-label.la \
2704         libsystemd-internal.la \
2705         libsystemd-shared.la
2706
2707 test_dhcp_server_SOURCES = \
2708         src/libsystemd-network/test-dhcp-server.c
2709
2710 test_dhcp_server_LDADD = \
2711         libsystemd-network.la \
2712         libsystemd-internal.la \
2713         libsystemd-shared.la
2714
2715 test_ipv4ll_SOURCES = \
2716         src/systemd/sd-ipv4ll.h \
2717         src/libsystemd-network/ipv4ll-internal.h \
2718         src/libsystemd-network/test-ipv4ll.c
2719
2720 test_ipv4ll_LDADD = \
2721         libsystemd-network.la \
2722         libsystemd-label.la \
2723         libsystemd-internal.la \
2724         libsystemd-shared.la
2725
2726 test_icmp6_rs_SOURCES = \
2727         src/systemd/sd-dhcp6-client.h \
2728         src/systemd/sd-icmp6-nd.h \
2729         src/libsystemd-network/dhcp6-internal.h \
2730         src/libsystemd-network/test-icmp6-rs.c
2731
2732 test_icmp6_rs_LDADD = \
2733         libsystemd-network.la \
2734         libsystemd-internal.la \
2735         libsystemd-shared.la
2736
2737 test_dhcp6_client_SOURCES = \
2738         src/systemd/sd-dhcp6-client.h \
2739         src/libsystemd-network/dhcp6-internal.h \
2740         src/libsystemd-network/test-dhcp6-client.c
2741
2742 test_dhcp6_client_LDADD = \
2743         libsystemd-network.la \
2744         libsystemd-internal.la \
2745         libsystemd-shared.la
2746
2747 tests += \
2748         test-dhcp-option \
2749         test-dhcp-client \
2750         test-dhcp-server \
2751         test-ipv4ll \
2752         test-icmp6-rs \
2753         test-dhcp6-client
2754
2755 # ------------------------------------------------------------------------------
2756 if ENABLE_GTK_DOC
2757 SUBDIRS += \
2758         docs/libudev
2759
2760 noinst_DATA += \
2761         docs/html/libudev \
2762         docs/html/gudev
2763 endif
2764
2765 include_HEADERS += \
2766         src/libudev/libudev.h
2767
2768 lib_LTLIBRARIES += \
2769         libudev.la
2770
2771 libudev_la_SOURCES =\
2772         src/libudev/libudev.sym \
2773         src/libudev/libudev-private.h \
2774         src/libudev/libudev.c \
2775         src/libudev/libudev-list.c \
2776         src/libudev/libudev-util.c \
2777         src/libudev/libudev-device.c \
2778         src/libudev/libudev-enumerate.c \
2779         src/libudev/libudev-monitor.c \
2780         src/libudev/libudev-queue.c \
2781         src/libudev/libudev-hwdb-def.h \
2782         src/libudev/libudev-hwdb.c
2783
2784 libudev_la_CFLAGS = \
2785         $(AM_CFLAGS) \
2786         -fvisibility=hidden
2787
2788 libudev_la_LDFLAGS = \
2789         $(AM_LDFLAGS) \
2790         -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
2791         -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
2792
2793 libudev_la_LIBADD = \
2794         libsystemd-internal.la \
2795         libsystemd-shared.la
2796
2797 pkgconfiglib_DATA += \
2798         src/libudev/libudev.pc
2799
2800 EXTRA_DIST += \
2801         src/libudev/libudev.pc.in
2802
2803 CLEANFILES += \
2804         src/libudev/libudev.pc \
2805         docs/html/libudev \
2806         docs/html/gudev
2807
2808 docs/html/libudev:
2809         $(AM_V_at)$(MKDIR_P) $(dir $@)
2810         $(AM_V_LN)$(LN_S) -f ../libudev/html $@
2811
2812 docs/html/gudev:
2813         $(AM_V_at)$(MKDIR_P) $(dir $@)
2814         $(AM_V_LN)$(LN_S) -f ../gudev/html $@
2815
2816 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2817 libudev-install-hook:
2818         libname=libudev.so && $(move-to-rootlibdir)
2819
2820 libudev-uninstall-hook:
2821         rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
2822
2823 INSTALL_EXEC_HOOKS += libudev-install-hook
2824 UNINSTALL_EXEC_HOOKS += libudev-uninstall-hook
2825
2826 # ------------------------------------------------------------------------------
2827 noinst_LTLIBRARIES += \
2828         libudev-internal.la
2829
2830 libudev_internal_la_SOURCES =\
2831         $(libudev_la_SOURCES) \
2832         src/libudev/libudev-device-private.c
2833
2834 libudev_internal_la_CFLAGS = \
2835         $(AM_CFLAGS) \
2836         -fvisibility=default
2837
2838 # ------------------------------------------------------------------------------
2839 INSTALL_DIRS += \
2840         $(sysconfdir)/udev/rules.d \
2841         $(sysconfdir)/udev/hwdb.d
2842
2843 dist_network_DATA = \
2844         network/99-default.link \
2845         network/80-container-host0.network \
2846         network/80-container-ve.network
2847
2848 dist_udevrules_DATA += \
2849         rules/42-usb-hid-pm.rules \
2850         rules/50-udev-default.rules \
2851         rules/60-drm.rules \
2852         rules/60-keyboard.rules \
2853         rules/60-persistent-storage-tape.rules \
2854         rules/60-persistent-serial.rules \
2855         rules/60-persistent-input.rules \
2856         rules/60-persistent-alsa.rules \
2857         rules/60-persistent-storage.rules \
2858         rules/64-btrfs.rules \
2859         rules/75-net-description.rules \
2860         rules/75-tty-description.rules \
2861         rules/78-sound-card.rules \
2862         rules/80-net-setup-link.rules \
2863         rules/95-udev-late.rules
2864
2865 nodist_udevrules_DATA += \
2866         rules/99-systemd.rules
2867
2868 dist_udevhwdb_DATA = \
2869         hwdb/20-pci-vendor-model.hwdb \
2870         hwdb/20-pci-classes.hwdb \
2871         hwdb/20-usb-vendor-model.hwdb \
2872         hwdb/20-usb-classes.hwdb \
2873         hwdb/20-sdio-vendor-model.hwdb \
2874         hwdb/20-sdio-classes.hwdb \
2875         hwdb/20-bluetooth-vendor-product.hwdb \
2876         hwdb/20-acpi-vendor.hwdb \
2877         hwdb/20-OUI.hwdb \
2878         hwdb/20-net-ifname.hwdb \
2879         hwdb/60-keyboard.hwdb
2880
2881 udevconfdir = $(sysconfdir)/udev
2882 dist_udevconf_DATA = \
2883         src/udev/udev.conf
2884
2885 sharepkgconfigdir = $(datadir)/pkgconfig
2886 sharepkgconfig_DATA = \
2887         src/udev/udev.pc
2888
2889 EXTRA_DIST += \
2890         rules/99-systemd.rules.in \
2891         src/udev/udev.pc.in
2892
2893 CLEANFILES += \
2894         rules/99-systemd.rules \
2895         src/udev/udev.pc
2896
2897 EXTRA_DIST += \
2898         units/systemd-udevd.service.in \
2899         units/systemd-udev-trigger.service.in \
2900         units/systemd-udev-settle.service.in \
2901         units/systemd-udev-hwdb-update.service.in
2902
2903 CLEANFILES += \
2904         units/systemd-udevd.service \
2905         units/systemd-udev-trigger.service \
2906         units/systemd-udev-settle.service \
2907         units/systemd-udev-hwdb-update.service
2908
2909 SOCKETS_TARGET_WANTS += \
2910         systemd-udevd-control.socket \
2911         systemd-udevd-kernel.socket
2912
2913 SYSINIT_TARGET_WANTS += \
2914         systemd-udevd.service \
2915         systemd-udev-trigger.service \
2916         systemd-udev-hwdb-update.service
2917
2918 rootbin_PROGRAMS += \
2919         udevadm
2920
2921 rootlibexec_PROGRAMS += \
2922         systemd-udevd
2923
2924 noinst_LTLIBRARIES += \
2925         libudev-core.la
2926
2927 src/udev/keyboard-keys.txt:
2928         $(AM_V_at)$(MKDIR_P) $(dir $@)
2929         $(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/' > $@
2930
2931 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt
2932         $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
2933
2934 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
2935         $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
2936
2937 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt
2938         $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
2939
2940 libudev_core_la_SOURCES = \
2941         src/udev/udev.h \
2942         src/udev/udev-event.c \
2943         src/udev/udev-watch.c \
2944         src/udev/udev-node.c \
2945         src/udev/udev-rules.c \
2946         src/udev/udev-ctrl.c \
2947         src/udev/udev-builtin.c \
2948         src/udev/udev-builtin-btrfs.c \
2949         src/udev/udev-builtin-hwdb.c \
2950         src/udev/udev-builtin-input_id.c \
2951         src/udev/udev-builtin-keyboard.c \
2952         src/udev/udev-builtin-net_id.c \
2953         src/udev/udev-builtin-net_setup_link.c \
2954         src/udev/udev-builtin-path_id.c \
2955         src/udev/udev-builtin-usb_id.c \
2956         src/udev/net/link-config.h \
2957         src/udev/net/link-config.c \
2958         src/udev/net/ethtool-util.h \
2959         src/udev/net/ethtool-util.c
2960
2961 nodist_libudev_core_la_SOURCES = \
2962         src/udev/keyboard-keys-from-name.h \
2963         src/udev/keyboard-keys-to-name.h \
2964         src/udev/net/link-config-gperf.c
2965
2966 BUILT_SOURCES += \
2967         $(nodist_libudev_core_la_SOURCES)
2968
2969 CLEANFILES += \
2970         src/udev/keyboard-keys-from-name.gperf \
2971         src/udev/keyboard-keys.txt \
2972         src/udev/net/link-config-gperf.c
2973
2974 EXTRA_DIST += \
2975         src/udev/net/link-config-gperf.gperf
2976
2977 libudev_core_la_CFLAGS = \
2978         $(AM_CFLAGS) \
2979         $(BLKID_CFLAGS) \
2980         $(KMOD_CFLAGS)
2981
2982 libudev_core_la_LIBADD = \
2983         libudev-internal.la \
2984         libsystemd-label.la \
2985         libsystemd-internal.la \
2986         libsystemd-network.la \
2987         libsystemd-shared.la \
2988         $(BLKID_LIBS) \
2989         $(KMOD_LIBS)
2990
2991 libudev_core_la_CPPFLAGS = \
2992         $(AM_CPPFLAGS) \
2993         -DFIRMWARE_PATH="$(FIRMWARE_PATH)"
2994
2995 if ENABLE_FIRMWARE
2996 libudev_core_la_SOURCES += \
2997         src/udev/udev-builtin-firmware.c
2998
2999 dist_udevrules_DATA += \
3000         rules/50-firmware.rules
3001 endif
3002
3003 if HAVE_KMOD
3004 libudev_core_la_SOURCES += \
3005         src/udev/udev-builtin-kmod.c
3006
3007 dist_udevrules_DATA += \
3008         rules/80-drivers.rules
3009 endif
3010
3011 if HAVE_BLKID
3012 libudev_core_la_SOURCES += \
3013         src/udev/udev-builtin-blkid.c
3014 endif
3015
3016 if HAVE_ACL
3017 libudev_core_la_SOURCES += \
3018         src/udev/udev-builtin-uaccess.c \
3019         src/login/logind-acl.c \
3020         src/libsystemd/sd-login/sd-login.c \
3021         src/systemd/sd-login.h
3022
3023 libudev_core_la_LIBADD += \
3024         libsystemd-acl.la
3025 endif
3026
3027 systemd_udevd_SOURCES = \
3028         src/udev/udevd.c
3029
3030 systemd_udevd_LDADD = \
3031         libudev-core.la
3032
3033 udevadm_SOURCES = \
3034         src/udev/udevadm.c \
3035         src/udev/udevadm-info.c \
3036         src/udev/udevadm-control.c \
3037         src/udev/udevadm-monitor.c \
3038         src/udev/udevadm-hwdb.c \
3039         src/udev/udevadm-settle.c \
3040         src/udev/udevadm-trigger.c \
3041         src/udev/udevadm-test.c \
3042         src/udev/udevadm-test-builtin.c
3043
3044 udevadm_LDADD = \
3045         libudev-core.la
3046
3047 # Update hwdb on installation. Do not bother if installing
3048 # in DESTDIR, since this is likely for packaging purposes.
3049 hwdb-update-hook:
3050         -test -n "$(DESTDIR)" || $(rootbindir)/udevadm hwdb --update
3051
3052 INSTALL_DATA_HOOKS += \
3053         hwdb-update-hook
3054
3055 hwdb-remove-hook:
3056         -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
3057
3058 # ------------------------------------------------------------------------------
3059 TESTS += \
3060         test/udev-test.pl \
3061         test/rules-test.sh
3062
3063 manual_tests += \
3064         test-libudev \
3065         test-udev
3066
3067 test_libudev_SOURCES = \
3068         src/test/test-libudev.c
3069
3070 test_libudev_LDADD = \
3071         libsystemd-label.la \
3072         libudev-internal.la \
3073         libsystemd-shared.la
3074
3075 test_udev_SOURCES = \
3076         src/test/test-udev.c
3077
3078 test_udev_LDADD = \
3079         libudev-core.la \
3080         $(BLKID_LIBS) \
3081         $(KMOD_LIBS) \
3082         $(SELINUX_LIBS)
3083
3084 if HAVE_ACL
3085 test_udev_LDADD += \
3086         libsystemd-acl.la
3087 endif
3088
3089 check_DATA += \
3090         test/sys
3091
3092 # packed sysfs test tree
3093 test/sys:
3094         $(AM_V_at)$(MKDIR_P) $(dir $@)
3095         $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
3096
3097 test-sys-distclean:
3098         -rm -rf test/sys
3099 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
3100
3101 EXTRA_DIST += \
3102         test/sys.tar.xz \
3103         test/udev-test.pl \
3104         test/rules-test.sh \
3105         test/rule-syntax-check.py
3106
3107 # ------------------------------------------------------------------------------
3108 ata_id_SOURCES = \
3109         src/udev/ata_id/ata_id.c
3110
3111 ata_id_LDADD = \
3112         libudev-internal.la \
3113         libsystemd-shared.la
3114
3115 udevlibexec_PROGRAMS += \
3116         ata_id
3117
3118 # ------------------------------------------------------------------------------
3119 cdrom_id_SOURCES = \
3120         src/udev/cdrom_id/cdrom_id.c
3121
3122 cdrom_id_LDADD = \
3123         libudev-internal.la \
3124         libsystemd-shared.la
3125
3126 udevlibexec_PROGRAMS += \
3127         cdrom_id
3128
3129 dist_udevrules_DATA += \
3130         rules/60-cdrom_id.rules
3131
3132 # ------------------------------------------------------------------------------
3133 collect_SOURCES = \
3134         src/udev/collect/collect.c
3135
3136 collect_LDADD = \
3137         libudev-internal.la \
3138         libsystemd-shared.la
3139
3140 udevlibexec_PROGRAMS += \
3141         collect
3142
3143 # ------------------------------------------------------------------------------
3144 scsi_id_SOURCES =\
3145         src/udev/scsi_id/scsi_id.c \
3146         src/udev/scsi_id/scsi_serial.c \
3147         src/udev/scsi_id/scsi.h \
3148         src/udev/scsi_id/scsi_id.h
3149
3150 scsi_id_LDADD = \
3151         libudev-internal.la \
3152         libsystemd-shared.la
3153
3154 udevlibexec_PROGRAMS += \
3155         scsi_id
3156
3157 EXTRA_DIST += \
3158         src/udev/scsi_id/README
3159
3160 # ------------------------------------------------------------------------------
3161 v4l_id_SOURCES = \
3162         src/udev/v4l_id/v4l_id.c
3163
3164 v4l_id_LDADD = \
3165         libudev-internal.la
3166
3167 udevlibexec_PROGRAMS += \
3168         v4l_id
3169
3170 dist_udevrules_DATA += \
3171         rules/60-persistent-v4l.rules
3172
3173 # ------------------------------------------------------------------------------
3174 accelerometer_SOURCES = \
3175         src/udev/accelerometer/accelerometer.c
3176
3177 accelerometer_LDADD = \
3178         libudev-internal.la -lm \
3179         libsystemd-shared.la
3180
3181 udevlibexec_PROGRAMS += \
3182         accelerometer
3183
3184 dist_udevrules_DATA += \
3185         rules/61-accelerometer.rules
3186
3187 # ------------------------------------------------------------------------------
3188 if ENABLE_GUDEV
3189 if ENABLE_GTK_DOC
3190 SUBDIRS += \
3191         docs/gudev
3192 endif
3193
3194 libgudev_includedir = \
3195         $(includedir)/gudev-1.0/gudev
3196
3197 libgudev_include_HEADERS = \
3198         src/gudev/gudev.h \
3199         src/gudev/gudevenums.h \
3200         src/gudev/gudevenumtypes.h \
3201         src/gudev/gudevtypes.h \
3202         src/gudev/gudevclient.h \
3203         src/gudev/gudevdevice.h \
3204         src/gudev/gudevenumerator.h
3205
3206 lib_LTLIBRARIES += libgudev-1.0.la
3207
3208 pkgconfiglib_DATA += \
3209         src/gudev/gudev-1.0.pc
3210
3211 CLEANFILES += \
3212         src/gudev/gudev-1.0.pc
3213
3214 libgudev_1_0_la_SOURCES = \
3215         src/gudev/libgudev-1.0.sym \
3216         src/gudev/gudevenums.h \
3217         src/gudev/gudevenumtypes.h \
3218         src/gudev/gudevenumtypes.h\
3219         src/gudev/gudevtypes.h \
3220         src/gudev/gudevclient.h \
3221         src/gudev/gudevclient.c \
3222         src/gudev/gudevdevice.h \
3223         src/gudev/gudevdevice.c \
3224         src/gudev/gudevenumerator.h \
3225         src/gudev/gudevenumerator.c \
3226         src/gudev/gudevprivate.h
3227
3228 nodist_libgudev_1_0_la_SOURCES = \
3229         src/gudev/gudevmarshal.h \
3230         src/gudev/gudevmarshal.c \
3231         src/gudev/gudevenumtypes.h \
3232         src/gudev/gudevenumtypes.c
3233
3234 BUILT_SOURCES += \
3235         $(nodist_libgudev_1_0_la_SOURCES)
3236
3237 libgudev_1_0_la_CPPFLAGS = \
3238         $(AM_CPPFLAGS) \
3239         -I$(top_builddir)/src\
3240         -I$(top_srcdir)/src\
3241         -I$(top_builddir)/src/gudev \
3242         -I$(top_srcdir)/src/gudev \
3243         -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
3244         -D_GUDEV_COMPILATION \
3245         -DG_LOG_DOMAIN=\"GUdev\"
3246
3247 libgudev_1_0_la_CFLAGS = \
3248         $(AM_CFLAGS) \
3249         -fvisibility=default \
3250         $(GLIB_CFLAGS)
3251
3252 libgudev_1_0_la_LIBADD = \
3253         libudev.la \
3254         $(GLIB_LIBS)
3255
3256 libgudev_1_0_la_LDFLAGS = \
3257         $(AM_LDFLAGS) \
3258         -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
3259         -export-dynamic \
3260         -no-undefined \
3261         -Wl,--version-script=$(top_srcdir)/src/gudev/libgudev-1.0.sym
3262
3263 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
3264         $(AM_V_at)$(MKDIR_P) $(dir $@)
3265         $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
3266
3267 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
3268         $(AM_V_at)$(MKDIR_P) $(dir $@)
3269         $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
3270         glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
3271
3272 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
3273         $(AM_V_at)$(MKDIR_P) $(dir $@)
3274         $(AM_V_GEN)glib-mkenums --template $^ > $@
3275
3276 if HAVE_INTROSPECTION
3277 -include $(INTROSPECTION_MAKEFILE)
3278
3279 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
3280
3281 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
3282
3283 src_gudev_GUdev_1_0_gir_CFLAGS = \
3284         $(AM_CFLAGS) \
3285         $(INCLUDES) \
3286         -D_GUDEV_COMPILATION \
3287         -D_GUDEV_WORK_AROUND_DEV_T_BUG \
3288         -I$(top_srcdir)/src \
3289         -I$(top_builddir)/src \
3290         -I$(top_srcdir)/src/gudev \
3291         -I$(top_builddir)/src/gudev
3292
3293 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
3294
3295 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
3296         --pkg-export=gudev-1.0 \
3297         --warn-all
3298
3299 src_gudev_GUdev_1_0_gir_FILES = \
3300         src/gudev/gudev.h \
3301         src/gudev/gudevtypes.h \
3302         src/gudev/gudevenums.h \
3303         src/gudev/gudevenumtypes.h \
3304         src/gudev/gudevclient.h \
3305         src/gudev/gudevdevice.h \
3306         src/gudev/gudevenumerator.h \
3307         src/gudev/gudevclient.c \
3308         src/gudev/gudevdevice.c \
3309         src/gudev/gudevenumerator.c
3310
3311 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
3312 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
3313
3314 girdir = $(datadir)/gir-1.0
3315 gir_DATA = \
3316         src/gudev/GUdev-1.0.gir
3317
3318 typelibsdir = $(libdir)/girepository-1.0
3319 typelibs_DATA = \
3320         src/gudev/GUdev-1.0.typelib
3321
3322 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
3323 endif # HAVE_INTROSPECTION
3324
3325 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
3326 libgudev-install-hook:
3327         libname=libgudev-1.0.so && $(move-to-rootlibdir)
3328
3329 libgudev-uninstall-hook:
3330         rm -f $(DESTDIR)$(rootlibdir)/libgudev-1.0.so*
3331
3332 INSTALL_EXEC_HOOKS += libgudev-install-hook
3333 UNINSTALL_EXEC_HOOKS += libgudev-uninstall-hook
3334 endif
3335
3336 EXTRA_DIST += \
3337         src/gudev/gudev-1.0.pc.in \
3338         src/gudev/gudevmarshal.list \
3339         src/gudev/gudevenumtypes.h.template \
3340         src/gudev/gudevenumtypes.c.template \
3341         src/gudev/gjs-example.js \
3342         src/gudev/seed-example-enum.js \
3343         src/gudev/seed-example.js
3344
3345 # ------------------------------------------------------------------------------
3346 mtd_probe_SOURCES =  \
3347         src/udev/mtd_probe/mtd_probe.c \
3348         src/udev/mtd_probe/mtd_probe.h \
3349         src/udev/mtd_probe/probe_smartmedia.c
3350
3351 dist_udevrules_DATA += \
3352         rules/75-probe_mtd.rules
3353
3354 udevlibexec_PROGRAMS += \
3355         mtd_probe
3356
3357 # ------------------------------------------------------------------------------
3358 test_id128_SOURCES = \
3359         src/test/test-id128.c
3360
3361 test_id128_LDADD = \
3362         libsystemd-internal.la \
3363         libsystemd-shared.la
3364
3365 tests += \
3366         test-id128
3367
3368 # ------------------------------------------------------------------------------
3369
3370 rootlibexec_PROGRAMS += \
3371         systemd-activate
3372
3373 systemd_activate_SOURCES = \
3374         src/activate/activate.c
3375
3376 systemd_activate_LDADD = \
3377         libsystemd-label.la \
3378         libsystemd-internal.la \
3379         libsystemd-shared.la
3380
3381 # ------------------------------------------------------------------------------
3382 systemd_journald_SOURCES = \
3383         src/journal/journald.c \
3384         src/journal/journald-server.h
3385
3386 systemd_journald_LDADD = \
3387         libsystemd-journal-core.la \
3388         libsystemd-internal.la \
3389         libsystemd-shared.la
3390
3391 systemd_cat_SOURCES = \
3392         src/journal/cat.c
3393
3394 systemd_cat_LDADD = \
3395         libsystemd-journal-core.la
3396
3397 if HAVE_MICROHTTPD
3398 rootlibexec_PROGRAMS += \
3399         systemd-journal-remote
3400
3401 systemd_journal_remote_SOURCES = \
3402         src/journal/journal-remote-parse.h \
3403         src/journal/journal-remote-parse.c \
3404         src/journal/journal-remote-write.h \
3405         src/journal/journal-remote-write.c \
3406         src/journal/journal-remote.c
3407
3408 systemd_journal_remote_LDADD = \
3409         libsystemd-internal.la \
3410         libsystemd-journal-core.la
3411
3412 systemd_journal_remote_SOURCES += \
3413         src/journal/microhttpd-util.h \
3414         src/journal/microhttpd-util.c
3415
3416 systemd_journal_remote_CFLAGS = \
3417         $(AM_CFLAGS) \
3418         $(MICROHTTPD_CFLAGS)
3419
3420 systemd_journal_remote_LDADD += \
3421         $(MICROHTTPD_LIBS)
3422
3423 if HAVE_GNUTLS
3424 systemd_journal_remote_LDADD += \
3425         $(GNUTLS_LIBS)
3426 endif
3427 endif
3428
3429 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
3430 journalctl_CFLAGS = \
3431         $(AM_CFLAGS)
3432
3433 journalctl_SOURCES = \
3434         src/journal/journalctl.c
3435
3436 journalctl_LDADD = \
3437         libsystemd-journal-internal.la \
3438         libsystemd-internal.la \
3439         libsystemd-logs.la \
3440         libsystemd-shared.la
3441
3442 if HAVE_ACL
3443 journalctl_LDADD += \
3444         libsystemd-acl.la
3445 endif
3446
3447 if HAVE_QRENCODE
3448 journalctl_SOURCES += \
3449         src/journal/journal-qrcode.c \
3450         src/journal/journal-qrcode.h
3451
3452 journalctl_CFLAGS += \
3453         $(QRENCODE_CFLAGS)
3454
3455 journalctl_LDADD += \
3456         $(QRENCODE_LIBS)
3457 endif
3458
3459 test_journal_SOURCES = \
3460         src/journal/test-journal.c
3461
3462 test_journal_LDADD = \
3463         libsystemd-journal-core.la
3464
3465 test_journal_send_SOURCES = \
3466         src/journal/test-journal-send.c
3467
3468 test_journal_send_LDADD = \
3469         libsystemd-journal-core.la
3470
3471 test_journal_syslog_SOURCES = \
3472         src/journal/test-journal-syslog.c
3473
3474 test_journal_syslog_LDADD = \
3475         libsystemd-journal-core.la
3476
3477 test_journal_match_SOURCES = \
3478         src/journal/test-journal-match.c
3479
3480 test_journal_match_LDADD = \
3481         libsystemd-journal-core.la
3482
3483 test_journal_enum_SOURCES = \
3484         src/journal/test-journal-enum.c
3485
3486 test_journal_enum_LDADD = \
3487         libsystemd-journal-core.la
3488
3489 test_journal_stream_SOURCES = \
3490         src/journal/test-journal-stream.c
3491
3492 test_journal_stream_LDADD = \
3493         libsystemd-journal-core.la
3494
3495 test_journal_flush_SOURCES = \
3496         src/journal/test-journal-flush.c
3497
3498 test_journal_flush_LDADD = \
3499         libsystemd-journal-core.la
3500
3501 test_journal_init_SOURCES = \
3502         src/journal/test-journal-init.c
3503
3504 test_journal_init_LDADD = \
3505         libsystemd-journal-core.la
3506
3507 test_journal_verify_SOURCES = \
3508         src/journal/test-journal-verify.c
3509
3510 test_journal_verify_LDADD = \
3511         libsystemd-journal-core.la
3512
3513 test_journal_interleaving_SOURCES = \
3514         src/journal/test-journal-interleaving.c
3515
3516 test_journal_interleaving_LDADD = \
3517         libsystemd-journal-core.la
3518
3519 test_mmap_cache_SOURCES = \
3520         src/journal/test-mmap-cache.c
3521
3522 test_mmap_cache_LDADD = \
3523         libsystemd-journal-core.la
3524
3525 test_catalog_SOURCES = \
3526         src/journal/test-catalog.c
3527
3528 test_catalog_CPPFLAGS = \
3529         $(AM_CPPFLAGS) \
3530         -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
3531
3532 test_catalog_LDADD = \
3533         libsystemd-journal-core.la
3534
3535 test_compress_SOURCES = \
3536         src/journal/test-compress.c
3537
3538 test_compress_LDADD = \
3539         libsystemd-journal-internal.la \
3540         libsystemd-shared.la
3541
3542 test_compress_benchmark_SOURCES = \
3543         src/journal/test-compress-benchmark.c
3544
3545 test_compress_benchmark_LDADD = \
3546         libsystemd-journal-internal.la \
3547         libsystemd-shared.la
3548
3549 libsystemd_journal_core_la_SOURCES = \
3550         src/journal/journald-kmsg.c \
3551         src/journal/journald-kmsg.h \
3552         src/journal/journald-syslog.c \
3553         src/journal/journald-syslog.h \
3554         src/journal/journald-stream.c \
3555         src/journal/journald-stream.h \
3556         src/journal/journald-server.c \
3557         src/journal/journald-server.h \
3558         src/journal/journald-console.c \
3559         src/journal/journald-console.h \
3560         src/journal/journald-wall.c \
3561         src/journal/journald-wall.h \
3562         src/journal/journald-native.c \
3563         src/journal/journald-native.h \
3564         src/journal/journald-rate-limit.c \
3565         src/journal/journald-rate-limit.h \
3566         src/journal/journal-internal.h
3567
3568 nodist_libsystemd_journal_core_la_SOURCES = \
3569         src/journal/journald-gperf.c
3570
3571 libsystemd_journal_core_la_LIBADD = \
3572         libsystemd-journal-internal.la \
3573         libudev-internal.la \
3574         libsystemd-capability.la \
3575         libsystemd-label.la \
3576         libsystemd-internal.la \
3577         libsystemd-shared.la
3578
3579 if HAVE_ACL
3580 libsystemd_journal_core_la_LIBADD += \
3581         libsystemd-acl.la
3582 endif
3583
3584 noinst_LTLIBRARIES += \
3585         libsystemd-journal-core.la
3586
3587 journal-install-hook:
3588         -$(MKDIR_P) $(DESTDIR)/var/log/journal
3589         -chown 0:0 $(DESTDIR)/var/log/journal
3590         -chmod 755 $(DESTDIR)/var/log/journal
3591         -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
3592         -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
3593
3594 journal-uninstall-hook:
3595         -rmdir $(DESTDIR)/var/log/journal/
3596
3597 INSTALL_EXEC_HOOKS += journal-install-hook
3598 UNINSTALL_EXEC_HOOKS += journal-uninstall-hook
3599
3600 # ------------------------------------------------------------------------------
3601 # Update catalog on installation. Do not bother if installing
3602 # in DESTDIR, since this is likely for packaging purposes.
3603 catalog-update-hook:
3604         -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
3605
3606 INSTALL_DATA_HOOKS += \
3607         catalog-update-hook
3608
3609 catalog-remove-hook:
3610         -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
3611
3612 UNINSTALL_DATA_HOOKS += \
3613         catalog-remove-hook
3614
3615 manual_tests += \
3616         test-journal-enum
3617
3618 tests += \
3619         test-journal \
3620         test-journal-send \
3621         test-journal-syslog \
3622         test-journal-match \
3623         test-journal-stream \
3624         test-journal-init \
3625         test-journal-verify \
3626         test-journal-interleaving \
3627         test-journal-flush \
3628         test-mmap-cache \
3629         test-catalog
3630
3631 tests += \
3632         test-compress \
3633         test-compress-benchmark
3634
3635 pkginclude_HEADERS += \
3636         src/systemd/sd-journal.h \
3637         src/systemd/sd-messages.h \
3638         src/systemd/_sd-common.h
3639
3640 libsystemd_journal_internal_la_SOURCES = \
3641         src/journal/sd-journal.c \
3642         src/systemd/sd-journal.h \
3643         src/systemd/_sd-common.h \
3644         src/journal/journal-file.c \
3645         src/journal/journal-file.h \
3646         src/journal/journal-vacuum.c \
3647         src/journal/journal-vacuum.h \
3648         src/journal/journal-verify.c \
3649         src/journal/journal-verify.h \
3650         src/journal/lookup3.c \
3651         src/journal/lookup3.h \
3652         src/journal/journal-send.c \
3653         src/journal/journal-def.h \
3654         src/journal/compress.h \
3655         src/journal/catalog.c \
3656         src/journal/catalog.h \
3657         src/journal/mmap-cache.c \
3658         src/journal/mmap-cache.h
3659
3660 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
3661 libsystemd_journal_internal_la_CFLAGS = \
3662         $(AM_CFLAGS)
3663
3664 libsystemd_journal_internal_la_LIBADD =
3665
3666 libsystemd_journal_internal_la_SOURCES += \
3667         src/journal/compress.c
3668
3669 if HAVE_XZ
3670 libsystemd_journal_internal_la_CFLAGS += \
3671         $(XZ_CFLAGS)
3672
3673 libsystemd_journal_internal_la_LIBADD += \
3674         $(XZ_LIBS)
3675 endif
3676
3677 if HAVE_LZ4
3678 libsystemd_journal_internal_la_LIBADD += \
3679         -llz4
3680 endif
3681
3682 if HAVE_GCRYPT
3683 libsystemd_journal_internal_la_SOURCES += \
3684         src/journal/journal-authenticate.c \
3685         src/journal/journal-authenticate.h \
3686         src/journal/fsprg.c \
3687         src/journal/fsprg.h
3688
3689 libsystemd_journal_internal_la_LIBADD += \
3690         $(GCRYPT_LIBS)
3691
3692 # fsprg.c is a drop-in file using void pointer arithmetic
3693 libsystemd_journal_internal_la_CFLAGS += \
3694         $(GCRYPT_CFLAGS) \
3695         -Wno-pointer-arith
3696 endif
3697
3698 noinst_LTLIBRARIES += \
3699         libsystemd-journal-internal.la
3700
3701 rootlibexec_PROGRAMS += \
3702         systemd-journald
3703
3704 rootbin_PROGRAMS += \
3705         journalctl
3706
3707 bin_PROGRAMS += \
3708         systemd-cat
3709
3710 dist_systemunit_DATA += \
3711         units/systemd-journald.socket \
3712         units/systemd-journald-dev-log.socket
3713
3714 nodist_systemunit_DATA += \
3715         units/systemd-journald.service \
3716         units/systemd-journal-flush.service \
3717         units/systemd-journal-catalog-update.service
3718
3719 dist_pkgsysconf_DATA += \
3720         src/journal/journald.conf
3721
3722 dist_catalog_DATA = \
3723         catalog/systemd.fr.catalog \
3724         catalog/systemd.ru.catalog \
3725         catalog/systemd.it.catalog \
3726         catalog/systemd.catalog
3727
3728 SOCKETS_TARGET_WANTS += \
3729         systemd-journald.socket \
3730         systemd-journald-dev-log.socket
3731
3732 SYSINIT_TARGET_WANTS += \
3733         systemd-journald.service \
3734         systemd-journal-flush.service \
3735         systemd-journal-catalog-update.service
3736
3737 EXTRA_DIST += \
3738         units/systemd-journald.service.in \
3739         units/systemd-journal-flush.service.in \
3740         units/systemd-journal-catalog-update.service.in \
3741         src/journal/journald-gperf.gperf
3742
3743 CLEANFILES += \
3744         src/journal/journald-gperf.c
3745
3746 # ------------------------------------------------------------------------------
3747 if HAVE_MICROHTTPD
3748 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
3749
3750 rootlibexec_PROGRAMS += \
3751         systemd-journal-gatewayd
3752
3753 systemd_journal_gatewayd_SOURCES = \
3754         src/journal/journal-gatewayd.c \
3755         src/journal/microhttpd-util.h \
3756         src/journal/microhttpd-util.c
3757
3758 systemd_journal_gatewayd_LDADD = \
3759         libsystemd-logs.la \
3760         libsystemd-journal-internal.la \
3761         libsystemd-internal.la \
3762         libsystemd-shared.la \
3763         $(MICROHTTPD_LIBS)
3764
3765 if HAVE_GNUTLS
3766 systemd_journal_gatewayd_LDADD += \
3767         $(GNUTLS_LIBS)
3768 endif
3769
3770 systemd_journal_gatewayd_CFLAGS = \
3771         $(AM_CFLAGS) \
3772         $(MICROHTTPD_CFLAGS)
3773
3774 systemd_journal_gatewayd_CPPFLAGS = \
3775         $(AM_CPPFLAGS) \
3776         -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\"
3777
3778 dist_systemunit_DATA += \
3779         units/systemd-journal-gatewayd.socket
3780
3781 nodist_systemunit_DATA += \
3782         units/systemd-journal-gatewayd.service
3783
3784 dist_gatewayddocumentroot_DATA = \
3785         src/journal/browse.html
3786
3787 endif
3788
3789 EXTRA_DIST += \
3790         units/systemd-journal-gatewayd.service.in
3791
3792 # ------------------------------------------------------------------------------
3793
3794 systemd_socket_proxyd_SOURCES = \
3795         src/socket-proxy/socket-proxyd.c
3796
3797 systemd_socket_proxyd_LDADD = \
3798         libsystemd-logs.la \
3799         libsystemd-internal.la \
3800         libsystemd-journal-internal.la \
3801         libsystemd-shared.la \
3802         libsystemd-resolve.la
3803
3804 # ------------------------------------------------------------------------------
3805 if ENABLE_COREDUMP
3806 systemd_coredump_SOURCES = \
3807         src/journal/coredump.c \
3808         src/journal/coredump-vacuum.c \
3809         src/journal/coredump-vacuum.h
3810
3811 systemd_coredump_LDADD = \
3812         libsystemd-journal-internal.la \
3813         libsystemd-label.la \
3814         libsystemd-internal.la \
3815         libsystemd-shared.la
3816
3817 if HAVE_ELFUTILS
3818 systemd_coredump_SOURCES += \
3819         src/journal/stacktrace.c \
3820         src/journal/stacktrace.h
3821
3822 systemd_coredump_LDADD += \
3823         $(ELFUTILS_LIBS)
3824 endif
3825
3826 rootlibexec_PROGRAMS += \
3827         systemd-coredump
3828
3829 dist_pkgsysconf_DATA += \
3830         src/journal/coredump.conf
3831
3832 if HAVE_ACL
3833 systemd_coredump_LDADD += \
3834         libsystemd-acl.la
3835 endif
3836
3837 coredumpctl_SOURCES = \
3838         src/journal/coredumpctl.c
3839
3840 coredumpctl_LDADD = \
3841         libsystemd-journal-internal.la \
3842         libsystemd-internal.la \
3843         libsystemd-shared.la
3844
3845 bin_PROGRAMS += \
3846         coredumpctl
3847
3848 manual_tests += \
3849         test-coredump-vacuum
3850
3851 test_coredump_vacuum_SOURCES = \
3852         src/journal/test-coredump-vacuum.c  \
3853         src/journal/coredump-vacuum.c \
3854         src/journal/coredump-vacuum.h
3855
3856 test_coredump_vacuum_LDADD = \
3857         libsystemd-internal.la \
3858         libsystemd-shared.la
3859
3860 dist_bashcompletion_DATA += \
3861         shell-completion/bash/coredumpctl
3862
3863 dist_zshcompletion_DATA += \
3864         shell-completion/zsh/_coredumpctl
3865
3866 GENERAL_ALIASES += \
3867         $(bindir)/coredumpctl $(bindir)/systemd-coredumpctl
3868
3869 sysctl_DATA = \
3870         sysctl.d/50-coredump.conf
3871
3872 CLEANFILES += \
3873         sysctl.d/50-coredump.conf
3874 endif
3875
3876 EXTRA_DIST += \
3877         sysctl.d/50-coredump.conf.in
3878
3879 # ------------------------------------------------------------------------------
3880 if ENABLE_BINFMT
3881 systemd_binfmt_SOURCES = \
3882         src/binfmt/binfmt.c
3883
3884 systemd_binfmt_LDADD = \
3885         libsystemd-shared.la
3886
3887 rootlibexec_PROGRAMS += \
3888         systemd-binfmt
3889
3890 dist_systemunit_DATA += \
3891         units/proc-sys-fs-binfmt_misc.automount \
3892         units/proc-sys-fs-binfmt_misc.mount
3893
3894 nodist_systemunit_DATA += \
3895         units/systemd-binfmt.service
3896
3897 INSTALL_DIRS += \
3898         $(prefix)/lib/binfmt.d \
3899         $(sysconfdir)/binfmt.d
3900
3901 SYSINIT_TARGET_WANTS += \
3902         systemd-binfmt.service \
3903         proc-sys-fs-binfmt_misc.automount
3904
3905 endif
3906
3907 EXTRA_DIST += \
3908         units/systemd-binfmt.service.in
3909
3910 # ------------------------------------------------------------------------------
3911 if ENABLE_VCONSOLE
3912 systemd_vconsole_setup_SOURCES = \
3913         src/vconsole/vconsole-setup.c
3914
3915 systemd_vconsole_setup_LDADD = \
3916         libsystemd-shared.la
3917
3918 rootlibexec_PROGRAMS += \
3919         systemd-vconsole-setup
3920
3921 nodist_systemunit_DATA += \
3922         units/systemd-vconsole-setup.service
3923
3924 SYSINIT_TARGET_WANTS += \
3925         systemd-vconsole-setup.service
3926 endif
3927
3928 EXTRA_DIST += \
3929         units/systemd-vconsole-setup.service.in
3930
3931 # ------------------------------------------------------------------------------
3932 if ENABLE_READAHEAD
3933 systemd_readahead_SOURCES = \
3934         src/readahead/readahead.c \
3935         src/readahead/readahead-collect.c \
3936         src/readahead/readahead-replay.c \
3937         src/readahead/readahead-analyze.c \
3938         src/readahead/readahead-common.c \
3939         src/readahead/readahead-common.h
3940
3941 systemd_readahead_LDADD = \
3942         libsystemd-internal.la \
3943         libudev-internal.la \
3944         libsystemd-shared.la
3945
3946 dist_doc_DATA += \
3947         src/readahead/sd-readahead.c \
3948         src/systemd/sd-readahead.h
3949
3950 rootlibexec_PROGRAMS += \
3951         systemd-readahead
3952
3953 dist_systemunit_DATA += \
3954         units/systemd-readahead-drop.service \
3955         units/systemd-readahead-done.timer
3956
3957 nodist_systemunit_DATA += \
3958         units/systemd-readahead-collect.service \
3959         units/systemd-readahead-replay.service \
3960         units/systemd-readahead-done.service
3961
3962 manual_tests += \
3963         test-ssd
3964
3965 test_ssd_SOURCES = \
3966         src/readahead/test-ssd.c \
3967         src/readahead/readahead-common.c \
3968         src/readahead/readahead-common.h
3969
3970 test_ssd_LDADD = \
3971         libsystemd-internal.la \
3972         libudev-internal.la \
3973         libsystemd-shared.la
3974
3975 endif
3976
3977 EXTRA_DIST += \
3978         units/systemd-readahead-collect.service.in \
3979         units/systemd-readahead-replay.service.in \
3980         units/systemd-readahead-done.service.in
3981
3982 # ------------------------------------------------------------------------------
3983 if ENABLE_BOOTCHART
3984 systemd_bootchart_SOURCES = \
3985         src/bootchart/bootchart.c \
3986         src/bootchart/bootchart.h \
3987         src/bootchart/store.c \
3988         src/bootchart/store.h \
3989         src/bootchart/svg.c \
3990         src/bootchart/svg.h
3991
3992 systemd_bootchart_LDADD = \
3993         libsystemd-journal-internal.la \
3994         libsystemd-shared.la
3995
3996 rootlibexec_PROGRAMS += \
3997         systemd-bootchart
3998
3999 dist_pkgsysconf_DATA += \
4000         src/bootchart/bootchart.conf
4001 endif
4002
4003 # ------------------------------------------------------------------------------
4004 if ENABLE_QUOTACHECK
4005 rootlibexec_PROGRAMS += \
4006         systemd-quotacheck
4007
4008 nodist_systemunit_DATA += \
4009         units/systemd-quotacheck.service
4010
4011 systemd_quotacheck_SOURCES = \
4012         src/quotacheck/quotacheck.c
4013
4014 systemd_quotacheck_LDADD = \
4015         libsystemd-shared.la
4016 endif
4017
4018 EXTRA_DIST += \
4019         units/systemd-quotacheck.service.in
4020
4021 nodist_systemunit_DATA += \
4022         units/quotaon.service
4023
4024 # ------------------------------------------------------------------------------
4025 if ENABLE_RANDOMSEED
4026 rootlibexec_PROGRAMS += \
4027         systemd-random-seed
4028
4029 nodist_systemunit_DATA += \
4030         units/systemd-random-seed.service
4031
4032 systemd_random_seed_SOURCES = \
4033         src/random-seed/random-seed.c
4034
4035 systemd_random_seed_LDADD = \
4036         libsystemd-label.la \
4037         libsystemd-shared.la
4038
4039 SYSINIT_TARGET_WANTS += \
4040         systemd-random-seed.service
4041
4042 endif
4043
4044 EXTRA_DIST += \
4045         units/systemd-random-seed.service.in
4046
4047 # ------------------------------------------------------------------------------
4048 if ENABLE_BACKLIGHT
4049 rootlibexec_PROGRAMS += \
4050         systemd-backlight
4051
4052 nodist_systemunit_DATA += \
4053         units/systemd-backlight@.service
4054
4055 systemd_backlight_SOURCES = \
4056         src/backlight/backlight.c
4057
4058 systemd_backlight_LDADD = \
4059         libsystemd-label.la \
4060         libudev-internal.la \
4061         libsystemd-shared.la
4062 endif
4063
4064 EXTRA_DIST += \
4065         units/systemd-backlight@.service.in
4066
4067 # ------------------------------------------------------------------------------
4068 if ENABLE_RFKILL
4069 rootlibexec_PROGRAMS += \
4070         systemd-rfkill
4071
4072 nodist_systemunit_DATA += \
4073         units/systemd-rfkill@.service
4074
4075 systemd_rfkill_SOURCES = \
4076         src/rfkill/rfkill.c
4077
4078 systemd_rfkill_LDADD = \
4079         libsystemd-label.la \
4080         libudev-internal.la \
4081         libsystemd-shared.la
4082 endif
4083
4084 EXTRA_DIST += \
4085         units/systemd-rfkill@.service.in
4086
4087 # ------------------------------------------------------------------------------
4088 if HAVE_LIBCRYPTSETUP
4089 rootlibexec_PROGRAMS += \
4090         systemd-cryptsetup
4091
4092 systemgenerator_PROGRAMS += \
4093         systemd-cryptsetup-generator
4094
4095 dist_systemunit_DATA += \
4096         units/cryptsetup.target \
4097         units/cryptsetup-pre.target
4098
4099 systemd_cryptsetup_SOURCES = \
4100         src/cryptsetup/cryptsetup.c
4101
4102 systemd_cryptsetup_CFLAGS = \
4103         $(AM_CFLAGS) \
4104         $(LIBCRYPTSETUP_CFLAGS)
4105
4106 systemd_cryptsetup_LDADD = \
4107         libsystemd-label.la \
4108         libudev-internal.la \
4109         libsystemd-shared.la \
4110         $(LIBCRYPTSETUP_LIBS)
4111
4112 systemd_cryptsetup_generator_SOURCES = \
4113         src/cryptsetup/cryptsetup-generator.c
4114
4115 systemd_cryptsetup_generator_LDADD = \
4116         libsystemd-label.la \
4117         libsystemd-shared.la
4118
4119 SYSINIT_TARGET_WANTS += \
4120         cryptsetup.target
4121
4122 endif
4123
4124 # ------------------------------------------------------------------------------
4125 if ENABLE_HOSTNAMED
4126 systemd_hostnamed_SOURCES = \
4127         src/hostname/hostnamed.c
4128
4129 systemd_hostnamed_LDADD = \
4130         libsystemd-label.la \
4131         libsystemd-internal.la \
4132         libsystemd-shared.la
4133
4134 rootlibexec_PROGRAMS += \
4135         systemd-hostnamed
4136
4137 nodist_systemunit_DATA += \
4138         units/systemd-hostnamed.service
4139
4140 dist_systemunit_DATA += \
4141         units/org.freedesktop.hostname1.busname
4142
4143 dist_dbuspolicy_DATA += \
4144         src/hostname/org.freedesktop.hostname1.conf
4145
4146 dist_dbussystemservice_DATA += \
4147         src/hostname/org.freedesktop.hostname1.service
4148
4149 polkitpolicy_files += \
4150         src/hostname/org.freedesktop.hostname1.policy
4151
4152 SYSTEM_UNIT_ALIASES += \
4153         systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
4154
4155 BUSNAMES_TARGET_WANTS += \
4156         org.freedesktop.hostname1.busname
4157
4158 hostnamectl_SOURCES = \
4159         src/hostname/hostnamectl.c
4160
4161 hostnamectl_LDADD = \
4162         libsystemd-internal.la \
4163         libsystemd-shared.la
4164
4165 bin_PROGRAMS += \
4166         hostnamectl
4167
4168 dist_bashcompletion_DATA += \
4169         shell-completion/bash/hostnamectl
4170
4171 dist_zshcompletion_DATA += \
4172         shell-completion/zsh/_hostnamectl
4173
4174 endif
4175
4176 polkitpolicy_in_files += \
4177         src/hostname/org.freedesktop.hostname1.policy.in
4178
4179 EXTRA_DIST += \
4180         units/systemd-hostnamed.service.in
4181
4182 # ------------------------------------------------------------------------------
4183 if ENABLE_KDBUS
4184 dist_systemunit_DATA += \
4185         units/org.freedesktop.systemd1.busname
4186
4187 BUSNAMES_TARGET_WANTS += \
4188         org.freedesktop.systemd1.busname
4189 endif
4190
4191 # ------------------------------------------------------------------------------
4192 if ENABLE_LOCALED
4193 systemd_localed_SOURCES = \
4194         src/locale/localed.c
4195
4196 systemd_localed_LDADD = \
4197         libsystemd-label.la \
4198         libsystemd-internal.la \
4199         libsystemd-shared.la
4200
4201 nodist_systemunit_DATA += \
4202         units/systemd-localed.service
4203
4204 dist_systemunit_DATA += \
4205         units/org.freedesktop.locale1.busname
4206
4207 rootlibexec_PROGRAMS += \
4208         systemd-localed
4209
4210 dist_dbuspolicy_DATA += \
4211         src/locale/org.freedesktop.locale1.conf
4212
4213 dist_dbussystemservice_DATA += \
4214         src/locale/org.freedesktop.locale1.service
4215
4216 polkitpolicy_files += \
4217         src/locale/org.freedesktop.locale1.policy
4218
4219 SYSTEM_UNIT_ALIASES += \
4220         systemd-localed.service dbus-org.freedesktop.locale1.service
4221
4222 BUSNAMES_TARGET_WANTS += \
4223         org.freedesktop.locale1.busname
4224
4225 dist_pkgdata_DATA += \
4226         src/locale/kbd-model-map
4227
4228 dist_noinst_SCRIPT = \
4229         src/locale/generate-kbd-model-map
4230
4231 update-kbd-model-map: src/locale/generate-kbd-model-map
4232         $PYTHON $< >src/locale/kbd-model-map
4233
4234 localectl_SOURCES = \
4235         src/locale/localectl.c
4236
4237 localectl_LDADD = \
4238         libsystemd-internal.la \
4239         libsystemd-shared.la
4240
4241 bin_PROGRAMS += \
4242         localectl
4243
4244 dist_bashcompletion_DATA += \
4245         shell-completion/bash/localectl
4246
4247 dist_zshcompletion_DATA += \
4248         shell-completion/zsh/_localectl
4249
4250 endif
4251
4252 .PHONY: update-kbd-model-map
4253
4254 polkitpolicy_in_files += \
4255         src/locale/org.freedesktop.locale1.policy.in
4256
4257 EXTRA_DIST += \
4258         units/systemd-localed.service.in
4259
4260 # ------------------------------------------------------------------------------
4261 if ENABLE_TIMEDATED
4262 systemd_timedated_SOURCES = \
4263         src/timedate/timedated.c
4264
4265 systemd_timedated_LDADD = \
4266         libsystemd-label.la \
4267         libsystemd-internal.la \
4268         libsystemd-shared.la
4269
4270 rootlibexec_PROGRAMS += \
4271         systemd-timedated
4272
4273 dist_dbussystemservice_DATA += \
4274         src/timedate/org.freedesktop.timedate1.service
4275
4276 dist_dbuspolicy_DATA += \
4277         src/timedate/org.freedesktop.timedate1.conf
4278
4279 nodist_systemunit_DATA += \
4280         units/systemd-timedated.service
4281
4282 dist_systemunit_DATA += \
4283         units/org.freedesktop.timedate1.busname
4284
4285 polkitpolicy_files += \
4286         src/timedate/org.freedesktop.timedate1.policy
4287
4288 INSTALL_DIRS += \
4289         $(prefix)/lib/systemd/ntp-units.d \
4290         $(sysconfdir)/systemd/ntp-units.d
4291
4292 SYSTEM_UNIT_ALIASES += \
4293         systemd-timedated.service dbus-org.freedesktop.timedate1.service
4294
4295 BUSNAMES_TARGET_WANTS += \
4296         org.freedesktop.timedate1.busname
4297
4298 timedatectl_SOURCES = \
4299         src/timedate/timedatectl.c
4300
4301 timedatectl_LDADD = \
4302         libsystemd-internal.la \
4303         libsystemd-shared.la
4304
4305 bin_PROGRAMS += \
4306         timedatectl
4307
4308 dist_bashcompletion_DATA += \
4309         shell-completion/bash/timedatectl
4310
4311 dist_zshcompletion_DATA += \
4312         shell-completion/zsh/_timedatectl
4313 endif
4314
4315 polkitpolicy_in_files += \
4316         src/timedate/org.freedesktop.timedate1.policy.in
4317
4318 EXTRA_DIST += \
4319         units/systemd-timedated.service.in
4320
4321 # ------------------------------------------------------------------------------
4322 if ENABLE_TIMESYNCD
4323 systemd_timesyncd_SOURCES = \
4324         src/timesync/timesyncd.c \
4325         src/timesync/timesyncd.h
4326
4327 nodist_systemd_timesyncd_SOURCES = \
4328         src/timesync/timesyncd-gperf.c
4329
4330 EXTRA_DIST += \
4331         src/timesync/timesyncd-gperf.gperf
4332
4333 CLEANFILES += \
4334         src/timesync/timesyncd-gperf.c
4335
4336 systemd_timesyncd_LDADD = \
4337         libsystemd-resolve.la \
4338         libsystemd-network.la \
4339         libsystemd-label.la \
4340         libsystemd-capability.la \
4341         libsystemd-internal.la \
4342         libsystemd-shared.la \
4343         -lm
4344
4345 rootlibexec_PROGRAMS += \
4346         systemd-timesyncd
4347
4348 nodist_systemunit_DATA += \
4349         units/systemd-timesyncd.service
4350
4351 GENERAL_ALIASES += \
4352         $(systemunitdir)/systemd-timesyncd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-timesyncd.service
4353
4354 EXTRA_DIST += \
4355         units/systemd-timesyncd.service.in
4356
4357 nodist_pkgsysconf_DATA += \
4358         src/timesync/timesyncd.conf
4359
4360 EXTRA_DIST += \
4361         src/timesync/timesyncd.conf.in
4362
4363 CLEANFILES += \
4364         src/timesync/timesyncd.conf
4365
4366 dist_ntpunits_DATA = \
4367         src/timesync/90-systemd.list
4368
4369 endif
4370
4371 # ------------------------------------------------------------------------------
4372 if HAVE_MYHOSTNAME
4373 libnss_myhostname_la_SOURCES = \
4374         src/nss-myhostname/nss-myhostname.c \
4375         src/nss-myhostname/ifconf.h \
4376         src/nss-myhostname/netlink.c
4377
4378 libnss_myhostname_la_LDFLAGS = \
4379         $(AM_LDFLAGS) \
4380         -module \
4381         -export-dynamic \
4382         -avoid-version \
4383         -shared \
4384         -shrext .so.2
4385
4386 libnss_myhostname_la_LIBADD = \
4387         libsystemd-shared.la \
4388         libsystemd-internal.la
4389
4390 lib_LTLIBRARIES += \
4391         libnss_myhostname.la
4392 endif
4393
4394 # ------------------------------------------------------------------------------
4395 if ENABLE_MACHINED
4396 systemd_machined_SOURCES = \
4397         src/machine/machined.c \
4398         src/machine/machined.h
4399
4400 systemd_machined_LDADD = \
4401         libsystemd-machine-core.la
4402
4403 rootlibexec_PROGRAMS += \
4404         systemd-machined
4405
4406 libsystemd_machine_core_la_SOURCES = \
4407         src/machine/machined-dbus.c \
4408         src/machine/machine.c \
4409         src/machine/machine.h \
4410         src/machine/machine-dbus.c
4411
4412 libsystemd_machine_core_la_LIBADD = \
4413         libsystemd-label.la \
4414         libsystemd-internal.la \
4415         libudev-internal.la \
4416         libsystemd-shared.la
4417
4418 noinst_LTLIBRARIES += \
4419         libsystemd-machine-core.la
4420
4421 machinectl_SOURCES = \
4422         src/machine/machinectl.c
4423
4424 machinectl_LDADD = \
4425         libsystemd-internal.la \
4426         libsystemd-shared.la
4427
4428 rootbin_PROGRAMS += \
4429         machinectl
4430
4431 dist_bashcompletion_DATA += \
4432         shell-completion/bash/machinectl
4433
4434 test_machine_tables_SOURCES = \
4435         src/machine/test-machine-tables.c
4436
4437 test_machine_tables_LDADD = \
4438         libsystemd-machine-core.la
4439
4440 tests += \
4441         test-machine-tables
4442
4443 nodist_systemunit_DATA += \
4444         units/systemd-machined.service
4445
4446 dist_systemunit_DATA += \
4447         units/machine.slice \
4448         units/org.freedesktop.machine1.busname
4449
4450 dist_dbussystemservice_DATA += \
4451         src/machine/org.freedesktop.machine1.service
4452
4453 dist_dbuspolicy_DATA += \
4454         src/machine/org.freedesktop.machine1.conf
4455
4456 dist_zshcompletion_DATA += \
4457         shell-completion/zsh/_machinectl \
4458         shell-completion/zsh/_sd_machines
4459
4460 SYSTEM_UNIT_ALIASES += \
4461         systemd-machined.service dbus-org.freedesktop.machine1.service
4462
4463 BUSNAMES_TARGET_WANTS += \
4464         org.freedesktop.machine1.busname
4465
4466 EXTRA_DIST += \
4467         units/systemd-machined.service.in
4468
4469 endif
4470
4471 # ------------------------------------------------------------------------------
4472 if ENABLE_RESOLVED
4473 systemd_resolved_SOURCES = \
4474         src/resolve/resolved.h \
4475         src/resolve/resolved.c \
4476         src/resolve/resolved-manager.c
4477
4478 systemd_resolved_CFLAGS = \
4479         $(AM_CFLAGS) \
4480         $(KMOD_CFLAGS)
4481
4482 nodist_systemd_resolved_SOURCES = \
4483         src/resolve/resolved-gperf.c
4484
4485 EXTRA_DIST += \
4486         src/resolve/resolved-gperf.gperf
4487
4488 CLEANFILES += \
4489         src/resolve/resolved-gperf.c
4490
4491 systemd_resolved_LDADD = \
4492         libsystemd-capability.la \
4493         libsystemd-network.la \
4494         libsystemd-label.la \
4495         libsystemd-internal.la \
4496         libsystemd-shared.la
4497
4498 rootlibexec_PROGRAMS += \
4499         systemd-resolved
4500
4501 nodist_systemunit_DATA += \
4502         units/systemd-resolved.service
4503
4504 EXTRA_DIST += \
4505         units/systemd-resolved.service.in
4506
4507 GENERAL_ALIASES += \
4508         $(systemunitdir)/systemd-resolved.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-resolved.service
4509
4510 nodist_pkgsysconf_DATA += \
4511         src/resolve/resolved.conf
4512
4513 EXTRA_DIST += \
4514         src/resolve/resolved.conf.in
4515
4516 CLEANFILES += \
4517         src/resolve/resolved.conf
4518
4519 endif
4520
4521 # ------------------------------------------------------------------------------
4522 if ENABLE_NETWORKD
4523 rootlibexec_PROGRAMS += \
4524         systemd-networkd
4525
4526 systemd_networkd_SOURCES = \
4527         src/network/networkd.c
4528
4529 systemd_networkd_LDADD = \
4530         libsystemd-networkd-core.la \
4531         libsystemd-capability.la
4532
4533 noinst_LTLIBRARIES += \
4534         libsystemd-networkd-core.la
4535
4536 libsystemd_networkd_core_la_CFLAGS = \
4537         $(AM_CFLAGS)
4538
4539 libsystemd_networkd_core_la_SOURCES = \
4540         src/libsystemd-network/network-internal.h \
4541         src/network/networkd.h \
4542         src/network/networkd-link.c \
4543         src/network/networkd-netdev.c \
4544         src/network/networkd-tunnel.c \
4545         src/network/networkd-veth.c \
4546         src/network/networkd-vxlan.c \
4547         src/network/networkd-vlan.c \
4548         src/network/networkd-macvlan.c \
4549         src/network/networkd-dummy.c \
4550         src/network/networkd-tuntap.c \
4551         src/network/networkd-network.c \
4552         src/network/networkd-address.c \
4553         src/network/networkd-route.c \
4554         src/network/networkd-manager.c \
4555         src/network/networkd-address-pool.c
4556
4557 nodist_libsystemd_networkd_core_la_SOURCES = \
4558         src/network/networkd-network-gperf.c \
4559         src/network/networkd-netdev-gperf.c
4560
4561 libsystemd_networkd_core_la_LIBADD = \
4562         libudev-internal.la \
4563         libsystemd-internal.la \
4564         libsystemd-network.la \
4565         libsystemd-label.la \
4566         libsystemd-shared.la
4567
4568 rootlibexec_PROGRAMS += \
4569         systemd-networkd-wait-online
4570
4571 systemd_networkd_wait_online_CFLAGS = \
4572         $(AM_CFLAGS)
4573
4574 systemd_networkd_wait_online_SOURCES = \
4575         src/libsystemd-network/network-internal.h \
4576         src/network/networkd-wait-online.c \
4577         src/network/networkd-wait-online.h
4578
4579 systemd_networkd_wait_online_LDADD = \
4580         libsystemd-network.la \
4581         libudev-internal.la \
4582         libsystemd-internal.la \
4583         libsystemd-shared.la
4584
4585 test_network_SOURCES = \
4586         src/network/test-network.c
4587
4588 test_network_CFLAGS = \
4589         $(AM_CFLAGS)
4590
4591 test_network_LDADD = \
4592         libsystemd-networkd-core.la
4593
4594 tests += \
4595         test-network
4596
4597 nodist_systemunit_DATA += \
4598         units/systemd-networkd.service \
4599         units/systemd-networkd-wait-online.service
4600
4601 GENERAL_ALIASES += \
4602         $(systemunitdir)/systemd-networkd.service $(pkgsysconfdir)/system/multi-user.target.wants/systemd-networkd.service \
4603         $(systemunitdir)/systemd-networkd-wait-online.service $(pkgsysconfdir)/system/network-online.target.wants/systemd-networkd-wait-online.service
4604
4605 EXTRA_DIST += \
4606         src/network/networkd-network-gperf.gperf \
4607         src/network/networkd-netdev-gperf.gperf \
4608         units/systemd-networkd.service.in \
4609         units/systemd-networkd-wait-online.service.in
4610
4611 CLEANFILES += \
4612         src/network/networkd-network-gperf.c \
4613         src/network/networkd-netdev-gperf.c
4614 endif
4615
4616 # ------------------------------------------------------------------------------
4617 if ENABLE_LOGIND
4618 systemd_logind_SOURCES = \
4619         src/login/logind.c \
4620         src/login/logind.h
4621
4622 nodist_systemd_logind_SOURCES = \
4623         src/login/logind-gperf.c
4624
4625 systemd_logind_LDADD = \
4626         libsystemd-logind-core.la
4627
4628 libsystemd_logind_core_la_SOURCES = \
4629         src/login/logind-core.c \
4630         src/login/logind-device.c \
4631         src/login/logind-device.h \
4632         src/login/logind-button.c \
4633         src/login/logind-button.h \
4634         src/login/logind-action.c \
4635         src/login/logind-action.h \
4636         src/login/logind-seat.c \
4637         src/login/logind-seat.h \
4638         src/login/logind-session.c \
4639         src/login/logind-session.h \
4640         src/login/logind-session-device.c \
4641         src/login/logind-session-device.h \
4642         src/login/logind-user.c \
4643         src/login/logind-user.h \
4644         src/login/logind-inhibit.c \
4645         src/login/logind-inhibit.h \
4646         src/login/logind-dbus.c \
4647         src/login/logind-session-dbus.c \
4648         src/login/logind-seat-dbus.c \
4649         src/login/logind-user-dbus.c \
4650         src/login/logind-acl.h
4651
4652 libsystemd_logind_core_la_LIBADD = \
4653         libsystemd-label.la \
4654         libsystemd-capability.la \
4655         libsystemd-internal.la \
4656         libudev-internal.la \
4657         libsystemd-shared.la
4658
4659 if HAVE_ACL
4660 libsystemd_logind_core_la_SOURCES += \
4661         src/login/logind-acl.c
4662
4663 libsystemd_logind_core_la_LIBADD += \
4664         libsystemd-acl.la
4665 endif
4666
4667 noinst_LTLIBRARIES += \
4668         libsystemd-logind-core.la
4669
4670 systemd_user_sessions_SOURCES = \
4671         src/login/user-sessions.c
4672
4673 systemd_user_sessions_LDADD = \
4674         libsystemd-shared.la
4675
4676 rootlibexec_PROGRAMS += \
4677         systemd-logind \
4678         systemd-user-sessions
4679
4680 loginctl_SOURCES = \
4681         src/login/loginctl.c \
4682         src/login/sysfs-show.c
4683
4684 loginctl_LDADD = \
4685         libsystemd-internal.la \
4686         libudev-internal.la \
4687         libsystemd-shared.la
4688
4689 rootbin_PROGRAMS += \
4690         loginctl
4691
4692 dist_bashcompletion_DATA += \
4693         shell-completion/bash/loginctl
4694
4695 dist_zshcompletion_DATA += \
4696         shell-completion/zsh/_loginctl \
4697         shell-completion/zsh/_systemd-inhibit
4698
4699 systemd_inhibit_SOURCES = \
4700         src/login/inhibit.c
4701
4702 systemd_inhibit_LDADD = \
4703         libsystemd-internal.la \
4704         libsystemd-shared.la
4705
4706 rootbin_PROGRAMS += \
4707         systemd-inhibit
4708
4709 test_login_SOURCES = \
4710         src/libsystemd/sd-login/test-login.c
4711
4712 test_login_LDADD = \
4713         libsystemd-internal.la \
4714         libsystemd-shared.la
4715
4716 test_login_shared_SOURCES = \
4717         src/login/test-login-shared.c
4718
4719 test_login_shared_LDADD = \
4720         libsystemd-internal.la \
4721         libsystemd-shared.la
4722
4723 test_inhibit_SOURCES = \
4724         src/login/test-inhibit.c
4725
4726 test_inhibit_LDADD = \
4727         libsystemd-internal.la \
4728         libsystemd-shared.la
4729
4730 test_login_tables_SOURCES = \
4731         src/login/test-login-tables.c
4732
4733 test_login_tables_LDADD = \
4734         libsystemd-logind-core.la
4735
4736 manual_tests += \
4737         test-login \
4738         test-inhibit
4739
4740 tests += \
4741         test-login-tables \
4742         test-login-shared
4743
4744 if HAVE_PAM
4745 pam_systemd_la_SOURCES = \
4746         src/login/pam_systemd.sym \
4747         src/login/pam_systemd.c
4748
4749 pam_systemd_la_CFLAGS = \
4750         $(AM_CFLAGS) \
4751         $(PAM_CFLAGS) \
4752         -fvisibility=hidden
4753
4754 pam_systemd_la_LDFLAGS = \
4755         $(AM_LDFLAGS) \
4756         -module \
4757         -export-dynamic \
4758         -avoid-version \
4759         -shared \
4760         -Wl,--version-script=$(top_srcdir)/src/login/pam_systemd.sym
4761
4762 pam_systemd_la_LIBADD = \
4763         libsystemd-capability.la \
4764         libsystemd-internal.la \
4765         libsystemd-shared.la \
4766         $(PAM_LIBS)
4767
4768 pamlib_LTLIBRARIES = \
4769         pam_systemd.la
4770
4771 dist_pamconf_DATA = \
4772         src/login/systemd-user
4773 endif
4774
4775 nodist_systemunit_DATA += \
4776         units/systemd-logind.service \
4777         units/systemd-user-sessions.service
4778
4779 dist_systemunit_DATA += \
4780         units/user.slice \
4781         units/org.freedesktop.login1.busname
4782
4783 dist_dbussystemservice_DATA += \
4784         src/login/org.freedesktop.login1.service
4785
4786 dist_dbuspolicy_DATA += \
4787         src/login/org.freedesktop.login1.conf
4788
4789 dist_pkgsysconf_DATA += \
4790         src/login/logind.conf
4791
4792 polkitpolicy_files += \
4793         src/login/org.freedesktop.login1.policy
4794
4795 INSTALL_DIRS += \
4796         $(systemdstatedir)
4797
4798 MULTI_USER_TARGET_WANTS += \
4799         systemd-logind.service \
4800         systemd-user-sessions.service
4801
4802 SYSTEM_UNIT_ALIASES += \
4803         systemd-logind.service dbus-org.freedesktop.login1.service
4804
4805 BUSNAMES_TARGET_WANTS += \
4806         org.freedesktop.login1.busname
4807
4808 if ENABLE_MULTI_SEAT_X
4809
4810 systemd_multi_seat_x_SOURCES = \
4811         src/login/multi-seat-x.c
4812
4813 systemd_multi_seat_x_LDADD = \
4814         libsystemd-label.la \
4815         libsystemd-shared.la
4816
4817 rootlibexec_PROGRAMS += \
4818         systemd-multi-seat-x
4819
4820 endif
4821
4822 dist_udevrules_DATA += \
4823         src/login/70-uaccess.rules \
4824         src/login/70-power-switch.rules
4825
4826 nodist_udevrules_DATA += \
4827         src/login/71-seat.rules \
4828         src/login/73-seat-late.rules
4829
4830 CLEANFILES += \
4831         src/login/logind-gperf.c \
4832         src/login/71-seat.rules \
4833         src/login/73-seat-late.rules
4834 endif
4835
4836 polkitpolicy_in_files += \
4837         src/login/org.freedesktop.login1.policy.in
4838
4839 EXTRA_DIST += \
4840         src/login/logind-gperf.gperf \
4841         src/login/71-seat.rules.in \
4842         src/login/73-seat-late.rules.in \
4843         units/systemd-logind.service.in \
4844         units/systemd-user-sessions.service.in
4845
4846 # ------------------------------------------------------------------------------
4847 if HAVE_PYTHON_DEVEL
4848 pkgpyexec_LTLIBRARIES = \
4849         _journal.la \
4850         id128.la \
4851         _daemon.la \
4852         _reader.la \
4853         login.la
4854
4855 _journal_la_SOURCES = \
4856         src/python-systemd/_journal.c
4857
4858 _journal_la_CFLAGS = \
4859         $(AM_CFLAGS) \
4860         -fvisibility=default \
4861         $(PYTHON_DEVEL_CFLAGS)
4862
4863 _journal_la_LDFLAGS = \
4864         $(AM_LDFLAGS) \
4865         -shared \
4866         -module \
4867         -avoid-version
4868
4869 _journal_la_LIBADD = \
4870         $(PYTHON_DEVEL_LIBS) \
4871         libsystemd.la
4872
4873 id128_la_SOURCES = \
4874         src/python-systemd/id128.c \
4875         src/python-systemd/pyutil.c \
4876         src/python-systemd/pyutil.h
4877
4878 nodist_id128_la_SOURCES = \
4879         src/python-systemd/id128-constants.h
4880
4881 id128_la_CFLAGS = \
4882         $(AM_CFLAGS) \
4883         -fvisibility=default \
4884         $(PYTHON_DEVEL_CFLAGS) \
4885         -I$(top_builddir)/src/python-systemd
4886
4887 id128_la_LDFLAGS = \
4888         $(AM_LDFLAGS) \
4889         -shared \
4890         -module \
4891         -avoid-version
4892
4893 id128_la_LIBADD = \
4894         $(PYTHON_DEVEL_LIBS) \
4895         libsystemd-shared.la \
4896         libsystemd.la
4897
4898 _daemon_la_SOURCES = \
4899         src/python-systemd/_daemon.c \
4900         src/python-systemd/pyutil.c \
4901         src/python-systemd/pyutil.h
4902
4903 _daemon_la_CFLAGS = \
4904         $(AM_CFLAGS) \
4905         -fvisibility=default \
4906         $(PYTHON_DEVEL_CFLAGS) \
4907         -I$(top_builddir)/src/python-systemd
4908
4909 _daemon_la_LDFLAGS = \
4910         $(AM_LDFLAGS) \
4911         -shared \
4912         -module \
4913         -avoid-version
4914
4915 _daemon_la_LIBADD = \
4916         $(PYTHON_DEVEL_LIBS) \
4917         libsystemd-shared.la \
4918         libsystemd.la
4919
4920 _reader_la_SOURCES = \
4921         src/python-systemd/_reader.c \
4922         src/python-systemd/pyutil.c \
4923         src/python-systemd/pyutil.h
4924
4925 _reader_la_CFLAGS = \
4926         $(AM_CFLAGS) \
4927         -fvisibility=default \
4928         $(PYTHON_DEVEL_CFLAGS)
4929
4930 _reader_la_LDFLAGS = \
4931         $(AM_LDFLAGS) \
4932         -shared \
4933         -module \
4934         -avoid-version
4935
4936 _reader_la_LIBADD = \
4937         $(PYTHON_DEVEL_LIBS) \
4938         libsystemd-shared.la \
4939         libsystemd.la
4940
4941 login_la_SOURCES = \
4942         src/python-systemd/login.c \
4943         src/python-systemd/pyutil.c \
4944         src/python-systemd/pyutil.h
4945
4946 login_la_CFLAGS = \
4947         $(AM_CFLAGS) \
4948         -fvisibility=default \
4949         $(PYTHON_DEVEL_CFLAGS)
4950
4951 login_la_LDFLAGS = \
4952         $(AM_LDFLAGS) \
4953         -shared \
4954         -module \
4955         -avoid-version
4956
4957 login_la_LIBADD = \
4958         $(PYTHON_DEVEL_LIBS) \
4959         libsystemd-shared.la \
4960         libsystemd.la
4961
4962 dist_pkgpyexec_PYTHON = \
4963         src/python-systemd/journal.py \
4964         src/python-systemd/daemon.py \
4965         src/python-systemd/__init__.py
4966
4967 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h
4968         $(AM_V_at)$(MKDIR_P) $(dir $@)
4969         $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
4970
4971 BUILT_SOURCES += \
4972         src/python-systemd/id128-constants.h
4973
4974 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
4975 sphinx-%:
4976         $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
4977         $(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/
4978         $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
4979
4980 python-shell:
4981         $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
4982         $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
4983
4984 destdir-sphinx: all
4985         dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
4986                 $(MAKE) DESTDIR="$$dir" install && \
4987                 $(MAKE) DESTDIR="$$dir" sphinx-html && \
4988                 rm -rf "$$dir"
4989
4990 endif
4991
4992 CLEAN_LOCAL_HOOKS += clean-sphinx
4993
4994 .PHONY: python-shell destdir-sphinx clean-sphinx clean-python
4995
4996 clean-sphinx:
4997         -rm -rf docs/html/python-systemd/
4998
4999 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
5000 clean-python:
5001         -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
5002         -rm -f _daemon.la id128.la _journal.la login.la _reader.la
5003
5004 # ------------------------------------------------------------------------------
5005 if ENABLE_COMPAT_LIBS
5006 EXTRA_DIST += \
5007         src/compat-libs/linkwarning.h
5008
5009 libsystemd-%.c: src/compat-libs/libsystemd-%.sym
5010         $(AM_V_at)$(MKDIR_P) $(dir $@)
5011         $(AM_V_GEN)sed -r -n 's/^ +(sd_.*);/obsolete_lib(\1,$(notdir $(basename $<)));/p' <$< >$@
5012
5013 BUILT_SOURCES += \
5014         libsystemd-journal.c \
5015         libsystemd-login.c \
5016         libsystemd-id128.c \
5017         libsystemd-daemon.c
5018
5019 libsystemd_journal_la_SOURCES = \
5020         libsystemd-journal.c \
5021         src/compat-libs/libsystemd-journal.sym
5022
5023 libsystemd_journal_la_CPPFLAGS = \
5024         $(AM_CFLAGS) \
5025         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
5026
5027 libsystemd_journal_la_LDFLAGS = \
5028         $(AM_LDFLAGS) \
5029         -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
5030         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-journal.sym
5031
5032 libsystemd_journal_la_LIBADD = \
5033         libsystemd-journal-internal.la \
5034         libsystemd-internal.la \
5035         libsystemd-shared.la
5036
5037 libsystemd_login_la_SOURCES = \
5038         libsystemd-login.c \
5039         src/compat-libs/libsystemd-login.sym
5040
5041 libsystemd_login_la_CPPFLAGS = \
5042         $(AM_CFLAGS) \
5043         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
5044
5045 libsystemd_login_la_LDFLAGS = \
5046         $(AM_LDFLAGS) \
5047         -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
5048         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-login.sym
5049
5050 libsystemd_login_la_LIBADD = \
5051         libsystemd-internal.la \
5052         libsystemd-shared.la
5053
5054 libsystemd_id128_la_SOURCES = \
5055         libsystemd-id128.c \
5056         src/compat-libs/libsystemd-id128.sym
5057
5058 libsystemd_id128_la_CPPFLAGS = \
5059         $(AM_CFLAGS) \
5060         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
5061
5062 libsystemd_id128_la_LDFLAGS = \
5063         $(AM_LDFLAGS) \
5064         -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
5065         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-id128.sym
5066
5067 libsystemd_id128_la_LIBADD = \
5068         libsystemd-internal.la \
5069         libsystemd-shared.la
5070
5071 libsystemd_daemon_la_SOURCES = \
5072         libsystemd-daemon.c \
5073         src/compat-libs/libsystemd-daemon.sym
5074
5075 libsystemd_daemon_la_CPPFLAGS = \
5076         $(AM_CFLAGS) \
5077         -imacros$(top_srcdir)/src/compat-libs/linkwarning.h
5078
5079 libsystemd_daemon_la_LDFLAGS = \
5080         $(AM_LDFLAGS) \
5081         -version-info $(LIBSYSTEMD_DAEMON_CURRENT):$(LIBSYSTEMD_DAEMON_REVISION):$(LIBSYSTEMD_DAEMON_AGE) \
5082         -Wl,--version-script=$(top_srcdir)/src/compat-libs/libsystemd-daemon.sym
5083
5084 libsystemd_daemon_la_LIBADD = \
5085         libsystemd-internal.la \
5086         libsystemd-shared.la
5087
5088 lib_LTLIBRARIES += \
5089         libsystemd-journal.la \
5090         libsystemd-login.la \
5091         libsystemd-id128.la \
5092         libsystemd-daemon.la
5093
5094 pkgconfiglib_DATA += \
5095         src/compat-libs/libsystemd-journal.pc \
5096         src/compat-libs/libsystemd-login.pc \
5097         src/compat-libs/libsystemd-id128.pc \
5098         src/compat-libs/libsystemd-daemon.pc
5099
5100 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
5101 compat-lib-install-hook:
5102         libname=libsystemd-login.so && $(move-to-rootlibdir)
5103         libname=libsystemd-journal.so && $(move-to-rootlibdir)
5104         libname=libsystemd-id128.so && $(move-to-rootlibdir)
5105         libname=libsystemd-daemon.so && $(move-to-rootlibdir)
5106
5107 compat-lib-uninstall-hook:
5108         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
5109         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
5110         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
5111         rm -f $(DESTDIR)$(rootlibdir)/libsystemd-daemon.so*
5112
5113 INSTALL_EXEC_HOOKS += compat-lib-install-hook
5114 UNINSTALL_EXEC_HOOKS += compat-lib-uninstall-hook
5115 endif
5116
5117 EXTRA_DIST += \
5118         src/compat-libs/libsystemd-journal.pc.in \
5119         src/compat-libs/libsystemd-login.pc.in \
5120         src/compat-libs/libsystemd-id128.pc.in \
5121         src/compat-libs/libsystemd-daemon.pc.in
5122
5123 # ------------------------------------------------------------------------------
5124 substitutions = \
5125        '|rootlibexecdir=$(rootlibexecdir)|' \
5126        '|rootbindir=$(rootbindir)|' \
5127        '|bindir=$(bindir)|' \
5128        '|SYSTEMCTL=$(rootbindir)/systemctl|' \
5129        '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
5130        '|pkgsysconfdir=$(pkgsysconfdir)|' \
5131        '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
5132        '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
5133        '|pkgdatadir=$(pkgdatadir)|' \
5134        '|systemunitdir=$(systemunitdir)|' \
5135        '|userunitdir=$(userunitdir)|' \
5136        '|systempresetdir=$(systempresetdir)|' \
5137        '|userpresetdir=$(userpresetdir)|' \
5138        '|udevhwdbdir=$(udevhwdbdir)|' \
5139        '|udevrulesdir=$(udevrulesdir)|' \
5140        '|catalogdir=$(catalogdir)|' \
5141        '|tmpfilesdir=$(tmpfilesdir)|' \
5142        '|sysusersdir=$(sysusersdir)|' \
5143        '|sysctldir=$(sysctldir)|' \
5144        '|systemgeneratordir=$(systemgeneratordir)|' \
5145        '|usergeneratordir=$(usergeneratordir)|' \
5146        '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
5147        '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
5148        '|PACKAGE_URL=$(PACKAGE_URL)|' \
5149        '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
5150        '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
5151        '|prefix=$(prefix)|' \
5152        '|exec_prefix=$(exec_prefix)|' \
5153        '|libdir=$(libdir)|' \
5154        '|includedir=$(includedir)|' \
5155        '|VERSION=$(VERSION)|' \
5156        '|rootprefix=$(rootprefix)|' \
5157        '|udevlibexecdir=$(udevlibexecdir)|' \
5158        '|SUSHELL=$(SUSHELL)|' \
5159        '|DEBUGTTY=$(DEBUGTTY)|' \
5160        '|KILL=$(KILL)|' \
5161        '|KMOD=$(KMOD)|' \
5162        '|MKDIR_P=$(MKDIR_P)|' \
5163        '|QUOTAON=$(QUOTAON)|' \
5164        '|QUOTACHECK=$(QUOTACHECK)|' \
5165        '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
5166        '|VARLOGDIR=$(varlogdir)|' \
5167        '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
5168        '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
5169        '|PYTHON=$(PYTHON)|' \
5170        '|PYTHON_BINARY=$(PYTHON_BINARY)|' \
5171        '|NTP_SERVERS=$(NTP_SERVERS)|' \
5172        '|DNS_SERVERS=$(DNS_SERVERS)|' \
5173        '|systemuidmax=$(SYSTEM_UID_MAX)|' \
5174        '|systemgidmax=$(SYSTEM_GID_MAX)|' \
5175        '|TTY_GID=$(TTY_GID)|' \
5176        '|systemsleepdir=$(systemsleepdir)|' \
5177        '|systemshutdowndir=$(systemshutdowndir)|' \
5178        '|binfmtdir=$(binfmtdir)|' \
5179        '|modulesloaddir=$(modulesloaddir)|'
5180
5181 SED_PROCESS = \
5182         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
5183         $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
5184                 < $< > $@
5185
5186 units/%: units/%.in
5187         $(SED_PROCESS)
5188
5189 man/%: man/%.in
5190         $(SED_PROCESS)
5191
5192 sysctl.d/%: sysctl.d/%.in
5193         $(SED_PROCESS)
5194
5195 %.pc: %.pc.in
5196         $(SED_PROCESS)
5197
5198 src/core/macros.%: src/core/macros.%.in
5199         $(SED_PROCESS)
5200
5201 src/%.policy.in: src/%.policy.in.in
5202         $(SED_PROCESS)
5203
5204 %.rules: %.rules.in
5205         $(SED_PROCESS)
5206
5207 %.conf: %.conf.in
5208         $(SED_PROCESS)
5209
5210 %.sh: %.sh.in
5211         $(SED_PROCESS)
5212         $(AM_V_GEN)chmod +x $@
5213
5214 src/%.c: src/%.gperf
5215         $(AM_V_at)$(MKDIR_P) $(dir $@)
5216         $(AM_V_GPERF)$(GPERF) < $< > $@
5217
5218 src/%: src/%.m4
5219         $(AM_V_at)$(MKDIR_P) $(dir $@)
5220         $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
5221
5222 units/%: units/%.m4
5223         $(AM_V_at)$(MKDIR_P) $(dir $@)
5224         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
5225
5226 units/user/%: units/%.m4
5227         $(AM_V_at)$(MKDIR_P) $(dir $@)
5228         $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
5229
5230 if ENABLE_POLKIT
5231 dist_polkitpolicy_DATA = \
5232         $(polkitpolicy_files) \
5233         $(polkitpolicy_in_in_files:.policy.in.in=.policy)
5234 endif
5235
5236 EXTRA_DIST += \
5237         $(polkitpolicy_in_files) \
5238         $(polkitpolicy_in_in_files)
5239
5240 CLEANFILES += \
5241         $(nodist_systemunit_DATA) \
5242         $(nodist_userunit_DATA) \
5243         $(pkgconfigdata_DATA) \
5244         $(pkgconfiglib_DATA) \
5245         $(nodist_polkitpolicy_DATA)
5246
5247 # ------------------------------------------------------------------------------
5248 if ENABLE_MANPAGES
5249 man/custom-entities.ent: configure.ac
5250         $(AM_V_GEN)$(MKDIR_P) $(dir $@)
5251         $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
5252          printf '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">\n,$(substitutions))))') \
5253          > $@ # '
5254
5255 DISTCLEANFILES += \
5256         man/custom-entities.ent
5257
5258 XSLTPROC_FLAGS = \
5259         --nonet \
5260         --xinclude \
5261         --stringparam man.output.quietly 1 \
5262         --stringparam funcsynopsis.style ansi \
5263         --stringparam man.authors.section.enabled 0 \
5264         --stringparam man.copyright.section.enabled 0 \
5265         --stringparam systemd.version $(VERSION) \
5266         --path '$(builddir)/man:$(srcdir)/man'
5267
5268 XSLTPROC_PROCESS_MAN = \
5269         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
5270
5271 XSLTPROC_PROCESS_HTML = \
5272         $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
5273
5274 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
5275         $(XSLTPROC_PROCESS_MAN)
5276
5277 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
5278         $(XSLTPROC_PROCESS_MAN)
5279
5280 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
5281         $(XSLTPROC_PROCESS_MAN)
5282
5283 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
5284         $(XSLTPROC_PROCESS_MAN)
5285
5286 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
5287         $(XSLTPROC_PROCESS_MAN)
5288
5289 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
5290         $(XSLTPROC_PROCESS_HTML)
5291
5292 define html-alias
5293         $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
5294 endef
5295
5296 endif
5297
5298 EXTRA_DIST += \
5299         man/custom-html.xsl \
5300         man/custom-man.xsl
5301
5302 # ------------------------------------------------------------------------------
5303 if HAVE_SYSV_COMPAT
5304 sysvinit_DATA = \
5305         docs/sysvinit/README
5306
5307 varlog_DATA = \
5308         docs/var-log/README
5309
5310 docs/sysvinit/README: docs/sysvinit/README.in
5311         $(SED_PROCESS)
5312
5313 docs/var-log/README: docs/var-log/README.in
5314         $(SED_PROCESS)
5315
5316 CLEANFILES += \
5317         docs/sysvinit/README \
5318         docs/var-log/README
5319 endif
5320
5321 EXTRA_DIST += \
5322         docs/sysvinit/README.in \
5323         docs/var-log/README.in
5324
5325 SOCKETS_TARGET_WANTS += \
5326         systemd-initctl.socket \
5327         systemd-shutdownd.socket
5328
5329 if HAVE_SYSV_COMPAT
5330 RUNLEVEL1_TARGET_WANTS += \
5331         systemd-update-utmp-runlevel.service
5332 RUNLEVEL2_TARGET_WANTS += \
5333         systemd-update-utmp-runlevel.service
5334 RUNLEVEL3_TARGET_WANTS += \
5335         systemd-update-utmp-runlevel.service
5336 RUNLEVEL4_TARGET_WANTS += \
5337         systemd-update-utmp-runlevel.service
5338 RUNLEVEL5_TARGET_WANTS += \
5339         systemd-update-utmp-runlevel.service
5340 endif
5341
5342 SYSINIT_TARGET_WANTS += \
5343         systemd-update-utmp.service \
5344         systemd-update-done.service \
5345         ldconfig.service
5346
5347 LOCAL_FS_TARGET_WANTS += \
5348         systemd-remount-fs.service \
5349         tmp.mount
5350
5351 MULTI_USER_TARGET_WANTS += \
5352         getty.target \
5353         systemd-ask-password-wall.path
5354
5355 SYSINIT_TARGET_WANTS += \
5356         dev-hugepages.mount \
5357         dev-mqueue.mount \
5358         sys-kernel-config.mount \
5359         sys-kernel-debug.mount \
5360         sys-fs-fuse-connections.mount \
5361         systemd-sysctl.service \
5362         systemd-ask-password-console.path
5363
5364 if HAVE_SYSV_COMPAT
5365 SYSTEM_UNIT_ALIASES += \
5366         poweroff.target runlevel0.target \
5367         rescue.target runlevel1.target \
5368         multi-user.target runlevel2.target \
5369         multi-user.target runlevel3.target \
5370         multi-user.target runlevel4.target \
5371         graphical.target runlevel5.target \
5372         reboot.target runlevel6.target
5373 endif
5374
5375 SYSTEM_UNIT_ALIASES += \
5376         graphical.target default.target \
5377         reboot.target ctrl-alt-del.target \
5378         getty@.service autovt@.service
5379
5380 USER_UNIT_ALIASES += \
5381         $(systemunitdir)/shutdown.target shutdown.target \
5382         $(systemunitdir)/sockets.target sockets.target \
5383         $(systemunitdir)/busnames.target busnames.target \
5384         $(systemunitdir)/timers.target timers.target \
5385         $(systemunitdir)/paths.target paths.target \
5386         $(systemunitdir)/bluetooth.target bluetooth.target \
5387         $(systemunitdir)/printer.target printer.target \
5388         $(systemunitdir)/sound.target sound.target \
5389         $(systemunitdir)/smartcard.target smartcard.target
5390
5391 GENERAL_ALIASES += \
5392         $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
5393         $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
5394         $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
5395         $(dbussystemservicedir)/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
5396
5397 if HAVE_SYSV_COMPAT
5398 INSTALL_DIRS += \
5399         $(systemunitdir)/runlevel1.target.wants \
5400         $(systemunitdir)/runlevel2.target.wants \
5401         $(systemunitdir)/runlevel3.target.wants \
5402         $(systemunitdir)/runlevel4.target.wants \
5403         $(systemunitdir)/runlevel5.target.wants
5404 endif
5405
5406 INSTALL_DIRS += \
5407         $(prefix)/lib/modules-load.d \
5408         $(sysconfdir)/modules-load.d \
5409         $(prefix)/lib/systemd/network \
5410         $(sysconfdir)/systemd/network \
5411         $(prefix)/lib/sysctl.d \
5412         $(sysconfdir)/sysctl.d \
5413         $(prefix)/lib/kernel/install.d \
5414         $(sysconfdir)/kernel/install.d \
5415         $(systemshutdowndir) \
5416         $(systemsleepdir) \
5417         $(systemgeneratordir) \
5418         $(usergeneratordir) \
5419         \
5420         $(userunitdir) \
5421         $(pkgsysconfdir)/system \
5422         $(pkgsysconfdir)/system/multi-user.target.wants \
5423         $(pkgsysconfdir)/system/getty.target.wants \
5424         $(pkgsysconfdir)/user \
5425         $(dbussessionservicedir) \
5426         $(sysconfdir)/xdg/systemd
5427
5428 install-exec-hook: $(INSTALL_EXEC_HOOKS)
5429
5430 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
5431
5432 install-data-hook: $(INSTALL_DATA_HOOKS)
5433
5434 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
5435
5436 clean-local: $(CLEAN_LOCAL_HOOKS)
5437         rm -rf $(abs_srcdir)/install-tree
5438         rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
5439               $(abs_srcdir)/hwdb/iab.txt
5440
5441 DISTCHECK_CONFIGURE_FLAGS = \
5442         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
5443         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
5444         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
5445         --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
5446         --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
5447         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
5448         --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
5449         --with-rootprefix=$$dc_install_base \
5450         --disable-split-usr \
5451         --enable-kdbus \
5452         --enable-compat-libs
5453
5454 if HAVE_SYSV_COMPAT
5455 DISTCHECK_CONFIGURE_FLAGS += \
5456         --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
5457         --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
5458 else
5459 DISTCHECK_CONFIGURE_FLAGS += \
5460         --with-sysvinit-path= \
5461         --with-sysvrcnd-path=
5462 endif
5463
5464 if HAVE_PYTHON
5465 DISTCHECK_CONFIGURE_FLAGS += \
5466         --with-python
5467 endif
5468
5469 if ENABLE_GTK_DOC
5470 DISTCHECK_CONFIGURE_FLAGS += \
5471         --enable-gtk-doc
5472 endif
5473
5474 #
5475 # Require python when making dist
5476 #
5477 .PHONY: dist-check-python
5478 dist-check-python:
5479 if !HAVE_PYTHON
5480         @echo "*** python and python-lxml module must be installed and enabled in order to make dist"
5481         @false
5482 endif
5483
5484 dist-check-compat-libs:
5485 if !ENABLE_COMPAT_LIBS
5486         @echo "*** compat-libs must be enabled in order to make dist"
5487         @false
5488 endif
5489
5490 dist: dist-check-python dist-check-compat-libs
5491
5492 # check "broken" platforms limited toolchains for link breakage before we release
5493 .PHONY: linkcheck
5494 linkcheck:
5495         $(MAKE) CFLAGS='-fno-lto' LDFLAGS='-Wl,-fuse-ld=gold -Wl,--as-needed -Wl,--no-gc-sections' distcheck
5496
5497 .PHONY: hwdb-update
5498 hwdb-update:
5499         ( cd $(top_srcdir)/hwdb && \
5500         wget -N http://www.linux-usb.org/usb.ids \
5501                 http://pci-ids.ucw.cz/v2.2/pci.ids \
5502                 http://standards.ieee.org/develop/regauth/oui/oui.txt \
5503                 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
5504         ./ids-update.pl )
5505
5506 .PHONY: kdbus-update
5507 kdbus-update:
5508         ( cd $(top_srcdir)/src/libsystemd/sd-bus/ && \
5509         wget -N https://d-bus.googlecode.com/git/kdbus.h )
5510
5511 .PHONY: git-tag
5512 git-tag:
5513         git tag -s "v$(VERSION)" -m "systemd $(VERSION)"
5514
5515 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
5516 .PHONY: upload
5517 upload: all check dist
5518         scp systemd-$(VERSION).tar.xz $(www_target)
5519
5520 .PHONY: doc-sync
5521 doc-sync: all destdir-sphinx
5522         gtkdoc-rebase --html-dir=docs/libudev/html --online
5523         rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
5524         gtkdoc-rebase --html-dir=docs/gudev/html --online
5525         rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
5526         rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
5527         rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
5528
5529 .PHONY: tango
5530 tango: upload
5531         cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
5532         scp man/*.html tango:public/systemd-man/
5533
5534 .PHONY: install-tree
5535 install-tree: all
5536         rm -rf $(abs_srcdir)/install-tree
5537         $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
5538         tree $(abs_srcdir)/install-tree
5539
5540 # Let's run all tests of the test suite, but under valgrind. Let's
5541 # exclude the one perl script we have in there
5542 .PHONY: valgrind-tests
5543 valgrind-tests: $(TESTS)
5544         $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
5545                 if file $$f | grep -q shell; then \
5546                 echo -e "$${x}Skipping non-binary $$f"; else \
5547                 echo -e "$${x}Running $$f"; \
5548                 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=5242880 --error-exitcode=55 $(builddir)/$$f ; fi; \
5549                 x="\n\n"; \
5550         done
5551
5552 exported-%: %
5553         $(AM_V_GEN)$(NM) -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
5554
5555 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
5556         $(AM_V_GEN)cat $^ > $@
5557
5558 .PHONY: check-api-docs
5559 check-api-docs: exported man
5560         $(AM_V_GEN)for symbol in `cat exported` ; do \
5561                 if test -f $(builddir)/man/$$symbol.html ; then \
5562                         echo "  Symbol $$symbol() is documented." ; \
5563                 else \
5564                         echo "‣ Symbol $$symbol() lacks documentation." ; \
5565                 fi ; \
5566         done
5567
5568 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
5569 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
5570
5571 undefined defined: $(ALL_OBJECTS)
5572         $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
5573                 $(NM) -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
5574         done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
5575
5576 CLEANFILES += \
5577         defined \
5578         undefined
5579
5580 .PHONY: check-api-unused
5581 check-api-unused: defined undefined exported
5582         ( cat exported undefined ) | sort -u  | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
5583
5584 .PHONY: check-includes
5585 check-includes: $(top_srcdir)/tools/check-includes.pl
5586         $(AM_V_GEN) find * -name '*.[hcS]' -type f -print | sort -u \
5587                 | xargs $(top_srcdir)/tools/check-includes.pl
5588
5589 EXTRA_DIST += \
5590         $(top_srcdir)/tools/check-includes.pl
5591
5592 # Stupid test that everything purported to be exported really is
5593 define generate-sym-test
5594         $(AM_V_at)$(MKDIR_P) $(dir $@)
5595         $(AM_V_at)printf '#include <stdio.h>\n' > $@
5596         $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
5597         $(AM_V_at)printf 'void* functions[] = {\n' >> $@
5598         $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
5599         $(AM_V_at)printf '};\nint main(void) {\n' >> $@
5600         $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
5601         $(AM_V_at)printf 'return 0; }\n' >> $@
5602 endef
5603
5604 test-libsystemd-sym.c: \
5605                 $(top_builddir)/src/libsystemd/libsystemd.sym \
5606                 src/systemd/sd-journal.h \
5607                 src/systemd/sd-daemon.h \
5608                 src/systemd/sd-login.h \
5609                 src/systemd/sd-bus.h \
5610                 src/systemd/sd-utf8.h \
5611                 src/systemd/sd-resolve.h
5612         $(generate-sym-test)
5613
5614 test-libudev-sym.c: \
5615                 src/libudev/libudev.sym \
5616                 src/udev/udev.h
5617         $(generate-sym-test)
5618
5619 test_libsystemd_sym_SOURCES = \
5620         test-libsystemd-sym.c
5621 test_libsystemd_sym_LDADD = \
5622         libsystemd.la
5623
5624 test_libudev_sym_SOURCES = \
5625         test-libudev-sym.c
5626 test_libudev_sym_CFLAGS = \
5627         $(AM_CFLAGS) \
5628         -Wno-deprecated-declarations
5629 test_libudev_sym_LDADD = \
5630         libudev.la
5631
5632 BUILT_SOURCES += \
5633         $(test_libsystemd_sym_SOURCES) \
5634         $(test_libudev_sym_SOURCES)
5635
5636 tests += \
5637         test-libsystemd-sym \
5638         test-libudev-sym
5639
5640 .PHONY: cppcheck
5641 cppcheck:
5642         cppcheck --enable=all -q $(top_srcdir)
5643
5644 # Used to extract compile flags for YCM.
5645 print-%:
5646         @echo $($*)
5647
5648 git-contrib:
5649         @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u