]> git.ipfire.org Git - thirdparty/systemd.git/blob - Makefile.am
bus: start maintaining a list of difference between kdbus/dbus1
[thirdparty/systemd.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-gvariant.c \
2001 src/libsystemd-bus/bus-gvariant.h \
2002 src/libsystemd-bus/bus-convenience.c \
2003 src/libsystemd-bus/kdbus.h \
2004 src/libsystemd-bus/sd-memfd.c \
2005 src/libsystemd-bus/bus-util.c \
2006 src/libsystemd-bus/bus-util.h \
2007 src/libsystemd-bus/sd-utf8.c \
2008 src/libsystemd-bus/sd-event.c \
2009 src/libsystemd-bus/event-util.h \
2010 src/libsystemd-bus/bus-protocol.h
2011
2012 libsystemd_bus_la_LIBADD = \
2013 libsystemd-id128-internal.la \
2014 libsystemd-daemon-internal.la \
2015 libsystemd-shared.la
2016
2017 libsystemd_bus_la_CFLAGS = \
2018 $(AM_CFLAGS) \
2019 -pthread
2020
2021 libsystemd_bus_la_LDFLAGS = \
2022 $(AM_LDFLAGS) \
2023 -version-info $(LIBSYSTEMD_BUS_CURRENT):$(LIBSYSTEMD_BUS_REVISION):$(LIBSYSTEMD_BUS_AGE) \
2024 -Wl,--version-script=$(top_srcdir)/src/libsystemd-bus/libsystemd-bus.sym
2025
2026 pkgconfiglib_DATA += \
2027 src/libsystemd-bus/libsystemd-bus.pc
2028
2029 EXTRA_DIST += \
2030 src/libsystemd-bus/libsystemd-bus.pc.in \
2031 src/libsystemd-bus/DIFFERENCES \
2032 src/libsystemd-bus/GVARIANT-SERIALIZATION
2033
2034 lib_LTLIBRARIES += \
2035 libsystemd-bus.la
2036
2037 libsystemd_bus_internal_la_SOURCES = \
2038 $(libsystemd_bus_la_SOURCES)
2039
2040 libsystemd_bus_internal_la_CFLAGS = \
2041 $(libsystemd_bus_la_CFLAGS)
2042
2043 noinst_LTLIBRARIES += \
2044 libsystemd-bus-internal.la
2045
2046 libsystemd_bus_dump_la_SOURCES = \
2047 src/libsystemd-bus/bus-dump.c \
2048 src/libsystemd-bus/bus-dump.h
2049
2050 libsystemd_bus_dump_la_CFLAGS = \
2051 $(AM_CFLAGS)
2052 $(CAP_CFLAGS)
2053
2054 noinst_LTLIBRARIES += \
2055 libsystemd-bus-dump.la
2056
2057 tests += \
2058 test-bus-marshal \
2059 test-bus-signature \
2060 test-bus-chat \
2061 test-bus-server \
2062 test-bus-match \
2063 test-bus-kernel \
2064 test-bus-kernel-bloom \
2065 test-bus-kernel-benchmark \
2066 test-bus-memfd \
2067 test-bus-zero-copy \
2068 test-bus-introspect \
2069 test-bus-objects \
2070 test-bus-error \
2071 test-bus-creds \
2072 test-bus-gvariant \
2073 test-event
2074
2075 bin_PROGRAMS += \
2076 busctl
2077
2078 test_bus_marshal_SOURCES = \
2079 src/libsystemd-bus/test-bus-marshal.c
2080
2081 test_bus_marshal_LDADD = \
2082 libsystemd-bus-internal.la \
2083 libsystemd-id128-internal.la \
2084 libsystemd-daemon-internal.la \
2085 libsystemd-shared.la \
2086 libsystemd-bus-dump.la \
2087 libsystemd-capability.la \
2088 $(GLIB_LIBS) \
2089 $(DBUS_LIBS) \
2090 $(CAP_LIBS)
2091
2092 test_bus_marshal_CFLAGS = \
2093 $(AM_CFLAGS) \
2094 $(GLIB_CFLAGS) \
2095 $(DBUS_CFLAGS) \
2096 $(CAP_CFLAGS)
2097
2098 test_bus_signature_SOURCES = \
2099 src/libsystemd-bus/test-bus-signature.c
2100
2101 test_bus_signature_LDADD = \
2102 libsystemd-shared.la \
2103 libsystemd-bus-internal.la
2104
2105 test_bus_chat_SOURCES = \
2106 src/libsystemd-bus/test-bus-chat.c
2107
2108 test_bus_chat_CFLAGS = \
2109 $(AM_CFLAGS) \
2110 -pthread
2111
2112 test_bus_chat_LDADD = \
2113 libsystemd-bus-internal.la \
2114 libsystemd-id128-internal.la \
2115 libsystemd-daemon-internal.la \
2116 libsystemd-shared.la
2117
2118 test_bus_server_SOURCES = \
2119 src/libsystemd-bus/test-bus-server.c
2120
2121 test_bus_server_CFLAGS = \
2122 $(AM_CFLAGS) \
2123 -pthread
2124
2125 test_bus_server_LDADD = \
2126 libsystemd-bus-internal.la \
2127 libsystemd-id128-internal.la \
2128 libsystemd-daemon-internal.la \
2129 libsystemd-shared.la
2130
2131 test_bus_objects_SOURCES = \
2132 src/libsystemd-bus/test-bus-objects.c
2133
2134 test_bus_objects_CFLAGS = \
2135 $(AM_CFLAGS) \
2136 $(CAP_CFLAGS) \
2137 -pthread
2138
2139 test_bus_objects_LDADD = \
2140 libsystemd-bus-internal.la \
2141 libsystemd-id128-internal.la \
2142 libsystemd-daemon-internal.la \
2143 libsystemd-shared.la \
2144 libsystemd-bus-dump.la \
2145 libsystemd-capability.la \
2146 $(CAP_LIBS)
2147
2148 test_bus_error_SOURCES = \
2149 src/libsystemd-bus/test-bus-error.c
2150
2151 test_bus_error_LDADD = \
2152 libsystemd-bus-internal.la \
2153 libsystemd-id128-internal.la \
2154 libsystemd-daemon-internal.la \
2155 libsystemd-shared.la
2156
2157 test_bus_gvariant_SOURCES = \
2158 src/libsystemd-bus/test-bus-gvariant.c
2159
2160 test_bus_gvariant_LDADD = \
2161 libsystemd-bus-internal.la \
2162 libsystemd-id128-internal.la \
2163 libsystemd-daemon-internal.la \
2164 libsystemd-shared.la \
2165 $(GLIB_LIBS)
2166
2167 test_bus_gvariant_CFLAGS = \
2168 $(AM_CFLAGS) \
2169 $(GLIB_CFLAGS)
2170
2171 test_bus_creds_SOURCES = \
2172 src/libsystemd-bus/test-bus-creds.c
2173
2174 test_bus_creds_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
2182 test_bus_match_SOURCES = \
2183 src/libsystemd-bus/test-bus-match.c
2184
2185 test_bus_match_LDADD = \
2186 libsystemd-bus-internal.la \
2187 libsystemd-id128-internal.la \
2188 libsystemd-daemon-internal.la \
2189 libsystemd-shared.la
2190
2191 test_bus_kernel_SOURCES = \
2192 src/libsystemd-bus/test-bus-kernel.c
2193
2194 test_bus_kernel_LDADD = \
2195 libsystemd-bus-internal.la \
2196 libsystemd-id128-internal.la \
2197 libsystemd-daemon-internal.la \
2198 libsystemd-shared.la \
2199 libsystemd-bus-dump.la \
2200 libsystemd-capability.la \
2201 $(CAP_LIBS)
2202
2203 test_bus_kernel_CFLAGS = \
2204 $(AM_CFLAGS) \
2205 $(CAP_CFLAGS)
2206
2207 test_bus_kernel_bloom_SOURCES = \
2208 src/libsystemd-bus/test-bus-kernel-bloom.c
2209
2210 test_bus_kernel_bloom_LDADD = \
2211 libsystemd-bus-internal.la \
2212 libsystemd-id128-internal.la \
2213 libsystemd-daemon-internal.la \
2214 libsystemd-shared.la
2215
2216 test_bus_kernel_benchmark_SOURCES = \
2217 src/libsystemd-bus/test-bus-kernel-benchmark.c
2218
2219 test_bus_kernel_benchmark_LDADD = \
2220 libsystemd-bus-internal.la \
2221 libsystemd-id128-internal.la \
2222 libsystemd-daemon-internal.la \
2223 libsystemd-shared.la
2224
2225 test_bus_memfd_SOURCES = \
2226 src/libsystemd-bus/test-bus-memfd.c
2227
2228 test_bus_memfd_LDADD = \
2229 libsystemd-bus-internal.la \
2230 libsystemd-shared.la
2231
2232 test_bus_zero_copy_SOURCES = \
2233 src/libsystemd-bus/test-bus-zero-copy.c
2234
2235 test_bus_zero_copy_LDADD = \
2236 libsystemd-bus-internal.la \
2237 libsystemd-id128-internal.la \
2238 libsystemd-daemon-internal.la \
2239 libsystemd-shared.la \
2240 libsystemd-bus-dump.la \
2241 libsystemd-capability.la \
2242 $(CAP_LIBS)
2243
2244 test_bus_zero_copy_CFLAGS = \
2245 $(AM_CFLAGS) \
2246 $(CAP_CFLAGS)
2247
2248 test_bus_introspect_SOURCES = \
2249 src/libsystemd-bus/test-bus-introspect.c
2250
2251 test_bus_introspect_LDADD = \
2252 libsystemd-shared.la \
2253 libsystemd-bus-internal.la
2254
2255 test_event_SOURCES = \
2256 src/libsystemd-bus/test-event.c
2257
2258 test_event_LDADD = \
2259 libsystemd-bus-internal.la \
2260 libsystemd-id128-internal.la \
2261 libsystemd-daemon-internal.la \
2262 libsystemd-shared.la
2263
2264 busctl_SOURCES = \
2265 src/libsystemd-bus/busctl.c
2266
2267 busctl_LDADD = \
2268 libsystemd-bus-internal.la \
2269 libsystemd-id128-internal.la \
2270 libsystemd-daemon-internal.la \
2271 libsystemd-shared.la \
2272 libsystemd-bus-dump.la \
2273 libsystemd-capability.la \
2274 $(CAP_LIBS)
2275
2276 busctl_CFLAGS = \
2277 $(AM_CFLAGS) \
2278 $(CAP_CFLAGS)
2279
2280 # ------------------------------------------------------------------------------
2281 if ENABLE_GTK_DOC
2282 SUBDIRS += \
2283 docs/libudev
2284
2285 noinst_DATA += \
2286 docs/html/libudev \
2287 docs/html/gudev
2288 endif
2289
2290 include_HEADERS += \
2291 src/libudev/libudev.h
2292
2293 lib_LTLIBRARIES += \
2294 libudev.la
2295
2296 libudev_la_SOURCES =\
2297 src/libudev/libudev.sym \
2298 src/libudev/libudev-private.h \
2299 src/libudev/libudev.c \
2300 src/libudev/libudev-list.c \
2301 src/libudev/libudev-util.c \
2302 src/libudev/libudev-device.c \
2303 src/libudev/libudev-enumerate.c \
2304 src/libudev/libudev-monitor.c \
2305 src/libudev/libudev-queue.c \
2306 src/libudev/libudev-hwdb-def.h \
2307 src/libudev/libudev-hwdb.c
2308
2309 libudev_la_CFLAGS = \
2310 $(AM_CFLAGS) \
2311 -fvisibility=hidden
2312
2313 libudev_la_LDFLAGS = \
2314 $(AM_LDFLAGS) \
2315 -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
2316 -Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
2317
2318 libudev_la_LIBADD = \
2319 libsystemd-daemon-internal.la \
2320 libsystemd-id128-internal.la \
2321 libsystemd-shared.la
2322
2323 pkgconfiglib_DATA += \
2324 src/libudev/libudev.pc
2325
2326 EXTRA_DIST += \
2327 src/libudev/libudev.pc.in
2328
2329 CLEANFILES += \
2330 src/libudev/libudev.pc \
2331 docs/html/libudev \
2332 docs/html/gudev
2333
2334 docs/html/libudev:
2335 $(AM_V_at)$(MKDIR_P) $(dir $@)
2336 $(AM_V_LN)$(LN_S) -f ../libudev/html $@
2337
2338 docs/html/gudev:
2339 $(AM_V_at)$(MKDIR_P) $(dir $@)
2340 $(AM_V_LN)$(LN_S) -f ../gudev/html $@
2341
2342 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2343 libudev-install-hook:
2344 libname=libudev.so && $(move-to-rootlibdir)
2345
2346 libudev-uninstall-hook:
2347 rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
2348
2349 INSTALL_EXEC_HOOKS += libudev-install-hook
2350 UNINSTALL_EXEC_HOOKS += libudev-uninstall-hook
2351
2352 # ------------------------------------------------------------------------------
2353 noinst_LTLIBRARIES += \
2354 libudev-internal.la
2355
2356 libudev_internal_la_SOURCES =\
2357 $(libudev_la_SOURCES) \
2358 src/libudev/libudev-device-private.c \
2359 src/libudev/libudev-queue-private.c
2360
2361 libudev_internal_la_CFLAGS = \
2362 $(AM_CFLAGS) \
2363 -fvisibility=default
2364
2365 # ------------------------------------------------------------------------------
2366 INSTALL_DIRS += \
2367 $(sysconfdir)/udev/rules.d \
2368 $(sysconfdir)/udev/hwdb.d
2369
2370 dist_network_DATA = \
2371 network/99-default.link
2372
2373 dist_udevrules_DATA += \
2374 rules/99-systemd.rules \
2375 rules/42-usb-hid-pm.rules \
2376 rules/50-udev-default.rules \
2377 rules/60-drm.rules \
2378 rules/60-keyboard.rules \
2379 rules/60-persistent-storage-tape.rules \
2380 rules/60-persistent-serial.rules \
2381 rules/60-persistent-input.rules \
2382 rules/60-persistent-alsa.rules \
2383 rules/60-persistent-storage.rules \
2384 rules/64-btrfs.rules \
2385 rules/75-net-description.rules \
2386 rules/75-tty-description.rules \
2387 rules/78-sound-card.rules \
2388 rules/80-net-setup-link.rules \
2389 rules/95-udev-late.rules
2390
2391 dist_udevhwdb_DATA = \
2392 hwdb/20-pci-vendor-model.hwdb \
2393 hwdb/20-pci-classes.hwdb \
2394 hwdb/20-usb-vendor-model.hwdb \
2395 hwdb/20-usb-classes.hwdb \
2396 hwdb/20-bluetooth-vendor-product.hwdb \
2397 hwdb/20-acpi-vendor.hwdb \
2398 hwdb/20-OUI.hwdb \
2399 hwdb/60-keyboard.hwdb
2400
2401 udevconfdir = $(sysconfdir)/udev
2402 dist_udevconf_DATA = \
2403 src/udev/udev.conf
2404
2405 sharepkgconfigdir = $(datadir)/pkgconfig
2406 sharepkgconfig_DATA = \
2407 src/udev/udev.pc
2408
2409 EXTRA_DIST += \
2410 rules/99-systemd.rules.in \
2411 src/udev/udev.pc.in
2412
2413 CLEANFILES += \
2414 rules/99-systemd.rules \
2415 src/udev/udev.pc
2416
2417 EXTRA_DIST += \
2418 units/systemd-udevd.service.in \
2419 units/systemd-udev-trigger.service.in \
2420 units/systemd-udev-settle.service.in
2421
2422 CLEANFILES += \
2423 units/systemd-udevd.service \
2424 units/systemd-udev-trigger.service \
2425 units/systemd-udev-settle.service
2426
2427 SOCKETS_TARGET_WANTS += \
2428 systemd-udevd-control.socket \
2429 systemd-udevd-kernel.socket
2430 SYSINIT_TARGET_WANTS += \
2431 systemd-udevd.service \
2432 systemd-udev-trigger.service
2433
2434 rootbin_PROGRAMS += \
2435 udevadm
2436
2437 rootlibexec_PROGRAMS += \
2438 systemd-udevd
2439
2440 noinst_LTLIBRARIES += \
2441 libudev-core.la
2442
2443 src/udev/keyboard-keys.txt:
2444 $(AM_V_at)$(MKDIR_P) $(dir $@)
2445 $(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/' > $@
2446
2447 src/udev/keyboard-keys-from-name.gperf: src/udev/keyboard-keys.txt
2448 $(AM_V_GEN)$(AWK) 'BEGIN{ print "struct key { const char* name; unsigned short id; };"; print "%null-strings"; print "%%";} { print tolower(substr($$1 ,5)) ", " $$1 }' < $< > $@
2449
2450 src/udev/keyboard-keys-from-name.h: src/udev/keyboard-keys-from-name.gperf
2451 $(AM_V_GPERF)$(GPERF) -L ANSI-C -t -N keyboard_lookup_key -H hash_key_name -p -C < $< > $@
2452
2453 src/udev/keyboard-keys-to-name.h: src/udev/keyboard-keys.txt
2454 $(AM_V_GEN)$(AWK) 'BEGIN{ print "const char* const key_names[KEY_CNT] = { "} { print "[" $$1 "] = \"" $$1 "\"," } END{print "};"}' < $< > $@
2455
2456 libudev_core_la_SOURCES = \
2457 src/udev/udev.h \
2458 src/udev/udev-event.c \
2459 src/udev/udev-watch.c \
2460 src/udev/udev-node.c \
2461 src/udev/udev-rules.c \
2462 src/udev/udev-ctrl.c \
2463 src/udev/udev-builtin.c \
2464 src/udev/udev-builtin-btrfs.c \
2465 src/udev/udev-builtin-hwdb.c \
2466 src/udev/udev-builtin-input_id.c \
2467 src/udev/udev-builtin-keyboard.c \
2468 src/udev/udev-builtin-net_id.c \
2469 src/udev/udev-builtin-net_setup_link.c \
2470 src/udev/udev-builtin-path_id.c \
2471 src/udev/udev-builtin-usb_id.c \
2472 src/udev/net/link-config.h \
2473 src/udev/net/link-config.c \
2474 src/udev/net/ethtool-util.h \
2475 src/udev/net/ethtool-util.c
2476
2477 nodist_libudev_core_la_SOURCES = \
2478 src/udev/keyboard-keys-from-name.h \
2479 src/udev/keyboard-keys-to-name.h \
2480 src/udev/net/link-config-gperf.c
2481
2482 BUILT_SOURCES += \
2483 $(nodist_libudev_core_la_SOURCES)
2484
2485 CLEANFILES += \
2486 src/udev/keyboard-keys-from-name.gperf \
2487 src/udev/keyboard-keys.txt \
2488 src/udev/net/link-config-gperf.c
2489
2490 EXTRA_DIST += \
2491 src/udev/net/link-config-gperf.gperf
2492
2493 libudev_core_la_CFLAGS = \
2494 $(AM_CFLAGS) \
2495 $(BLKID_CFLAGS) \
2496 $(KMOD_CFLAGS)
2497
2498 libudev_core_la_LIBADD = \
2499 libudev-internal.la \
2500 libsystemd-label.la \
2501 libsystemd-daemon-internal.la \
2502 libsystemd-rtnl.la \
2503 libsystemd-id128-internal.la \
2504 libsystemd-shared.la \
2505 $(BLKID_LIBS) \
2506 $(KMOD_LIBS)
2507
2508 libudev_core_la_CPPFLAGS = \
2509 $(AM_CPPFLAGS) \
2510 -DFIRMWARE_PATH="$(FIRMWARE_PATH)"
2511
2512 if ENABLE_FIRMWARE
2513 libudev_core_la_SOURCES += \
2514 src/udev/udev-builtin-firmware.c
2515
2516 dist_udevrules_DATA += \
2517 rules/50-firmware.rules
2518 endif
2519
2520 if HAVE_KMOD
2521 libudev_core_la_SOURCES += \
2522 src/udev/udev-builtin-kmod.c
2523
2524 dist_udevrules_DATA += \
2525 rules/80-drivers.rules
2526 endif
2527
2528 if HAVE_BLKID
2529 libudev_core_la_SOURCES += \
2530 src/udev/udev-builtin-blkid.c
2531 endif
2532
2533 if HAVE_ACL
2534 libudev_core_la_SOURCES += \
2535 src/udev/udev-builtin-uaccess.c \
2536 src/login/logind-acl.c \
2537 src/login/sd-login.c \
2538 src/systemd/sd-login.h \
2539 src/login/login-shared.c \
2540 src/login/login-shared.h
2541
2542 libudev_core_la_LIBADD += \
2543 libsystemd-acl.la
2544 endif
2545
2546 systemd_udevd_SOURCES = \
2547 src/udev/udevd.c
2548
2549 systemd_udevd_LDADD = \
2550 libudev-core.la
2551
2552 udevadm_SOURCES = \
2553 src/udev/udevadm.c \
2554 src/udev/udevadm-info.c \
2555 src/udev/udevadm-control.c \
2556 src/udev/udevadm-monitor.c \
2557 src/udev/udevadm-hwdb.c \
2558 src/udev/udevadm-settle.c \
2559 src/udev/udevadm-trigger.c \
2560 src/udev/udevadm-test.c \
2561 src/udev/udevadm-test-builtin.c
2562
2563 udevadm_LDADD = \
2564 libudev-core.la
2565
2566 # Update hwdb on installation. Do not bother if installing
2567 # in DESTDIR, since this is likely for packaging purposes.
2568 hwdb-update-hook:
2569 -test -n "$(DESTDIR)" || $(rootbindir)/udevadm hwdb --update
2570
2571 INSTALL_DATA_HOOKS += \
2572 hwdb-update-hook
2573
2574 hwdb-remove-hook:
2575 -test -n "$(DESTDIR)" || rm -f /etc/udev/hwdb.bin
2576
2577 # ------------------------------------------------------------------------------
2578 TESTS += \
2579 test/udev-test.pl \
2580 test/rules-test.sh
2581
2582 manual_tests += \
2583 test-libudev \
2584 test-udev
2585
2586 test_libudev_SOURCES = \
2587 src/test/test-libudev.c
2588
2589 test_libudev_LDADD = \
2590 libsystemd-label.la \
2591 libudev-internal.la \
2592 libsystemd-shared.la
2593
2594 test_udev_SOURCES = \
2595 src/test/test-udev.c
2596
2597 test_udev_LDADD = \
2598 libudev-core.la \
2599 $(BLKID_LIBS) \
2600 $(KMOD_LIBS) \
2601 $(SELINUX_LIBS)
2602
2603 if HAVE_ACL
2604 test_udev_LDADD += \
2605 libsystemd-acl.la
2606 endif
2607
2608 check_DATA += \
2609 test/sys
2610
2611 # packed sysfs test tree
2612 test/sys:
2613 $(AM_V_at)$(MKDIR_P) $(dir $@)
2614 $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
2615
2616 test-sys-distclean:
2617 -rm -rf test/sys
2618 DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
2619
2620 EXTRA_DIST += \
2621 test/sys.tar.xz \
2622 test/udev-test.pl \
2623 test/rules-test.sh \
2624 test/rule-syntax-check.py
2625
2626 # ------------------------------------------------------------------------------
2627 ata_id_SOURCES = \
2628 src/udev/ata_id/ata_id.c
2629
2630 ata_id_LDADD = \
2631 libudev-internal.la \
2632 libsystemd-shared.la
2633
2634 udevlibexec_PROGRAMS += \
2635 ata_id
2636
2637 # ------------------------------------------------------------------------------
2638 cdrom_id_SOURCES = \
2639 src/udev/cdrom_id/cdrom_id.c
2640
2641 cdrom_id_LDADD = \
2642 libudev-internal.la \
2643 libsystemd-shared.la
2644
2645 udevlibexec_PROGRAMS += \
2646 cdrom_id
2647
2648 dist_udevrules_DATA += \
2649 rules/60-cdrom_id.rules
2650
2651 # ------------------------------------------------------------------------------
2652 collect_SOURCES = \
2653 src/udev/collect/collect.c
2654
2655 collect_LDADD = \
2656 libudev-internal.la \
2657 libsystemd-shared.la
2658
2659 udevlibexec_PROGRAMS += \
2660 collect
2661
2662 # ------------------------------------------------------------------------------
2663 scsi_id_SOURCES =\
2664 src/udev/scsi_id/scsi_id.c \
2665 src/udev/scsi_id/scsi_serial.c \
2666 src/udev/scsi_id/scsi.h \
2667 src/udev/scsi_id/scsi_id.h
2668
2669 scsi_id_LDADD = \
2670 libudev-internal.la \
2671 libsystemd-shared.la
2672
2673 udevlibexec_PROGRAMS += \
2674 scsi_id
2675
2676 EXTRA_DIST += \
2677 src/udev/scsi_id/README
2678
2679 # ------------------------------------------------------------------------------
2680 v4l_id_SOURCES = \
2681 src/udev/v4l_id/v4l_id.c
2682
2683 v4l_id_LDADD = \
2684 libudev-internal.la
2685
2686 udevlibexec_PROGRAMS += \
2687 v4l_id
2688
2689 dist_udevrules_DATA += \
2690 rules/60-persistent-v4l.rules
2691
2692 # ------------------------------------------------------------------------------
2693 accelerometer_SOURCES = \
2694 src/udev/accelerometer/accelerometer.c
2695
2696 accelerometer_LDADD = \
2697 libudev-internal.la -lm \
2698 libsystemd-shared.la
2699
2700 udevlibexec_PROGRAMS += \
2701 accelerometer
2702
2703 dist_udevrules_DATA += \
2704 rules/61-accelerometer.rules
2705
2706 # ------------------------------------------------------------------------------
2707 if ENABLE_GUDEV
2708 if ENABLE_GTK_DOC
2709 SUBDIRS += \
2710 docs/gudev
2711 endif
2712
2713 libgudev_includedir = \
2714 $(includedir)/gudev-1.0/gudev
2715
2716 libgudev_include_HEADERS = \
2717 src/gudev/gudev.h \
2718 src/gudev/gudevenums.h \
2719 src/gudev/gudevenumtypes.h \
2720 src/gudev/gudevtypes.h \
2721 src/gudev/gudevclient.h \
2722 src/gudev/gudevdevice.h \
2723 src/gudev/gudevenumerator.h
2724
2725 lib_LTLIBRARIES += libgudev-1.0.la
2726
2727 pkgconfiglib_DATA += \
2728 src/gudev/gudev-1.0.pc
2729
2730 CLEANFILES += \
2731 src/gudev/gudev-1.0.pc
2732
2733 libgudev_1_0_la_SOURCES = \
2734 src/gudev/gudevenums.h \
2735 src/gudev/gudevenumtypes.h \
2736 src/gudev/gudevenumtypes.h\
2737 src/gudev/gudevtypes.h \
2738 src/gudev/gudevclient.h \
2739 src/gudev/gudevclient.c \
2740 src/gudev/gudevdevice.h \
2741 src/gudev/gudevdevice.c \
2742 src/gudev/gudevenumerator.h \
2743 src/gudev/gudevenumerator.c \
2744 src/gudev/gudevprivate.h
2745
2746 nodist_libgudev_1_0_la_SOURCES = \
2747 src/gudev/gudevmarshal.h \
2748 src/gudev/gudevmarshal.c \
2749 src/gudev/gudevenumtypes.h \
2750 src/gudev/gudevenumtypes.c
2751
2752 BUILT_SOURCES += \
2753 $(nodist_libgudev_1_0_la_SOURCES)
2754
2755 libgudev_1_0_la_CPPFLAGS = \
2756 $(AM_CPPFLAGS) \
2757 -I$(top_builddir)/src\
2758 -I$(top_srcdir)/src\
2759 -I$(top_builddir)/src/gudev \
2760 -I$(top_srcdir)/src/gudev \
2761 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT \
2762 -D_GUDEV_COMPILATION \
2763 -DG_LOG_DOMAIN=\"GUdev\"
2764
2765 libgudev_1_0_la_CFLAGS = \
2766 $(AM_CFLAGS) \
2767 -fvisibility=default \
2768 $(GLIB_CFLAGS)
2769
2770 libgudev_1_0_la_LIBADD = \
2771 libudev.la \
2772 $(GLIB_LIBS)
2773
2774 libgudev_1_0_la_LDFLAGS = \
2775 $(AM_LDFLAGS) \
2776 -version-info $(LIBGUDEV_CURRENT):$(LIBGUDEV_REVISION):$(LIBGUDEV_AGE) \
2777 -export-dynamic -no-undefined \
2778 -export-symbols-regex '^g_udev_.*'
2779
2780 src/gudev/gudevmarshal.h: src/gudev/gudevmarshal.list
2781 $(AM_V_at)$(MKDIR_P) $(dir $@)
2782 $(AM_V_GEN)glib-genmarshal $< --prefix=g_udev_marshal --header > $@
2783
2784 src/gudev/gudevmarshal.c: src/gudev/gudevmarshal.list
2785 $(AM_V_at)$(MKDIR_P) $(dir $@)
2786 $(AM_V_GEN)echo '#include "gudevmarshal.h"' > $@ && \
2787 glib-genmarshal $< --prefix=g_udev_marshal --body >> $@
2788
2789 src/gudev/gudevenumtypes.%: src/gudev/gudevenumtypes.%.template src/gudev/gudevenums.h
2790 $(AM_V_at)$(MKDIR_P) $(dir $@)
2791 $(AM_V_GEN)glib-mkenums --template $^ > $@
2792
2793 if HAVE_INTROSPECTION
2794 -include $(INTROSPECTION_MAKEFILE)
2795
2796 src/gudev/GUdev-1.0.gir: libgudev-1.0.la
2797
2798 src_gudev_GUdev_1_0_gir_INCLUDES = GObject-2.0
2799
2800 src_gudev_GUdev_1_0_gir_CFLAGS = \
2801 $(AM_CFLAGS) \
2802 $(INCLUDES) \
2803 -D_GUDEV_COMPILATION \
2804 -D_GUDEV_WORK_AROUND_DEV_T_BUG \
2805 -I$(top_srcdir)/src \
2806 -I$(top_builddir)/src \
2807 -I$(top_srcdir)/src/gudev \
2808 -I$(top_builddir)/src/gudev
2809
2810 src_gudev_GUdev_1_0_gir_LIBS = libgudev-1.0.la
2811
2812 src_gudev_GUdev_1_0_gir_SCANNERFLAGS = \
2813 --pkg-export=gudev-1.0 \
2814 --warn-all
2815
2816 src_gudev_GUdev_1_0_gir_FILES = \
2817 src/gudev/gudev.h \
2818 src/gudev/gudevtypes.h \
2819 src/gudev/gudevenums.h \
2820 src/gudev/gudevenumtypes.h \
2821 src/gudev/gudevclient.h \
2822 src/gudev/gudevdevice.h \
2823 src/gudev/gudevenumerator.h \
2824 src/gudev/gudevclient.c \
2825 src/gudev/gudevdevice.c \
2826 src/gudev/gudevenumerator.c
2827
2828 INTROSPECTION_GIRS = src/gudev/GUdev-1.0.gir
2829 INTROSPECTION_SCANNER_ARGS = --c-include=gudev/gudev.h
2830
2831 girdir = $(datadir)/gir-1.0
2832 gir_DATA = \
2833 src/gudev/GUdev-1.0.gir
2834
2835 typelibsdir = $(libdir)/girepository-1.0
2836 typelibs_DATA = \
2837 src/gudev/GUdev-1.0.typelib
2838
2839 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
2840 endif # HAVE_INTROSPECTION
2841
2842 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2843 libgudev-install-hook:
2844 libname=libgudev-1.0.so && $(move-to-rootlibdir)
2845
2846 libgudev-uninstall-hook:
2847 rm -f $(DESTDIR)$(rootlibdir)/libgudev-1.0.so*
2848
2849 INSTALL_EXEC_HOOKS += libgudev-install-hook
2850 UNINSTALL_EXEC_HOOKS += libgudev-uninstall-hook
2851 endif
2852
2853 EXTRA_DIST += \
2854 src/gudev/gudev-1.0.pc.in \
2855 src/gudev/gudevmarshal.list \
2856 src/gudev/gudevenumtypes.h.template \
2857 src/gudev/gudevenumtypes.c.template \
2858 src/gudev/gjs-example.js \
2859 src/gudev/seed-example-enum.js \
2860 src/gudev/seed-example.js
2861
2862 # ------------------------------------------------------------------------------
2863 mtd_probe_SOURCES = \
2864 src/udev/mtd_probe/mtd_probe.c \
2865 src/udev/mtd_probe/mtd_probe.h \
2866 src/udev/mtd_probe/probe_smartmedia.c
2867
2868 dist_udevrules_DATA += \
2869 rules/75-probe_mtd.rules
2870
2871 udevlibexec_PROGRAMS += \
2872 mtd_probe
2873
2874 # ------------------------------------------------------------------------------
2875 libsystemd_id128_la_SOURCES = \
2876 src/libsystemd-id128/libsystemd-id128.sym \
2877 src/libsystemd-id128/sd-id128.c
2878
2879 libsystemd_id128_la_CFLAGS = \
2880 $(AM_CFLAGS) \
2881 -fvisibility=hidden
2882
2883 libsystemd_id128_la_LDFLAGS = \
2884 $(AM_LDFLAGS) \
2885 -version-info $(LIBSYSTEMD_ID128_CURRENT):$(LIBSYSTEMD_ID128_REVISION):$(LIBSYSTEMD_ID128_AGE) \
2886 -Wl,--version-script=$(top_srcdir)/src/libsystemd-id128/libsystemd-id128.sym
2887
2888 libsystemd_id128_la_LIBADD = \
2889 libsystemd-daemon-internal.la \
2890 libsystemd-shared.la
2891
2892 libsystemd_id128_internal_la_SOURCES = \
2893 $(libsystemd_id128_la_SOURCES)
2894
2895 test_id128_SOURCES = \
2896 src/test/test-id128.c
2897
2898 test_id128_LDADD = \
2899 libsystemd-id128-internal.la \
2900 libsystemd-daemon-internal.la \
2901 libsystemd-shared.la
2902
2903 tests += \
2904 test-id128
2905
2906 pkginclude_HEADERS += \
2907 src/systemd/sd-id128.h
2908
2909 lib_LTLIBRARIES += \
2910 libsystemd-id128.la
2911
2912 noinst_LTLIBRARIES += \
2913 libsystemd-id128-internal.la
2914
2915 pkgconfiglib_DATA += \
2916 src/libsystemd-id128/libsystemd-id128.pc
2917
2918 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
2919 libsystemd-id128-install-hook:
2920 libname=libsystemd-id128.so && $(move-to-rootlibdir)
2921
2922 libsystemd-id128-uninstall-hook:
2923 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-id128.so*
2924
2925 INSTALL_EXEC_HOOKS += libsystemd-id128-install-hook
2926 UNINSTALL_EXEC_HOOKS += libsystemd-id128-uninstall-hook
2927
2928 EXTRA_DIST += \
2929 src/libsystemd-id128/libsystemd-id128.pc.in
2930
2931 # ------------------------------------------------------------------------------
2932
2933 rootlibexec_PROGRAMS += \
2934 systemd-activate
2935
2936 systemd_activate_SOURCES = \
2937 src/activate/activate.c
2938
2939 systemd_activate_LDADD = \
2940 libsystemd-label.la \
2941 libsystemd-daemon-internal.la \
2942 libsystemd-shared.la
2943
2944 # ------------------------------------------------------------------------------
2945 systemd_journald_SOURCES = \
2946 src/journal/journald.c \
2947 src/journal/journald-server.h
2948
2949 systemd_journald_LDADD = \
2950 libsystemd-journal-core.la
2951
2952 systemd_cat_SOURCES = \
2953 src/journal/cat.c
2954
2955 systemd_cat_LDADD = \
2956 libsystemd-journal-core.la
2957
2958 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
2959 journalctl_CFLAGS = \
2960 $(AM_CFLAGS)
2961
2962 journalctl_SOURCES = \
2963 src/journal/journalctl.c
2964
2965 journalctl_LDADD = \
2966 libsystemd-journal-internal.la \
2967 libsystemd-id128-internal.la \
2968 libsystemd-logs.la \
2969 libsystemd-shared.la
2970
2971 if HAVE_ACL
2972 journalctl_LDADD += \
2973 libsystemd-acl.la
2974 endif
2975
2976 if HAVE_QRENCODE
2977 journalctl_SOURCES += \
2978 src/journal/journal-qrcode.c \
2979 src/journal/journal-qrcode.h
2980
2981 journalctl_CFLAGS += \
2982 $(QRENCODE_CFLAGS)
2983
2984 journalctl_LDADD += \
2985 $(QRENCODE_LIBS)
2986 endif
2987
2988 test_journal_SOURCES = \
2989 src/journal/test-journal.c
2990
2991 test_journal_LDADD = \
2992 libsystemd-journal-core.la
2993
2994 test_journal_send_SOURCES = \
2995 src/journal/test-journal-send.c
2996
2997 test_journal_send_LDADD = \
2998 libsystemd-journal-core.la
2999
3000 test_journal_syslog_SOURCES = \
3001 src/journal/test-journal-syslog.c
3002
3003 test_journal_syslog_LDADD = \
3004 libsystemd-journal-core.la
3005
3006 test_journal_match_SOURCES = \
3007 src/journal/test-journal-match.c
3008
3009 test_journal_match_LDADD = \
3010 libsystemd-journal-core.la
3011
3012 test_journal_enum_SOURCES = \
3013 src/journal/test-journal-enum.c
3014
3015 test_journal_enum_LDADD = \
3016 libsystemd-journal-core.la
3017
3018 test_journal_stream_SOURCES = \
3019 src/journal/test-journal-stream.c
3020
3021 test_journal_stream_LDADD = \
3022 libsystemd-journal-core.la
3023
3024 test_journal_flush_SOURCES = \
3025 src/journal/test-journal-flush.c
3026
3027 test_journal_flush_LDADD = \
3028 libsystemd-journal-core.la
3029
3030 test_journal_init_SOURCES = \
3031 src/journal/test-journal-init.c
3032
3033 test_journal_init_LDADD = \
3034 libsystemd-journal-core.la
3035
3036 test_journal_verify_SOURCES = \
3037 src/journal/test-journal-verify.c
3038
3039 test_journal_verify_LDADD = \
3040 libsystemd-journal-core.la
3041
3042 test_journal_interleaving_SOURCES = \
3043 src/journal/test-journal-interleaving.c
3044
3045 test_journal_interleaving_LDADD = \
3046 libsystemd-journal-core.la
3047
3048 test_mmap_cache_SOURCES = \
3049 src/journal/test-mmap-cache.c
3050
3051 test_mmap_cache_LDADD = \
3052 libsystemd-journal-core.la
3053
3054 test_catalog_SOURCES = \
3055 src/journal/test-catalog.c
3056
3057 test_catalog_CFLAGS = \
3058 $(AM_CFLAGS) \
3059 -DCATALOG_DIR=\"$(abs_top_srcdir)/catalog\"
3060
3061 test_catalog_LDADD = \
3062 libsystemd-journal-core.la
3063
3064 libsystemd_journal_la_SOURCES = \
3065 src/journal/libsystemd-journal.sym \
3066 src/journal/sd-journal.c \
3067 src/systemd/sd-journal.h \
3068 src/systemd/_sd-common.h \
3069 src/journal/journal-file.c \
3070 src/journal/journal-file.h \
3071 src/journal/journal-vacuum.c \
3072 src/journal/journal-vacuum.h \
3073 src/journal/journal-verify.c \
3074 src/journal/journal-verify.h \
3075 src/journal/lookup3.c \
3076 src/journal/lookup3.h \
3077 src/journal/journal-send.c \
3078 src/journal/journal-def.h \
3079 src/journal/compress.h \
3080 src/journal/catalog.c \
3081 src/journal/catalog.h \
3082 src/journal/mmap-cache.c \
3083 src/journal/mmap-cache.h
3084
3085 libsystemd_journal_la_CFLAGS = \
3086 $(AM_CFLAGS) \
3087 -fvisibility=hidden
3088
3089 libsystemd_journal_la_LDFLAGS = \
3090 $(AM_LDFLAGS) \
3091 -version-info $(LIBSYSTEMD_JOURNAL_CURRENT):$(LIBSYSTEMD_JOURNAL_REVISION):$(LIBSYSTEMD_JOURNAL_AGE) \
3092 -Wl,--version-script=$(top_srcdir)/src/journal/libsystemd-journal.sym
3093
3094 libsystemd_journal_la_LIBADD = \
3095 libsystemd-label.la \
3096 libsystemd-daemon-internal.la \
3097 libsystemd-id128-internal.la \
3098 libsystemd-shared.la
3099
3100 libsystemd_journal_internal_la_SOURCES = \
3101 $(libsystemd_journal_la_SOURCES)
3102
3103 # using _CFLAGS = in the conditional below would suppress AM_CFLAGS
3104 libsystemd_journal_internal_la_CFLAGS = \
3105 $(AM_CFLAGS)
3106
3107 libsystemd_journal_internal_la_LIBADD =
3108
3109 if HAVE_XZ
3110 libsystemd_journal_la_SOURCES += \
3111 src/journal/compress.c
3112
3113 libsystemd_journal_la_CFLAGS += \
3114 $(XZ_CFLAGS)
3115
3116 libsystemd_journal_la_LIBADD += \
3117 $(XZ_LIBS)
3118
3119 libsystemd_journal_internal_la_CFLAGS += \
3120 $(XZ_CFLAGS)
3121
3122 libsystemd_journal_internal_la_LIBADD += \
3123 $(XZ_LIBS)
3124 endif
3125
3126 libsystemd_journal_core_la_SOURCES = \
3127 src/journal/journald-kmsg.c \
3128 src/journal/journald-kmsg.h \
3129 src/journal/journald-syslog.c \
3130 src/journal/journald-syslog.h \
3131 src/journal/journald-stream.c \
3132 src/journal/journald-stream.h \
3133 src/journal/journald-server.c \
3134 src/journal/journald-server.h \
3135 src/journal/journald-console.c \
3136 src/journal/journald-console.h \
3137 src/journal/journald-native.c \
3138 src/journal/journald-native.h \
3139 src/journal/journald-rate-limit.c \
3140 src/journal/journald-rate-limit.h \
3141 src/journal/journal-internal.h
3142
3143 nodist_libsystemd_journal_core_la_SOURCES = \
3144 src/journal/journald-gperf.c
3145
3146 libsystemd_journal_core_la_LIBADD = \
3147 libsystemd-journal-internal.la \
3148 libudev-internal.la \
3149 libsystemd-capability.la \
3150 libsystemd-label.la \
3151 libsystemd-daemon-internal.la \
3152 libsystemd-id128-internal.la \
3153 libsystemd-shared.la
3154
3155 if ENABLE_LOGIND
3156 libsystemd_journal_core_la_LIBADD += \
3157 libsystemd-login-internal.la
3158 endif
3159
3160 if HAVE_ACL
3161 libsystemd_journal_core_la_LIBADD += \
3162 libsystemd-acl.la
3163 endif
3164
3165 noinst_LTLIBRARIES += \
3166 libsystemd-journal-core.la
3167
3168 if HAVE_GCRYPT
3169 libsystemd_journal_la_SOURCES += \
3170 src/journal/journal-authenticate.c \
3171 src/journal/journal-authenticate.h \
3172 src/journal/fsprg.c \
3173 src/journal/fsprg.h
3174
3175 libsystemd_journal_la_CFLAGS += \
3176 $(GCRYPT_CFLAGS) \
3177 -Wno-pointer-arith
3178
3179 libsystemd_journal_la_LIBADD += \
3180 $(GCRYPT_LIBS)
3181
3182 libsystemd_journal_internal_la_CFLAGS += \
3183 $(GCRYPT_CFLAGS) \
3184 -Wno-pointer-arith
3185
3186 libsystemd_journal_internal_la_LIBADD += \
3187 $(GCRYPT_LIBS)
3188 endif
3189
3190 # move lib from $(libdir) to $(rootlibdir) and update devel link, if
3191 # needed. Also, grant read access to new journal files to members of
3192 # "adm" and "wheel".
3193 libsystemd-journal-install-hook:
3194 libname=libsystemd-journal.so && $(move-to-rootlibdir)
3195 -$(MKDIR_P) $(DESTDIR)/var/log/journal
3196 -chown 0:0 $(DESTDIR)/var/log/journal
3197 -chmod 755 $(DESTDIR)/var/log/journal
3198 -setfacl -nm g:adm:rx,d:g:adm:rx $(DESTDIR)/var/log/journal/
3199 -setfacl -nm g:wheel:rx,d:g:wheel:rx $(DESTDIR)/var/log/journal/
3200
3201 libsystemd-journal-uninstall-hook:
3202 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-journal.so*
3203
3204 INSTALL_EXEC_HOOKS += libsystemd-journal-install-hook
3205 UNINSTALL_EXEC_HOOKS += libsystemd-journal-uninstall-hook
3206
3207 # ------------------------------------------------------------------------------
3208
3209 # Update catalog on installation. Do not bother if installing
3210 # in DESTDIR, since this is likely for packaging purposes.
3211 catalog-update-hook:
3212 -test -n "$(DESTDIR)" || $(rootbindir)/journalctl --update-catalog
3213
3214 INSTALL_DATA_HOOKS += \
3215 catalog-update-hook
3216
3217 catalog-remove-hook:
3218 -test -n "$(DESTDIR)" || rm -f $(catalogstatedir)/database
3219
3220 UNINSTALL_DATA_HOOKS += \
3221 catalog-remove-hook
3222
3223 manual_tests += \
3224 test-journal-enum
3225
3226 tests += \
3227 test-journal \
3228 test-journal-send \
3229 test-journal-syslog \
3230 test-journal-match \
3231 test-journal-stream \
3232 test-journal-init \
3233 test-journal-verify \
3234 test-journal-interleaving \
3235 test-journal-flush \
3236 test-mmap-cache \
3237 test-catalog
3238
3239 pkginclude_HEADERS += \
3240 src/systemd/sd-journal.h \
3241 src/systemd/sd-messages.h \
3242 src/systemd/_sd-common.h
3243
3244 lib_LTLIBRARIES += \
3245 libsystemd-journal.la
3246
3247 noinst_LTLIBRARIES += \
3248 libsystemd-journal-internal.la
3249
3250 rootlibexec_PROGRAMS += \
3251 systemd-journald
3252
3253 rootbin_PROGRAMS += \
3254 journalctl
3255
3256 bin_PROGRAMS += \
3257 systemd-cat
3258
3259 dist_systemunit_DATA += \
3260 units/systemd-journald.socket
3261
3262 nodist_systemunit_DATA += \
3263 units/systemd-journald.service \
3264 units/systemd-journal-flush.service
3265
3266 dist_pkgsysconf_DATA += \
3267 src/journal/journald.conf
3268
3269 pkgconfiglib_DATA += \
3270 src/journal/libsystemd-journal.pc
3271
3272 dist_catalog_DATA = \
3273 catalog/systemd.fr.catalog \
3274 catalog/systemd.ru.catalog \
3275 catalog/systemd.it.catalog \
3276 catalog/systemd.catalog
3277
3278 SOCKETS_TARGET_WANTS += \
3279 systemd-journald.socket
3280 SYSINIT_TARGET_WANTS += \
3281 systemd-journald.service \
3282 systemd-journal-flush.service
3283
3284 EXTRA_DIST += \
3285 src/journal/libsystemd-journal.pc.in \
3286 units/systemd-journald.service.in \
3287 units/systemd-journal-flush.service.in \
3288 src/journal/journald-gperf.gperf
3289
3290 CLEANFILES += \
3291 src/journal/journald-gperf.c
3292
3293 # ------------------------------------------------------------------------------
3294 if HAVE_MICROHTTPD
3295 gatewayddocumentrootdir=$(pkgdatadir)/gatewayd
3296
3297 rootlibexec_PROGRAMS += \
3298 systemd-journal-gatewayd
3299
3300 systemd_journal_gatewayd_SOURCES = \
3301 src/journal/journal-gatewayd.c \
3302 src/journal/microhttpd-util.h \
3303 src/journal/microhttpd-util.c
3304
3305 systemd_journal_gatewayd_LDADD = \
3306 libsystemd-logs.la \
3307 libsystemd-journal-internal.la \
3308 libsystemd-id128-internal.la \
3309 libsystemd-daemon-internal.la \
3310 libsystemd-bus-internal.la \
3311 libsystemd-shared.la \
3312 $(MICROHTTPD_LIBS)
3313
3314 systemd_journal_gatewayd_CFLAGS = \
3315 $(AM_CFLAGS) \
3316 -DDOCUMENT_ROOT=\"$(gatewayddocumentrootdir)\" \
3317 $(MICROHTTPD_CFLAGS)
3318
3319 dist_systemunit_DATA += \
3320 units/systemd-journal-gatewayd.socket
3321
3322 nodist_systemunit_DATA += \
3323 units/systemd-journal-gatewayd.service
3324
3325 dist_gatewayddocumentroot_DATA = \
3326 src/journal/browse.html
3327
3328 endif
3329
3330 EXTRA_DIST += \
3331 units/systemd-journal-gatewayd.service.in
3332
3333 # ------------------------------------------------------------------------------
3334
3335 systemd_socket_proxyd_SOURCES = \
3336 src/socket-proxy/socket-proxyd.c
3337
3338 systemd_socket_proxyd_LDADD = \
3339 libsystemd-logs.la \
3340 libsystemd-bus-internal.la \
3341 libsystemd-journal-internal.la \
3342 libsystemd-id128-internal.la \
3343 libsystemd-daemon-internal.la \
3344 libsystemd-shared.la
3345
3346 # ------------------------------------------------------------------------------
3347 if ENABLE_COREDUMP
3348 systemd_coredump_SOURCES = \
3349 src/journal/coredump.c
3350
3351 systemd_coredump_LDADD = \
3352 libsystemd-journal-internal.la \
3353 libsystemd-label.la \
3354 libsystemd-shared.la
3355
3356 if ENABLE_LOGIND
3357 systemd_coredump_LDADD += \
3358 libsystemd-login-internal.la
3359 endif
3360
3361 rootlibexec_PROGRAMS += \
3362 systemd-coredump
3363
3364 systemd_coredumpctl_SOURCES = \
3365 src/journal/coredumpctl.c
3366
3367 systemd_coredumpctl_LDADD = \
3368 libsystemd-journal-internal.la \
3369 libsystemd-id128-internal.la \
3370 libsystemd-shared.la
3371
3372 bin_PROGRAMS += \
3373 systemd-coredumpctl
3374
3375 dist_bashcompletion_DATA += \
3376 shell-completion/bash/systemd-coredumpctl
3377
3378 dist_zshcompletion_DATA += \
3379 shell-completion/zsh/_systemd-coredumpctl
3380
3381 sysctl_DATA = \
3382 sysctl.d/50-coredump.conf
3383
3384 CLEANFILES += \
3385 sysctl.d/50-coredump.conf
3386 endif
3387
3388 EXTRA_DIST += \
3389 sysctl.d/50-coredump.conf.in
3390
3391 # ------------------------------------------------------------------------------
3392 if ENABLE_BINFMT
3393 systemd_binfmt_SOURCES = \
3394 src/binfmt/binfmt.c
3395
3396 systemd_binfmt_LDADD = \
3397 libsystemd-shared.la
3398
3399 rootlibexec_PROGRAMS += \
3400 systemd-binfmt
3401
3402 dist_systemunit_DATA += \
3403 units/proc-sys-fs-binfmt_misc.automount \
3404 units/proc-sys-fs-binfmt_misc.mount
3405
3406 nodist_systemunit_DATA += \
3407 units/systemd-binfmt.service
3408
3409 INSTALL_DIRS += \
3410 $(prefix)/lib/binfmt.d \
3411 $(sysconfdir)/binfmt.d
3412
3413 SYSINIT_TARGET_WANTS += \
3414 systemd-binfmt.service \
3415 proc-sys-fs-binfmt_misc.automount
3416
3417 endif
3418
3419 EXTRA_DIST += \
3420 units/systemd-binfmt.service.in
3421
3422 # ------------------------------------------------------------------------------
3423 if ENABLE_VCONSOLE
3424 systemd_vconsole_setup_SOURCES = \
3425 src/vconsole/vconsole-setup.c
3426
3427 systemd_vconsole_setup_LDADD = \
3428 libsystemd-shared.la
3429
3430 rootlibexec_PROGRAMS += \
3431 systemd-vconsole-setup
3432
3433 nodist_systemunit_DATA += \
3434 units/systemd-vconsole-setup.service
3435
3436 SYSINIT_TARGET_WANTS += \
3437 systemd-vconsole-setup.service
3438 endif
3439
3440 EXTRA_DIST += \
3441 units/systemd-vconsole-setup.service.in
3442
3443 # ------------------------------------------------------------------------------
3444 if ENABLE_READAHEAD
3445 systemd_readahead_SOURCES = \
3446 src/readahead/readahead.c \
3447 src/readahead/readahead-collect.c \
3448 src/readahead/readahead-replay.c \
3449 src/readahead/readahead-analyze.c \
3450 src/readahead/readahead-common.c \
3451 src/readahead/readahead-common.h
3452
3453 systemd_readahead_LDADD = \
3454 libsystemd-daemon-internal.la \
3455 libudev-internal.la \
3456 libsystemd-shared.la
3457
3458 dist_doc_DATA += \
3459 src/readahead/sd-readahead.c \
3460 src/systemd/sd-readahead.h
3461
3462 rootlibexec_PROGRAMS += \
3463 systemd-readahead
3464
3465 dist_systemunit_DATA += \
3466 units/systemd-readahead-drop.service \
3467 units/systemd-readahead-done.timer
3468
3469 nodist_systemunit_DATA += \
3470 units/systemd-readahead-collect.service \
3471 units/systemd-readahead-replay.service \
3472 units/systemd-readahead-done.service
3473
3474 endif
3475
3476 EXTRA_DIST += \
3477 units/systemd-readahead-collect.service.in \
3478 units/systemd-readahead-replay.service.in \
3479 units/systemd-readahead-done.service.in
3480
3481 # ------------------------------------------------------------------------------
3482 if ENABLE_BOOTCHART
3483 systemd_bootchart_SOURCES = \
3484 src/bootchart/bootchart.c \
3485 src/bootchart/bootchart.h \
3486 src/bootchart/store.c \
3487 src/bootchart/store.h \
3488 src/bootchart/svg.c \
3489 src/bootchart/svg.h
3490
3491 systemd_bootchart_LDADD = \
3492 libsystemd-journal-internal.la \
3493 libsystemd-shared.la
3494
3495 rootlibexec_PROGRAMS += \
3496 systemd-bootchart
3497
3498 dist_pkgsysconf_DATA += \
3499 src/bootchart/bootchart.conf
3500 endif
3501
3502 # ------------------------------------------------------------------------------
3503 if ENABLE_QUOTACHECK
3504 rootlibexec_PROGRAMS += \
3505 systemd-quotacheck
3506
3507 nodist_systemunit_DATA += \
3508 units/systemd-quotacheck.service
3509
3510 systemd_quotacheck_SOURCES = \
3511 src/quotacheck/quotacheck.c
3512
3513 systemd_quotacheck_LDADD = \
3514 libsystemd-shared.la
3515 endif
3516
3517 EXTRA_DIST += \
3518 units/systemd-quotacheck.service.in
3519
3520 nodist_systemunit_DATA += \
3521 units/quotaon.service
3522
3523 # ------------------------------------------------------------------------------
3524 if ENABLE_RANDOMSEED
3525 rootlibexec_PROGRAMS += \
3526 systemd-random-seed
3527
3528 nodist_systemunit_DATA += \
3529 units/systemd-random-seed.service
3530
3531 systemd_random_seed_SOURCES = \
3532 src/random-seed/random-seed.c
3533
3534 systemd_random_seed_LDADD = \
3535 libsystemd-label.la \
3536 libsystemd-shared.la
3537
3538 SYSINIT_TARGET_WANTS += \
3539 systemd-random-seed.service
3540
3541 endif
3542
3543 EXTRA_DIST += \
3544 units/systemd-random-seed.service.in
3545
3546 # ------------------------------------------------------------------------------
3547 if ENABLE_BACKLIGHT
3548 rootlibexec_PROGRAMS += \
3549 systemd-backlight
3550
3551 nodist_systemunit_DATA += \
3552 units/systemd-backlight@.service
3553
3554 systemd_backlight_SOURCES = \
3555 src/backlight/backlight.c
3556
3557 systemd_backlight_LDADD = \
3558 libsystemd-label.la \
3559 libudev-internal.la \
3560 libsystemd-shared.la
3561 endif
3562
3563 EXTRA_DIST += \
3564 units/systemd-backlight@.service.in
3565
3566 # ------------------------------------------------------------------------------
3567 if ENABLE_RFKILL
3568 rootlibexec_PROGRAMS += \
3569 systemd-rfkill
3570
3571 nodist_systemunit_DATA += \
3572 units/systemd-rfkill@.service
3573
3574 systemd_rfkill_SOURCES = \
3575 src/rfkill/rfkill.c
3576
3577 systemd_rfkill_LDADD = \
3578 libsystemd-label.la \
3579 libudev-internal.la \
3580 libsystemd-shared.la
3581 endif
3582
3583 EXTRA_DIST += \
3584 units/systemd-rfkill@.service.in
3585
3586 # ------------------------------------------------------------------------------
3587 if HAVE_LIBCRYPTSETUP
3588 rootlibexec_PROGRAMS += \
3589 systemd-cryptsetup
3590
3591 systemgenerator_PROGRAMS += \
3592 systemd-cryptsetup-generator
3593
3594 dist_systemunit_DATA += \
3595 units/cryptsetup.target
3596
3597 systemd_cryptsetup_SOURCES = \
3598 src/cryptsetup/cryptsetup.c
3599
3600 systemd_cryptsetup_CFLAGS = \
3601 $(AM_CFLAGS) \
3602 $(LIBCRYPTSETUP_CFLAGS)
3603
3604 systemd_cryptsetup_LDADD = \
3605 libsystemd-label.la \
3606 libudev-internal.la \
3607 libsystemd-shared.la \
3608 $(LIBCRYPTSETUP_LIBS)
3609
3610 systemd_cryptsetup_generator_SOURCES = \
3611 src/cryptsetup/cryptsetup-generator.c
3612
3613 systemd_cryptsetup_generator_LDADD = \
3614 libsystemd-label.la \
3615 libsystemd-shared.la
3616
3617 SYSINIT_TARGET_WANTS += \
3618 cryptsetup.target
3619
3620 endif
3621
3622 # ------------------------------------------------------------------------------
3623 if ENABLE_HOSTNAMED
3624 systemd_hostnamed_SOURCES = \
3625 src/hostname/hostnamed.c
3626
3627 systemd_hostnamed_LDADD = \
3628 libsystemd-label.la \
3629 libsystemd-bus-internal.la \
3630 libsystemd-id128-internal.la \
3631 libsystemd-daemon-internal.la \
3632 libsystemd-shared.la
3633
3634 rootlibexec_PROGRAMS += \
3635 systemd-hostnamed
3636
3637 nodist_systemunit_DATA += \
3638 units/systemd-hostnamed.service
3639
3640 dist_systemunit_DATA += \
3641 units/org.freedesktop.hostname1.busname
3642
3643 dist_dbuspolicy_DATA += \
3644 src/hostname/org.freedesktop.hostname1.conf
3645
3646 dist_dbussystemservice_DATA += \
3647 src/hostname/org.freedesktop.hostname1.service
3648
3649 polkitpolicy_files += \
3650 src/hostname/org.freedesktop.hostname1.policy
3651
3652 SYSTEM_UNIT_ALIASES += \
3653 systemd-hostnamed.service dbus-org.freedesktop.hostname1.service
3654
3655 BUSNAMES_TARGET_WANTS += \
3656 org.freedesktop.hostname1.busname
3657
3658 hostnamectl_SOURCES = \
3659 src/hostname/hostnamectl.c
3660
3661 hostnamectl_LDADD = \
3662 libsystemd-bus-internal.la \
3663 libsystemd-id128-internal.la \
3664 libsystemd-daemon-internal.la \
3665 libsystemd-shared.la
3666
3667 bin_PROGRAMS += \
3668 hostnamectl
3669
3670 dist_bashcompletion_DATA += \
3671 shell-completion/bash/hostnamectl
3672
3673 dist_zshcompletion_DATA += \
3674 shell-completion/zsh/_hostnamectl
3675
3676 endif
3677
3678 polkitpolicy_in_files += \
3679 src/hostname/org.freedesktop.hostname1.policy.in
3680
3681 EXTRA_DIST += \
3682 units/systemd-hostnamed.service.in
3683
3684 # ------------------------------------------------------------------------------
3685 if ENABLE_LOCALED
3686 systemd_localed_SOURCES = \
3687 src/locale/localed.c
3688
3689 systemd_localed_LDADD = \
3690 libsystemd-label.la \
3691 libsystemd-bus-internal.la \
3692 libsystemd-id128-internal.la \
3693 libsystemd-daemon-internal.la \
3694 libsystemd-shared.la
3695
3696 nodist_systemunit_DATA += \
3697 units/systemd-localed.service
3698
3699 dist_systemunit_DATA += \
3700 units/org.freedesktop.locale1.busname
3701
3702 rootlibexec_PROGRAMS += \
3703 systemd-localed
3704
3705 dist_dbuspolicy_DATA += \
3706 src/locale/org.freedesktop.locale1.conf
3707
3708 dist_dbussystemservice_DATA += \
3709 src/locale/org.freedesktop.locale1.service
3710
3711 polkitpolicy_files += \
3712 src/locale/org.freedesktop.locale1.policy
3713
3714 SYSTEM_UNIT_ALIASES += \
3715 systemd-localed.service dbus-org.freedesktop.locale1.service
3716
3717 BUSNAMES_TARGET_WANTS += \
3718 org.freedesktop.locale1.busname
3719
3720 dist_pkgdata_DATA += \
3721 src/locale/kbd-model-map
3722
3723 dist_noinst_SCRIPT = \
3724 src/locale/generate-kbd-model-map
3725
3726 update-kbd-model-map: src/locale/generate-kbd-model-map
3727 $PYTHON $< > src/locale/kbd-model-map
3728
3729 localectl_SOURCES = \
3730 src/locale/localectl.c
3731
3732 localectl_LDADD = \
3733 libsystemd-bus-internal.la \
3734 libsystemd-id128-internal.la \
3735 libsystemd-daemon-internal.la \
3736 libsystemd-shared.la
3737
3738 bin_PROGRAMS += \
3739 localectl
3740
3741 dist_bashcompletion_DATA += \
3742 shell-completion/bash/localectl
3743
3744 dist_zshcompletion_DATA += \
3745 shell-completion/zsh/_localectl
3746
3747 endif
3748
3749 polkitpolicy_in_files += \
3750 src/locale/org.freedesktop.locale1.policy.in
3751
3752 EXTRA_DIST += \
3753 units/systemd-localed.service.in
3754
3755 # ------------------------------------------------------------------------------
3756 if ENABLE_TIMEDATED
3757 systemd_timedated_SOURCES = \
3758 src/timedate/timedated.c
3759
3760 systemd_timedated_LDADD = \
3761 libsystemd-label.la \
3762 libsystemd-bus-internal.la \
3763 libsystemd-id128-internal.la \
3764 libsystemd-daemon-internal.la \
3765 libsystemd-shared.la
3766
3767 rootlibexec_PROGRAMS += \
3768 systemd-timedated
3769
3770 dist_dbussystemservice_DATA += \
3771 src/timedate/org.freedesktop.timedate1.service
3772
3773 dist_dbuspolicy_DATA += \
3774 src/timedate/org.freedesktop.timedate1.conf
3775
3776 nodist_systemunit_DATA += \
3777 units/systemd-timedated.service
3778
3779 dist_systemunit_DATA += \
3780 units/org.freedesktop.timedate1.busname
3781
3782 polkitpolicy_files += \
3783 src/timedate/org.freedesktop.timedate1.policy
3784
3785 INSTALL_DIRS += \
3786 $(prefix)/lib/systemd/ntp-units.d \
3787 $(sysconfdir)/systemd/ntp-units.d
3788
3789 SYSTEM_UNIT_ALIASES += \
3790 systemd-timedated.service dbus-org.freedesktop.timedate1.service
3791
3792 BUSNAMES_TARGET_WANTS += \
3793 org.freedesktop.timedate1.busname
3794
3795 timedatectl_SOURCES = \
3796 src/timedate/timedatectl.c
3797
3798 timedatectl_LDADD = \
3799 libsystemd-bus-internal.la \
3800 libsystemd-id128-internal.la \
3801 libsystemd-daemon-internal.la \
3802 libsystemd-shared.la
3803
3804 bin_PROGRAMS += \
3805 timedatectl
3806
3807 dist_bashcompletion_DATA += \
3808 shell-completion/bash/timedatectl
3809
3810 dist_zshcompletion_DATA += \
3811 shell-completion/zsh/_timedatectl
3812 endif
3813
3814 polkitpolicy_in_files += \
3815 src/timedate/org.freedesktop.timedate1.policy.in
3816
3817 EXTRA_DIST += \
3818 units/systemd-timedated.service.in
3819
3820 # ------------------------------------------------------------------------------
3821 if HAVE_MYHOSTNAME
3822 libnss_myhostname_la_SOURCES = \
3823 src/nss-myhostname/nss-myhostname.c \
3824 src/nss-myhostname/ifconf.h \
3825 src/nss-myhostname/netlink.c
3826
3827 libnss_myhostname_la_LDFLAGS = \
3828 $(AM_LDFLAGS) \
3829 -module \
3830 -export-dynamic \
3831 -avoid-version \
3832 -shared \
3833 -shrext .so.2
3834
3835 lib_LTLIBRARIES += \
3836 libnss_myhostname.la
3837 endif
3838
3839 # ------------------------------------------------------------------------------
3840 if ENABLE_MACHINED
3841 systemd_machined_SOURCES = \
3842 src/machine/machined.c \
3843 src/machine/machined.h
3844
3845 systemd_machined_LDADD = \
3846 libsystemd-machine-core.la
3847
3848 rootlibexec_PROGRAMS += \
3849 systemd-machined
3850
3851 libsystemd_machine_core_la_SOURCES = \
3852 src/machine/machined-dbus.c \
3853 src/machine/machine.c \
3854 src/machine/machine.h \
3855 src/machine/machine-dbus.c
3856
3857 libsystemd_machine_core_la_LIBADD = \
3858 libsystemd-label.la \
3859 libsystemd-daemon-internal.la \
3860 libsystemd-bus-internal.la \
3861 libsystemd-id128-internal.la \
3862 libudev-internal.la \
3863 libsystemd-shared.la
3864
3865 noinst_LTLIBRARIES += \
3866 libsystemd-machine-core.la
3867
3868 machinectl_SOURCES = \
3869 src/machine/machinectl.c
3870
3871 machinectl_LDADD = \
3872 libsystemd-bus-internal.la \
3873 libsystemd-id128-internal.la \
3874 libsystemd-daemon-internal.la \
3875 libsystemd-shared.la
3876
3877 rootbin_PROGRAMS += \
3878 machinectl
3879
3880 test_machine_tables_SOURCES = \
3881 src/machine/test-machine-tables.c
3882
3883 test_machine_tables_LDADD = \
3884 libsystemd-machine-core.la
3885
3886 tests += \
3887 test-machine-tables
3888
3889 nodist_systemunit_DATA += \
3890 units/systemd-machined.service
3891
3892 dist_systemunit_DATA += \
3893 units/machine.slice \
3894 units/org.freedesktop.machine1.busname
3895
3896 dist_dbussystemservice_DATA += \
3897 src/machine/org.freedesktop.machine1.service
3898
3899 dist_dbuspolicy_DATA += \
3900 src/machine/org.freedesktop.machine1.conf
3901
3902 dist_zshcompletion_DATA += \
3903 shell-completion/zsh/_machinectl
3904
3905 SYSTEM_UNIT_ALIASES += \
3906 systemd-machined.service dbus-org.freedesktop.machine1.service
3907
3908 BUSNAMES_TARGET_WANTS += \
3909 org.freedesktop.machine1.busname
3910
3911 EXTRA_DIST += \
3912 units/systemd-machined.service.in
3913
3914 endif
3915
3916 # ------------------------------------------------------------------------------
3917 if ENABLE_NETWORKD
3918 rootlibexec_PROGRAMS += \
3919 systemd-networkd
3920
3921 systemd_networkd_SOURCES = \
3922 src/network/networkd.h \
3923 src/network/networkd.c \
3924 src/network/networkd-link.c \
3925 src/network/networkd-bridge.c \
3926 src/network/networkd-network.c \
3927 src/network/networkd-address.c \
3928 src/network/networkd-route.c \
3929 src/network/networkd-manager.c
3930
3931 nodist_systemd_networkd_SOURCES = \
3932 src/network/networkd-gperf.c
3933
3934 systemd_networkd_LDADD = \
3935 libudev-internal.la \
3936 libsystemd-daemon-internal.la \
3937 libsystemd-bus-internal.la \
3938 libsystemd-id128-internal.la \
3939 libsystemd-rtnl.la \
3940 libsystemd-shared.la
3941
3942 nodist_systemunit_DATA += \
3943 units/systemd-networkd.service
3944
3945 MULTI_USER_TARGET_WANTS += \
3946 systemd-networkd.service
3947
3948 test_network_SOURCES = \
3949 src/network/test-network.c \
3950 src/network/networkd.h \
3951 src/network/networkd-link.c \
3952 src/network/networkd-bridge.c \
3953 src/network/networkd-network.c \
3954 src/network/networkd-address.c \
3955 src/network/networkd-route.c \
3956 src/network/networkd-manager.c \
3957 src/network/networkd-gperf.c
3958
3959 test_network_LDADD = \
3960 libudev-internal.la \
3961 libsystemd-bus-internal.la \
3962 libsystemd-id128-internal.la \
3963 libsystemd-rtnl.la \
3964 libsystemd-shared.la
3965
3966 tests += test-network
3967
3968 EXTRA_DIST += \
3969 src/network/networkd-gperf.gperf \
3970 units/systemd-networkd.service.in
3971
3972 CLEANFILES += \
3973 src/network/networkd-gperf.c
3974 endif
3975
3976 # ------------------------------------------------------------------------------
3977 if ENABLE_LOGIND
3978 systemd_logind_SOURCES = \
3979 src/login/logind.c \
3980 src/login/logind.h
3981
3982 nodist_systemd_logind_SOURCES = \
3983 src/login/logind-gperf.c
3984
3985 systemd_logind_LDADD = \
3986 libsystemd-logind-core.la
3987
3988 libsystemd_logind_core_la_SOURCES = \
3989 src/login/logind-core.c \
3990 src/login/logind-device.c \
3991 src/login/logind-device.h \
3992 src/login/logind-button.c \
3993 src/login/logind-button.h \
3994 src/login/logind-action.c \
3995 src/login/logind-action.h \
3996 src/login/logind-seat.c \
3997 src/login/logind-seat.h \
3998 src/login/logind-session.c \
3999 src/login/logind-session.h \
4000 src/login/logind-session-device.c \
4001 src/login/logind-session-device.h \
4002 src/login/logind-user.c \
4003 src/login/logind-user.h \
4004 src/login/logind-inhibit.c \
4005 src/login/logind-inhibit.h \
4006 src/login/logind-dbus.c \
4007 src/login/logind-session-dbus.c \
4008 src/login/logind-seat-dbus.c \
4009 src/login/logind-user-dbus.c \
4010 src/login/logind-acl.h \
4011 src/login/login-shared.c \
4012 src/login/login-shared.h
4013
4014 libsystemd_logind_core_la_LIBADD = \
4015 libsystemd-label.la \
4016 libsystemd-capability.la \
4017 libsystemd-daemon-internal.la \
4018 libsystemd-id128-internal.la \
4019 libsystemd-bus-internal.la \
4020 libudev-internal.la \
4021 libsystemd-shared.la
4022
4023 if HAVE_ACL
4024 libsystemd_logind_core_la_SOURCES += \
4025 src/login/logind-acl.c
4026
4027 libsystemd_logind_core_la_LIBADD += \
4028 libsystemd-acl.la
4029 endif
4030
4031 noinst_LTLIBRARIES += \
4032 libsystemd-logind-core.la
4033
4034 systemd_user_sessions_SOURCES = \
4035 src/login/user-sessions.c
4036
4037 systemd_user_sessions_LDADD = \
4038 libsystemd-shared.la
4039
4040 rootlibexec_PROGRAMS += \
4041 systemd-logind \
4042 systemd-user-sessions
4043
4044 loginctl_SOURCES = \
4045 src/login/loginctl.c \
4046 src/login/sysfs-show.c
4047
4048 loginctl_LDADD = \
4049 libsystemd-bus-internal.la \
4050 libudev-internal.la \
4051 libsystemd-shared.la \
4052 libsystemd-id128-internal.la \
4053 libsystemd-daemon-internal.la
4054
4055 rootbin_PROGRAMS += \
4056 loginctl
4057
4058 dist_bashcompletion_DATA += \
4059 shell-completion/bash/loginctl
4060
4061 dist_zshcompletion_DATA += \
4062 shell-completion/zsh/_loginctl \
4063 shell-completion/zsh/_systemd-inhibit
4064
4065 systemd_inhibit_SOURCES = \
4066 src/login/inhibit.c
4067
4068 systemd_inhibit_LDADD = \
4069 libsystemd-bus-internal.la \
4070 libsystemd-id128-internal.la \
4071 libsystemd-daemon-internal.la \
4072 libsystemd-shared.la
4073
4074 rootbin_PROGRAMS += \
4075 systemd-inhibit
4076
4077 test_login_SOURCES = \
4078 src/login/test-login.c
4079
4080 test_login_LDADD = \
4081 libsystemd-login-internal.la \
4082 libsystemd-shared.la
4083
4084 test_login_shared_SOURCES = \
4085 src/login/test-login-shared.c
4086
4087 test_login_shared_LDADD = \
4088 libsystemd-login-internal.la \
4089 libsystemd-shared.la
4090
4091 test_inhibit_SOURCES = \
4092 src/login/test-inhibit.c
4093
4094 test_inhibit_LDADD = \
4095 libsystemd-bus-internal.la \
4096 libsystemd-daemon-internal.la \
4097 libsystemd-id128-internal.la \
4098 libsystemd-shared.la
4099
4100 test_login_tables_SOURCES = \
4101 src/login/test-login-tables.c
4102
4103 test_login_tables_LDADD = \
4104 libsystemd-logind-core.la
4105
4106 manual_tests += \
4107 test-login \
4108 test-inhibit
4109
4110 tests += \
4111 test-login-tables \
4112 test-login-shared
4113
4114 libsystemd_login_la_SOURCES = \
4115 src/login/libsystemd-login.sym \
4116 src/login/sd-login.c \
4117 src/systemd/sd-login.h \
4118 src/login/login-shared.c \
4119 src/login/login-shared.h
4120
4121 libsystemd_login_la_CFLAGS = \
4122 $(AM_CFLAGS) \
4123 -fvisibility=hidden
4124
4125 libsystemd_login_la_LDFLAGS = \
4126 $(AM_LDFLAGS) \
4127 -version-info $(LIBSYSTEMD_LOGIN_CURRENT):$(LIBSYSTEMD_LOGIN_REVISION):$(LIBSYSTEMD_LOGIN_AGE) \
4128 -Wl,--version-script=$(top_srcdir)/src/login/libsystemd-login.sym
4129
4130 libsystemd_login_la_LIBADD = \
4131 libsystemd-daemon-internal.la \
4132 libsystemd-shared.la
4133
4134 libsystemd_login_internal_la_SOURCES = \
4135 $(libsystemd_login_la_SOURCES)
4136
4137 if HAVE_PAM
4138 pam_systemd_la_SOURCES = \
4139 src/login/pam-module.c
4140
4141 pam_systemd_la_CFLAGS = \
4142 $(AM_CFLAGS) \
4143 $(PAM_CFLAGS) \
4144 -fvisibility=hidden
4145
4146 pam_systemd_la_LDFLAGS = \
4147 $(AM_LDFLAGS) \
4148 -module \
4149 -export-dynamic \
4150 -avoid-version \
4151 -shared \
4152 -export-symbols-regex '^pam_sm_.*'
4153
4154 pam_systemd_la_LIBADD = \
4155 libsystemd-capability.la \
4156 libsystemd-bus-internal.la \
4157 libsystemd-id128-internal.la \
4158 libsystemd-daemon-internal.la \
4159 libsystemd-shared.la \
4160 $(PAM_LIBS)
4161
4162 pamlib_LTLIBRARIES = \
4163 pam_systemd.la
4164
4165 dist_pamconf_DATA = \
4166 src/login/systemd-user
4167 endif
4168
4169 # move lib from $(libdir) to $(rootlibdir) and update devel link, if needed
4170 libsystemd-login-install-hook:
4171 libname=libsystemd-login.so && $(move-to-rootlibdir)
4172
4173 libsystemd-login-uninstall-hook:
4174 rm -f $(DESTDIR)$(rootlibdir)/libsystemd-login.so*
4175
4176 INSTALL_EXEC_HOOKS += libsystemd-login-install-hook
4177 UNINSTALL_EXEC_HOOKS += libsystemd-login-uninstall-hook
4178
4179 nodist_systemunit_DATA += \
4180 units/systemd-logind.service \
4181 units/systemd-user-sessions.service
4182
4183 dist_systemunit_DATA += \
4184 units/user.slice \
4185 units/org.freedesktop.login1.busname
4186
4187 dist_dbussystemservice_DATA += \
4188 src/login/org.freedesktop.login1.service
4189
4190 dist_dbuspolicy_DATA += \
4191 src/login/org.freedesktop.login1.conf
4192
4193 dist_pkgsysconf_DATA += \
4194 src/login/logind.conf
4195
4196 pkginclude_HEADERS += \
4197 src/systemd/sd-login.h
4198
4199 lib_LTLIBRARIES += \
4200 libsystemd-login.la
4201
4202 noinst_LTLIBRARIES += \
4203 libsystemd-login-internal.la
4204
4205 pkgconfiglib_DATA += \
4206 src/login/libsystemd-login.pc
4207
4208 polkitpolicy_files += \
4209 src/login/org.freedesktop.login1.policy
4210
4211 INSTALL_DIRS += \
4212 $(systemdstatedir)
4213
4214 MULTI_USER_TARGET_WANTS += \
4215 systemd-logind.service \
4216 systemd-user-sessions.service
4217
4218 SYSTEM_UNIT_ALIASES += \
4219 systemd-logind.service dbus-org.freedesktop.login1.service
4220
4221 BUSNAMES_TARGET_WANTS += \
4222 org.freedesktop.login1.busname
4223
4224 if ENABLE_MULTI_SEAT_X
4225
4226 systemd_multi_seat_x_SOURCES = \
4227 src/login/multi-seat-x.c
4228
4229 systemd_multi_seat_x_LDADD = \
4230 libsystemd-label.la \
4231 libsystemd-shared.la
4232
4233 rootlibexec_PROGRAMS += \
4234 systemd-multi-seat-x
4235
4236 endif
4237
4238 dist_udevrules_DATA += \
4239 src/login/70-uaccess.rules \
4240 src/login/70-power-switch.rules
4241
4242 nodist_udevrules_DATA += \
4243 src/login/71-seat.rules \
4244 src/login/73-seat-late.rules
4245
4246 CLEANFILES += \
4247 src/login/logind-gperf.c \
4248 src/login/71-seat.rules \
4249 src/login/73-seat-late.rules
4250 endif
4251
4252 polkitpolicy_in_files += \
4253 src/login/org.freedesktop.login1.policy.in
4254
4255 EXTRA_DIST += \
4256 src/login/logind-gperf.gperf \
4257 src/login/libsystemd-login.pc.in \
4258 src/login/71-seat.rules.in \
4259 src/login/73-seat-late.rules.in \
4260 units/systemd-logind.service.in \
4261 units/systemd-user-sessions.service.in
4262
4263 # ------------------------------------------------------------------------------
4264 if HAVE_PYTHON_DEVEL
4265 pkgpyexec_LTLIBRARIES = \
4266 _journal.la \
4267 id128.la \
4268 _daemon.la \
4269 _reader.la \
4270 login.la
4271
4272 _journal_la_SOURCES = \
4273 src/python-systemd/_journal.c
4274
4275 _journal_la_CFLAGS = \
4276 $(AM_CFLAGS) \
4277 -fvisibility=default \
4278 $(PYTHON_DEVEL_CFLAGS)
4279
4280 _journal_la_LDFLAGS = \
4281 $(AM_LDFLAGS) \
4282 -shared \
4283 -module \
4284 -avoid-version
4285
4286 _journal_la_LIBADD = \
4287 $(PYTHON_DEVEL_LIBS) \
4288 libsystemd-journal.la
4289
4290 id128_la_SOURCES = \
4291 src/python-systemd/id128.c \
4292 src/python-systemd/id128-constants.h \
4293 src/python-systemd/pyutil.c \
4294 src/python-systemd/pyutil.h
4295
4296 id128_la_CFLAGS = \
4297 $(AM_CFLAGS) \
4298 -fvisibility=default \
4299 $(PYTHON_DEVEL_CFLAGS) \
4300 -I$(top_builddir)/src/python-systemd
4301
4302 id128_la_LDFLAGS = \
4303 $(AM_LDFLAGS) \
4304 -shared \
4305 -module \
4306 -avoid-version
4307
4308 id128_la_LIBADD = \
4309 $(PYTHON_DEVEL_LIBS) \
4310 libsystemd-id128.la
4311
4312 _daemon_la_SOURCES = \
4313 src/python-systemd/_daemon.c \
4314 src/python-systemd/pyutil.c \
4315 src/python-systemd/pyutil.h
4316
4317 _daemon_la_CFLAGS = \
4318 $(AM_CFLAGS) \
4319 -fvisibility=default \
4320 $(PYTHON_DEVEL_CFLAGS) \
4321 -I$(top_builddir)/src/python-systemd
4322
4323 _daemon_la_LDFLAGS = \
4324 $(AM_LDFLAGS) \
4325 -shared \
4326 -module \
4327 -avoid-version
4328
4329 _daemon_la_LIBADD = \
4330 $(PYTHON_DEVEL_LIBS) \
4331 libsystemd-daemon.la
4332
4333 _reader_la_SOURCES = \
4334 src/python-systemd/_reader.c \
4335 src/python-systemd/pyutil.c \
4336 src/python-systemd/pyutil.h
4337
4338 _reader_la_CFLAGS = \
4339 $(AM_CFLAGS) \
4340 -fvisibility=default \
4341 $(PYTHON_DEVEL_CFLAGS)
4342
4343 _reader_la_LDFLAGS = \
4344 $(AM_LDFLAGS) \
4345 -shared \
4346 -module \
4347 -avoid-version
4348
4349 _reader_la_LIBADD = \
4350 $(PYTHON_DEVEL_LIBS) \
4351 libsystemd-journal.la \
4352 libsystemd-id128.la \
4353 libsystemd-daemon-internal.la \
4354 libsystemd-shared.la
4355
4356 login_la_SOURCES = \
4357 src/python-systemd/login.c \
4358 src/python-systemd/pyutil.c \
4359 src/python-systemd/pyutil.h
4360
4361 login_la_CFLAGS = \
4362 $(AM_CFLAGS) \
4363 -fvisibility=default \
4364 $(PYTHON_DEVEL_CFLAGS)
4365
4366 login_la_LDFLAGS = \
4367 $(AM_LDFLAGS) \
4368 -shared \
4369 -module \
4370 -avoid-version
4371
4372 login_la_LIBADD = \
4373 $(PYTHON_DEVEL_LIBS) \
4374 libsystemd-journal.la \
4375 libsystemd-login.la \
4376 libsystemd-daemon-internal.la \
4377 libsystemd-shared.la
4378
4379 dist_pkgpyexec_PYTHON = \
4380 src/python-systemd/journal.py \
4381 src/python-systemd/daemon.py \
4382 src/python-systemd/__init__.py
4383
4384 src/python-systemd/id128-constants.h: src/systemd/sd-messages.h
4385 $(AM_V_at)$(MKDIR_P) $(dir $@)
4386 $(AM_V_GEN)$(SED) -n -r 's/,//g; s/#define (SD_MESSAGE_[A-Z0-9_]+)\s.*/add_id(m, "\1", \1) JOINER/p' <$< >$@
4387
4388 BUILT_SOURCES += \
4389 src/python-systemd/id128-constants.h
4390
4391 SPHINXOPTS = -D version=$(VERSION) -D release=$(VERSION)
4392 sphinx-%:
4393 $(AM_V_at)test -n "$(SPHINX_BUILD)" || { echo " *** sphinx-build is not available"; exit 1; }
4394 $(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/
4395 $(AM_V_at)echo Output has been generated in $(abs_top_builddir)/docs/html/python-systemd/
4396
4397 python-shell:
4398 $(AM_V_at)echo "Starting python with $(DESTDIR)$(pyexecdir)"
4399 $(AM_V_at)PYTHONPATH=$(DESTDIR)$(pyexecdir) LD_LIBRARY_PATH=$(DESTDIR)$(libdir) $(PYTHON)
4400
4401 destdir-sphinx: all
4402 dir="$$(mktemp -d /tmp/systemd-install.XXXXXX)" && \
4403 $(MAKE) DESTDIR="$$dir" install && \
4404 $(MAKE) DESTDIR="$$dir" sphinx-html && \
4405 rm -rf "$$dir"
4406
4407 endif
4408
4409 CLEAN_LOCAL_HOOKS += clean-sphinx
4410
4411 clean-sphinx:
4412 -rm -rf docs/html/python-systemd/
4413
4414 # Remove Python stuff, e.g. to force rebuilding for a different Python version.
4415 clean-python:
4416 -rm -rf src/python-systemd/.libs src/python-systemd/*.l[ao]
4417 -rm -f _daemon.la id128.la _journal.la login.la _reader.la
4418
4419 # ------------------------------------------------------------------------------
4420 substitutions = \
4421 '|rootlibexecdir=$(rootlibexecdir)|' \
4422 '|rootbindir=$(rootbindir)|' \
4423 '|bindir=$(bindir)|' \
4424 '|SYSTEMCTL=$(rootbindir)/systemctl|' \
4425 '|SYSTEMD_NOTIFY=$(rootbindir)/systemd-notify|' \
4426 '|pkgsysconfdir=$(pkgsysconfdir)|' \
4427 '|SYSTEM_CONFIG_UNIT_PATH=$(pkgsysconfdir)/system|' \
4428 '|USER_CONFIG_UNIT_PATH=$(pkgsysconfdir)/user|' \
4429 '|pkgdatadir=$(pkgdatadir)|' \
4430 '|systemunitdir=$(systemunitdir)|' \
4431 '|userunitdir=$(userunitdir)|' \
4432 '|systempresetdir=$(systempresetdir)|' \
4433 '|userpresetdir=$(userpresetdir)|' \
4434 '|udevhwdbdir=$(udevhwdbdir)|' \
4435 '|udevrulesdir=$(udevrulesdir)|' \
4436 '|catalogdir=$(catalogdir)|' \
4437 '|tmpfilesdir=$(tmpfilesdir)|' \
4438 '|sysctldir=$(sysctldir)|' \
4439 '|systemgeneratordir=$(systemgeneratordir)|' \
4440 '|usergeneratordir=$(usergeneratordir)|' \
4441 '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \
4442 '|PACKAGE_NAME=$(PACKAGE_NAME)|' \
4443 '|PACKAGE_URL=$(PACKAGE_URL)|' \
4444 '|RANDOM_SEED_DIR=$(localstatedir)/lib/systemd/|' \
4445 '|RANDOM_SEED=$(localstatedir)/lib/systemd/random-seed|' \
4446 '|prefix=$(prefix)|' \
4447 '|exec_prefix=$(exec_prefix)|' \
4448 '|libdir=$(libdir)|' \
4449 '|includedir=$(includedir)|' \
4450 '|VERSION=$(VERSION)|' \
4451 '|rootprefix=$(rootprefix)|' \
4452 '|udevlibexecdir=$(udevlibexecdir)|' \
4453 '|SUSHELL=$(SUSHELL)|' \
4454 '|DEBUGTTY=$(DEBUGTTY)|' \
4455 '|KILL=$(KILL)|' \
4456 '|KMOD=$(KMOD)|' \
4457 '|MKDIR_P=$(MKDIR_P)|' \
4458 '|QUOTAON=$(QUOTAON)|' \
4459 '|QUOTACHECK=$(QUOTACHECK)|' \
4460 '|SYSTEM_SYSVINIT_PATH=$(sysvinitdir)|' \
4461 '|VARLOGDIR=$(varlogdir)|' \
4462 '|RC_LOCAL_SCRIPT_PATH_START=$(RC_LOCAL_SCRIPT_PATH_START)|' \
4463 '|RC_LOCAL_SCRIPT_PATH_STOP=$(RC_LOCAL_SCRIPT_PATH_STOP)|' \
4464 '|PYTHON=$(PYTHON)|' \
4465 '|PYTHON_BINARY=$(PYTHON_BINARY)|'
4466
4467 SED_PROCESS = \
4468 $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
4469 $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \
4470 < $< > $@
4471
4472 units/%: units/%.in
4473 $(SED_PROCESS)
4474
4475 man/%: man/%.in
4476 $(SED_PROCESS)
4477
4478 sysctl.d/%: sysctl.d/%.in
4479 $(SED_PROCESS)
4480
4481 %.pc: %.pc.in
4482 $(SED_PROCESS)
4483
4484 src/core/macros.%: src/core/macros.%.in
4485 $(SED_PROCESS)
4486
4487 src/%.policy.in: src/%.policy.in.in
4488 $(SED_PROCESS)
4489
4490 %.rules: %.rules.in
4491 $(SED_PROCESS)
4492
4493 %.sh: %.sh.in
4494 $(SED_PROCESS)
4495 $(AM_V_GEN)chmod +x $@
4496
4497 src/%.c: src/%.gperf
4498 $(AM_V_at)$(MKDIR_P) $(dir $@)
4499 $(AM_V_GPERF)$(GPERF) < $< > $@
4500
4501 src/%: src/%.m4
4502 $(AM_V_at)$(MKDIR_P) $(dir $@)
4503 $(AM_V_M4)$(M4) -P $(M4_DEFINES) < $< > $@
4504
4505 units/%: units/%.m4
4506 $(AM_V_M4)$(MKDIR_P) $(dir $@)
4507 $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_SYSTEM=1 < $< > $@
4508
4509 units/user/%: units/%.m4
4510 $(AM_V_M4)$(MKDIR_P) $(dir $@)
4511 $(AM_V_M4)$(M4) -P $(M4_DEFINES) -DFOR_USER=1 < $< > $@
4512
4513 if ENABLE_POLKIT
4514 nodist_polkitpolicy_DATA = \
4515 $(polkitpolicy_files) \
4516 $(polkitpolicy_in_in_files:.policy.in.in=.policy)
4517 endif
4518
4519 EXTRA_DIST += \
4520 $(polkitpolicy_in_files) \
4521 $(polkitpolicy_in_in_files)
4522
4523 CLEANFILES += \
4524 $(nodist_systemunit_DATA) \
4525 $(nodist_userunit_DATA) \
4526 $(pkgconfigdata_DATA) \
4527 $(pkgconfiglib_DATA) \
4528 $(nodist_polkitpolicy_DATA)
4529
4530 # ------------------------------------------------------------------------------
4531 if ENABLE_MANPAGES
4532 man/custom-entities.ent:
4533 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
4534 $(AM_V_GEN)(echo '<?xml version="1.0" encoding="utf-8" ?>' && \
4535 echo '$(subst '|,<!ENTITY ,$(subst =, ",$(subst |',">,$(substitutions))))') \
4536 > $@ # '
4537
4538 DISTCLEANFILES += \
4539 man/custom-entities.ent
4540
4541 XSLTPROC_FLAGS = \
4542 --nonet \
4543 --stringparam man.output.quietly 1 \
4544 --stringparam funcsynopsis.style ansi \
4545 --stringparam man.authors.section.enabled 0 \
4546 --stringparam man.copyright.section.enabled 0 \
4547 --stringparam systemd.version $(VERSION) \
4548 --path '$(builddir)/man:$(srcdir)/man'
4549
4550 XSLTPROC_PROCESS_MAN = \
4551 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-man.xsl $<
4552
4553 XSLTPROC_PROCESS_HTML = \
4554 $(AM_V_XSLT)$(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) $(srcdir)/man/custom-html.xsl $<
4555
4556 man/%.1: man/%.xml man/custom-man.xsl man/custom-entities.ent
4557 $(XSLTPROC_PROCESS_MAN)
4558
4559 man/%.3: man/%.xml man/custom-man.xsl man/custom-entities.ent
4560 $(XSLTPROC_PROCESS_MAN)
4561
4562 man/%.5: man/%.xml man/custom-man.xsl man/custom-entities.ent
4563 $(XSLTPROC_PROCESS_MAN)
4564
4565 man/%.7: man/%.xml man/custom-man.xsl man/custom-entities.ent
4566 $(XSLTPROC_PROCESS_MAN)
4567
4568 man/%.8: man/%.xml man/custom-man.xsl man/custom-entities.ent
4569 $(XSLTPROC_PROCESS_MAN)
4570
4571 man/%.html: man/%.xml man/custom-html.xsl man/custom-entities.ent
4572 $(XSLTPROC_PROCESS_HTML)
4573
4574 define html-alias
4575 $(AM_V_LN)$(LN_S) -f $(notdir $<) $@
4576 endef
4577
4578 endif
4579
4580 EXTRA_DIST += \
4581 man/custom-html.xsl \
4582 man/custom-man.xsl
4583
4584 # ------------------------------------------------------------------------------
4585 if HAVE_SYSV_COMPAT
4586 sysvinit_DATA = \
4587 docs/sysvinit/README
4588
4589 varlog_DATA = \
4590 docs/var-log/README
4591
4592 docs/sysvinit/README: docs/sysvinit/README.in
4593 $(SED_PROCESS)
4594
4595 docs/var-log/README: docs/var-log/README.in
4596 $(SED_PROCESS)
4597
4598 CLEANFILES += \
4599 docs/sysvinit/README \
4600 docs/var-log/README
4601 endif
4602
4603 EXTRA_DIST += \
4604 docs/sysvinit/README.in \
4605 docs/var-log/README.in
4606
4607 SOCKETS_TARGET_WANTS += \
4608 systemd-initctl.socket \
4609 systemd-shutdownd.socket
4610
4611 if HAVE_SYSV_COMPAT
4612 RUNLEVEL1_TARGET_WANTS += \
4613 systemd-update-utmp-runlevel.service
4614 RUNLEVEL2_TARGET_WANTS += \
4615 systemd-update-utmp-runlevel.service
4616 RUNLEVEL3_TARGET_WANTS += \
4617 systemd-update-utmp-runlevel.service
4618 RUNLEVEL4_TARGET_WANTS += \
4619 systemd-update-utmp-runlevel.service
4620 RUNLEVEL5_TARGET_WANTS += \
4621 systemd-update-utmp-runlevel.service
4622 endif
4623 SYSINIT_TARGET_WANTS += \
4624 systemd-update-utmp.service
4625 LOCAL_FS_TARGET_WANTS += \
4626 systemd-remount-fs.service \
4627 tmp.mount
4628 MULTI_USER_TARGET_WANTS += \
4629 getty.target \
4630 systemd-ask-password-wall.path
4631 SYSINIT_TARGET_WANTS += \
4632 dev-hugepages.mount \
4633 dev-mqueue.mount \
4634 sys-kernel-config.mount \
4635 sys-kernel-debug.mount \
4636 sys-fs-fuse-connections.mount \
4637 systemd-sysctl.service \
4638 systemd-ask-password-console.path
4639
4640 if HAVE_SYSV_COMPAT
4641 SYSTEM_UNIT_ALIASES += \
4642 poweroff.target runlevel0.target \
4643 rescue.target runlevel1.target \
4644 multi-user.target runlevel2.target \
4645 multi-user.target runlevel3.target \
4646 multi-user.target runlevel4.target \
4647 graphical.target runlevel5.target \
4648 reboot.target runlevel6.target
4649 endif
4650
4651 SYSTEM_UNIT_ALIASES += \
4652 graphical.target default.target \
4653 reboot.target ctrl-alt-del.target \
4654 getty@.service autovt@.service
4655
4656 USER_UNIT_ALIASES += \
4657 $(systemunitdir)/shutdown.target shutdown.target \
4658 $(systemunitdir)/sockets.target sockets.target \
4659 $(systemunitdir)/busnames.target busnames.target \
4660 $(systemunitdir)/timers.target timers.target \
4661 $(systemunitdir)/paths.target paths.target \
4662 $(systemunitdir)/bluetooth.target bluetooth.target \
4663 $(systemunitdir)/printer.target printer.target \
4664 $(systemunitdir)/sound.target sound.target \
4665 $(systemunitdir)/smartcard.target smartcard.target
4666
4667 GENERAL_ALIASES += \
4668 $(systemunitdir)/remote-fs.target $(pkgsysconfdir)/system/multi-user.target.wants/remote-fs.target \
4669 $(systemunitdir)/getty@.service $(pkgsysconfdir)/system/getty.target.wants/getty@tty1.service \
4670 $(pkgsysconfdir)/user $(sysconfdir)/xdg/systemd/user \
4671 ../system-services/org.freedesktop.systemd1.service $(dbussessionservicedir)/org.freedesktop.systemd1.service
4672
4673 if HAVE_SYSV_COMPAT
4674 INSTALL_DIRS += \
4675 $(systemunitdir)/runlevel1.target.wants \
4676 $(systemunitdir)/runlevel2.target.wants \
4677 $(systemunitdir)/runlevel3.target.wants \
4678 $(systemunitdir)/runlevel4.target.wants \
4679 $(systemunitdir)/runlevel5.target.wants
4680 endif
4681
4682 INSTALL_DIRS += \
4683 $(prefix)/lib/modules-load.d \
4684 $(sysconfdir)/modules-load.d \
4685 $(prefix)/lib/systemd/network \
4686 $(sysconfdir)/systemd/network \
4687 $(prefix)/lib/sysctl.d \
4688 $(sysconfdir)/sysctl.d \
4689 $(prefix)/lib/kernel/install.d \
4690 $(sysconfdir)/kernel/install.d \
4691 $(systemshutdowndir) \
4692 $(systemsleepdir) \
4693 $(systemgeneratordir) \
4694 $(usergeneratordir) \
4695 \
4696 $(userunitdir) \
4697 $(pkgsysconfdir)/system \
4698 $(pkgsysconfdir)/system/multi-user.target.wants \
4699 $(pkgsysconfdir)/system/getty.target.wants \
4700 $(pkgsysconfdir)/user \
4701 $(dbussessionservicedir) \
4702 $(sysconfdir)/xdg/systemd
4703
4704 install-exec-hook: $(INSTALL_EXEC_HOOKS)
4705
4706 uninstall-hook: $(UNINSTALL_DATA_HOOKS) $(UNINSTALL_EXEC_HOOKS)
4707
4708 install-data-hook: $(INSTALL_DATA_HOOKS)
4709
4710 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
4711
4712 clean-local: $(CLEAN_LOCAL_HOOKS)
4713 rm -rf $(abs_srcdir)/install-tree
4714 rm -f $(abs_srcdir)/hwdb/usb.ids $(abs_srcdir)/hwdb/pci.ids $(abs_srcdir)/hwdb/oui.txt \
4715 $(abs_srcdir)/hwdb/iab.txt
4716
4717 DISTCHECK_CONFIGURE_FLAGS = \
4718 --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
4719 --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
4720 --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
4721 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
4722 --with-zshcompletiondir=$$dc_install_base/$(zshcompletiondir) \
4723 --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
4724 --with-pamconfdir=$$dc_install_base/$(pamconfdir) \
4725 --with-rootprefix=$$dc_install_base \
4726 --disable-split-usr \
4727 --enable-kdbus
4728
4729 if HAVE_SYSV_COMPAT
4730 DISTCHECK_CONFIGURE_FLAGS += \
4731 --with-sysvinit-path=$$dc_install_base/$(sysvinitdir) \
4732 --with-sysvrcnd-path=$$dc_install_base/$(sysvrcnddir)
4733 else
4734 DISTCHECK_CONFIGURE_FLAGS += \
4735 --with-sysvinit-path= \
4736 --with-sysvrcnd-path=
4737 endif
4738
4739 if ENABLE_GTK_DOC
4740 DISTCHECK_CONFIGURE_FLAGS += \
4741 --enable-gtk-doc
4742 endif
4743
4744 hwdb-update:
4745 ( cd $(top_srcdir)/hwdb && \
4746 wget -N http://www.linux-usb.org/usb.ids \
4747 http://pci-ids.ucw.cz/v2.2/pci.ids \
4748 http://standards.ieee.org/develop/regauth/oui/oui.txt \
4749 http://standards.ieee.org/develop/regauth/iab/iab.txt && \
4750 ./ids-update.pl )
4751
4752 kdbus-update:
4753 ( cd $(top_srcdir)/src/libsystemd-bus/ && \
4754 wget -N https://d-bus.googlecode.com/git/kdbus.h )
4755
4756 upload: all distcheck
4757 cp -v systemd-$(VERSION).tar.xz /home/lennart/git.fedora/systemd/
4758 scp systemd-$(VERSION).tar.xz fdo:/srv/www.freedesktop.org/www/software/systemd/
4759 scp man/*.html tango:public/systemd-man/
4760
4761 www_target = www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd
4762 doc-sync: all destdir-sphinx
4763 gtkdoc-rebase --html-dir=docs/libudev/html --online
4764 rsync -rlv --delete docs/libudev/html/ --omit-dir-times $(www_target)/libudev/
4765 gtkdoc-rebase --html-dir=docs/gudev/html --online
4766 rsync -rlv --delete docs/gudev/html/ --omit-dir-times $(www_target)/gudev/
4767 rsync -rlv --delete-excluded --include="*.html" --exclude="*" --omit-dir-times man/ $(www_target)/man/
4768 rsync -rlv --delete --omit-dir-times docs/html/python-systemd/ $(www_target)/python-systemd/
4769
4770 git-tag:
4771 git tag "v$(VERSION)" -m "systemd $(VERSION)"
4772
4773 install-tree: all
4774 rm -rf $(abs_srcdir)/install-tree
4775 $(MAKE) install DESTDIR=$(abs_srcdir)/install-tree
4776 tree $(abs_srcdir)/install-tree
4777
4778 # Let's run all tests of the test suite, but under valgrind. Let's
4779 # exclude the one perl script we have in there
4780 valgrind-tests: $(TESTS)
4781 $(AM_V_GEN)for f in $(filter-out %.pl, $^); do \
4782 echo "Running $$f"; \
4783 libtool --mode=execute valgrind -q --leak-check=full --max-stackframe=4194400 --error-exitcode=55 $(builddir)/$$f ; \
4784 done
4785
4786 exported-%: %
4787 $(AM_V_GEN)nm -g --defined-only $(builddir)/.libs/$(<:.la=.so) 2>&1 /dev/null | grep " T " | cut -d" " -f3 > $@
4788
4789 exported: $(addprefix exported-, $(lib_LTLIBRARIES))
4790 $(AM_V_GEN)cat $^ > $@
4791
4792 check-api-docs: exported man
4793 $(AM_V_GEN)for symbol in `cat exported` ; do \
4794 if test -f $(builddir)/man/$$symbol.html ; then \
4795 echo " Symbol $$symbol() is documented." ; \
4796 else \
4797 echo "‣ Symbol $$symbol() lacks documentation." ; \
4798 fi ; \
4799 done
4800
4801 OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
4802 ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
4803
4804 undefined defined: $(ALL_OBJECTS)
4805 $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
4806 nm -g --$@-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
4807 done | cut -c 20- | cut -d @ -f 1 | sort -u > $@
4808
4809 CLEANFILES += \
4810 defined \
4811 undefined
4812
4813 check-api-unused: defined undefined exported
4814 ( cat exported undefined ) | sort -u | diff -u - defined | grep ^+ | grep -v ^+++ | cut -c2-
4815
4816 # Stupid test that everything purported to be exported really is
4817
4818 define generate-sym-test
4819 $(AM_V_at)$(MKDIR_P) $(dir $@)
4820 $(AM_V_at)printf '#include <stdio.h>\n' > $@
4821 $(AM_V_at)printf '#include "%s"\n' $(notdir $(filter %.h, $^)) >> $@
4822 $(AM_V_at)printf 'void* functions[] = {\n' >> $@
4823 $(AM_V_GEN)sed -r -n 's/^ +([a-zA-Z0-9_]+);/\1,/p' $< >> $@
4824 $(AM_V_at)printf '};\nint main(void) {\n' >> $@
4825 $(AM_V_at)printf 'unsigned i; for (i=0;i<sizeof(functions)/sizeof(void*);i++) printf("%%p\\n", functions[i]);\n' >> $@
4826 $(AM_V_at)printf 'return 0; }\n' >> $@
4827 endef
4828
4829 test-libsystemd-bus-sym.c: \
4830 src/libsystemd-bus/libsystemd-bus.sym \
4831 src/systemd/sd-bus.h \
4832 src/systemd/sd-utf8.h
4833 $(generate-sym-test)
4834
4835 test-libsystemd-daemon-sym.c: \
4836 src/libsystemd-daemon/libsystemd-daemon.sym \
4837 src/systemd/sd-daemon.h
4838 $(generate-sym-test)
4839
4840 test-libsystemd-id128-sym.c: \
4841 src/libsystemd-id128/libsystemd-id128.sym \
4842 src/systemd/sd-id128.h
4843 $(generate-sym-test)
4844
4845 test-libsystemd-journal-sym.c: \
4846 src/journal/libsystemd-journal.sym \
4847 src/systemd/sd-journal.h
4848 $(generate-sym-test)
4849
4850 test-libsystemd-login-sym.c: \
4851 src/login/libsystemd-login.sym \
4852 src/systemd/sd-login.h
4853 $(generate-sym-test)
4854
4855 test-libudev-sym.c: \
4856 src/libudev/libudev.sym \
4857 src/udev/udev.h
4858 $(generate-sym-test)
4859
4860 test_libsystemd_bus_sym_SOURCES = \
4861 test-libsystemd-bus-sym.c
4862 test_libsystemd_bus_sym_LDADD = \
4863 libsystemd-bus.la
4864
4865 test_libsystemd_daemon_sym_SOURCES = \
4866 test-libsystemd-daemon-sym.c
4867 test_libsystemd_daemon_sym_LDADD = \
4868 libsystemd-daemon.la
4869
4870 test_libsystemd_id128_sym_SOURCES = \
4871 test-libsystemd-id128-sym.c
4872 test_libsystemd_id128_sym_LDADD = \
4873 libsystemd-id128.la
4874
4875 test_libsystemd_journal_sym_SOURCES = \
4876 test-libsystemd-journal-sym.c
4877 test_libsystemd_journal_sym_LDADD = \
4878 libsystemd-journal.la
4879
4880 test_libsystemd_login_sym_SOURCES = \
4881 test-libsystemd-login-sym.c
4882 test_libsystemd_login_sym_LDADD = \
4883 libsystemd-login.la
4884
4885 test_libudev_sym_SOURCES = \
4886 test-libudev-sym.c
4887 test_libudev_sym_LDADD = \
4888 libudev.la
4889
4890 BUILT_SOURCES += \
4891 $(test_libsystemd_bus_sym_SOURCES) \
4892 $(test_libsystemd_daemon_sym_SOURCES) \
4893 $(test_libsystemd_id128_sym_SOURCES) \
4894 $(test_libsystemd_journal_sym_SOURCES) \
4895 $(test_libsystemd_login_sym_SOURCES) \
4896 $(test_libudev_sym_SOURCES)
4897
4898 tests += \
4899 test-libsystemd-bus-sym \
4900 test-libsystemd-daemon-sym \
4901 test-libsystemd-id128-sym \
4902 test-libsystemd-journal-sym \
4903 test-libsystemd-login-sym \
4904 test-libudev-sym