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