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