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