chiark / gitweb /
sd-daemon: split off sd_readahead() since it is not a feature of systemd itself but...
[elogind.git] / Makefile.am
1 #  This file is part of systemd.
2 #
3 #  Copyright 2010 Lennart Poettering
4 #
5 #  systemd is free software; you can redistribute it and/or modify it
6 #  under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation; either version 2 of the License, or
8 #  (at your option) any later version.
9 #
10 #  systemd is distributed in the hope that it will be useful, but
11 #  WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 #  General Public License for more details.
14 #
15 #  You should have received a copy of the GNU General Public License
16 #  along with systemd; If not, see <http://www.gnu.org/licenses/>.
17
18 ACLOCAL_AMFLAGS = -I m4
19
20 # Dirs of external packages
21 dbuspolicydir=@dbuspolicydir@
22 dbussessionservicedir=@dbussessionservicedir@
23 dbussystemservicedir=@dbussystemservicedir@
24 dbusinterfacedir=@dbusinterfacedir@
25 udevrulesdir=@udevrulesdir@
26 pamlibdir=@pamlibdir@
27 pkgconfigdatadir=$(datadir)/pkgconfig
28 polkitpolicydir=$(datadir)/polkit-1/actions
29
30 # Our own, non-special dirs
31 pkgsysconfdir=$(sysconfdir)/systemd
32 sessionunitdir=$(pkgdatadir)/session
33 tmpfilesdir=$(sysconfdir)/tmpfiles.d
34
35 # And these are the special ones for /
36 rootdir=@rootdir@
37 rootbindir=$(rootdir)/bin
38 rootlibexecdir=$(rootdir)/lib/systemd
39 systemunitdir=$(rootdir)/lib/systemd/system
40
41 AM_CPPFLAGS = \
42         -include $(top_builddir)/config.h \
43         -DSYSTEM_CONFIG_FILE=\"$(pkgsysconfdir)/system.conf\" \
44         -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
45         -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
46         -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
47         -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
48         -DSESSION_CONFIG_FILE=\"$(pkgsysconfdir)/session.conf\" \
49         -DSESSION_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/session\" \
50         -DSESSION_DATA_UNIT_PATH=\"$(sessionunitdir)\" \
51         -DCGROUP_AGENT_PATH=\"$(rootlibexecdir)/systemd-cgroups-agent\" \
52         -DSYSTEMD_BINARY_PATH=\"$(rootbindir)/systemd\" \
53         -DSYSTEMCTL_BINARY_PATH=\"$(rootbindir)/systemctl\" \
54         -DRUNTIME_DIR=\"$(localstatedir)/run\" \
55         -DRANDOM_SEED=\"$(localstatedir)/lib/random-seed\" \
56         -I $(top_srcdir)/src
57
58 if TARGET_GENTOO
59 AM_CPPFLAGS += \
60         -DKBD_LOADKEYS=\"/usr/bin/loadkeys\" \
61         -DKBD_SETFONT=\"/usr/bin/setfont\" \
62         -DDEFAULT_FONT=\"LatArCyrHeb-16\"
63 else
64 AM_CPPFLAGS += \
65         -DKBD_LOADKEYS=\"/bin/loadkeys\" \
66         -DKBD_SETFONT=\"/bin/setfont\" \
67         -DDEFAULT_FONT=\"latarcyrheb-sun16\"
68 endif
69
70 rootbin_PROGRAMS = \
71         systemd \
72         systemctl \
73         systemd-notify \
74         systemd-ask-password
75
76 bin_PROGRAMS = \
77         systemd-cgls
78
79 if HAVE_GTK
80 bin_PROGRAMS += \
81         systemadm \
82         systemd-ask-password-agent
83 endif
84
85 rootlibexec_PROGRAMS = \
86         systemd-logger \
87         systemd-cgroups-agent \
88         systemd-initctl \
89         systemd-update-utmp \
90         systemd-random-seed \
91         systemd-shutdownd \
92         systemd-modules-load \
93         systemd-remount-api-vfs \
94         systemd-kmsg-syslogd \
95         systemd-vconsole-setup \
96         systemd-reply-password \
97         systemd-readahead-collect \
98         systemd-readahead-replay \
99         systemd-tmpfiles
100
101 noinst_PROGRAMS = \
102         test-engine \
103         test-job-type \
104         test-ns \
105         test-loopback \
106         test-hostname \
107         test-daemon \
108         test-cgroup \
109         test-env-replace
110
111 if HAVE_PAM
112 pamlib_LTLIBRARIES = \
113         pam_systemd.la
114 endif
115
116 dist_pkgsysconf_DATA = \
117         src/system.conf
118
119 dist_dbuspolicy_DATA = \
120         src/org.freedesktop.systemd1.conf
121
122 dist_dbussystemservice_DATA = \
123         src/org.freedesktop.systemd1.service
124
125 dist_udevrules_DATA = \
126         src/99-systemd.rules
127
128 dbusinterface_DATA = \
129         org.freedesktop.systemd1.Manager.xml \
130         org.freedesktop.systemd1.Job.xml \
131         org.freedesktop.systemd1.Unit.xml \
132         org.freedesktop.systemd1.Service.xml \
133         org.freedesktop.systemd1.Socket.xml \
134         org.freedesktop.systemd1.Timer.xml \
135         org.freedesktop.systemd1.Target.xml \
136         org.freedesktop.systemd1.Device.xml \
137         org.freedesktop.systemd1.Mount.xml \
138         org.freedesktop.systemd1.Automount.xml \
139         org.freedesktop.systemd1.Snapshot.xml \
140         org.freedesktop.systemd1.Swap.xml \
141         org.freedesktop.systemd1.Path.xml
142
143 dist_tmpfiles_DATA = \
144         tmpfiles.d/systemd.conf \
145         tmpfiles.d/x11.conf
146
147 dist_systemunit_DATA = \
148         units/emergency.service \
149         units/emergency.target \
150         units/basic.target \
151         units/getty.target \
152         units/halt.target \
153         units/local-fs.target \
154         units/network.target \
155         units/nss-lookup.target \
156         units/mail-transfer-agent.target \
157         units/http-daemon.target \
158         units/poweroff.target \
159         units/reboot.target \
160         units/rescue.target \
161         units/rpcbind.target \
162         units/rtc-set.target \
163         units/shutdown.target \
164         units/umount.target \
165         units/sigpwr.target \
166         units/sockets.target \
167         units/swap.target \
168         units/dbus.target \
169         units/systemd-initctl.socket \
170         units/systemd-logger.socket \
171         units/systemd-shutdownd.socket \
172         units/systemd-kmsg-syslogd.socket \
173         units/dev-hugepages.automount \
174         units/dev-hugepages.mount \
175         units/dev-mqueue.automount \
176         units/dev-mqueue.mount \
177         units/proc-sys-fs-binfmt_misc.automount \
178         units/proc-sys-fs-binfmt_misc.mount \
179         units/sys-kernel-debug.automount \
180         units/sys-kernel-debug.mount \
181         units/sys-kernel-security.automount \
182         units/sys-kernel-security.mount \
183         units/tmp.mount \
184         units/var-lock.mount \
185         units/var-run.mount \
186         units/hwclock-load.service \
187         units/hwclock-save.service \
188         units/sysctl.service \
189         units/remount-rootfs.service \
190         units/printer.target \
191         units/bluetooth.target \
192         units/smartcard.target \
193         units/tmpwatch.service \
194         units/tmpwatch.timer \
195         units/systemd-readahead-done.timer
196
197 nodist_systemunit_DATA = \
198         units/sysinit.target \
199         units/getty@.service \
200         units/serial-getty@.service \
201         units/graphical.target \
202         units/remote-fs.target \
203         units/multi-user.target \
204         units/systemd-initctl.service \
205         units/systemd-logger.service \
206         units/systemd-shutdownd.service \
207         units/systemd-kmsg-syslogd.service \
208         units/systemd-modules-load.service \
209         units/systemd-vconsole-setup.service \
210         units/systemd-remount-api-vfs.service \
211         units/systemd-update-utmp-runlevel.service \
212         units/systemd-update-utmp-shutdown.service \
213         units/systemd-random-seed-save.service \
214         units/systemd-random-seed-load.service \
215         units/systemd-readahead-collect.service \
216         units/systemd-readahead-replay.service \
217         units/systemd-readahead-done.service \
218         units/systemd-tmpfiles.service \
219         units/syslog.target
220
221 dist_sessionunit_DATA = \
222         units/session/default.target
223
224 nodist_sessionunit_DATA = \
225         units/session/remote-fs.target \
226         units/session/exit.service
227
228 EXTRA_DIST = \
229         units/sysinit.target.m4 \
230         units/getty@.service.m4 \
231         units/serial-getty@.service.m4 \
232         units/graphical.target.m4 \
233         units/multi-user.target.m4 \
234         units/remote-fs.target.m4 \
235         units/systemd-initctl.service.in \
236         units/systemd-logger.service.in \
237         units/systemd-shutdownd.service.in \
238         units/systemd-kmsg-syslogd.service.in \
239         units/systemd-modules-load.service.in \
240         units/systemd-vconsole-setup.service.in \
241         units/systemd-remount-api-vfs.service.in \
242         units/systemd-update-utmp-runlevel.service.in \
243         units/systemd-update-utmp-shutdown.service.in \
244         units/systemd-random-seed-save.service.in \
245         units/systemd-random-seed-load.service.in \
246         units/systemd-readahead-collect.service.in \
247         units/systemd-readahead-replay.service.in \
248         units/systemd-readahead-done.service.in \
249         units/systemd-tmpfiles.service.in \
250         units/syslog.target.in \
251         units/session/exit.service.in \
252         systemd.pc.in
253
254 if TARGET_FEDORA
255 dist_systemunit_DATA += \
256         units/fedora/halt.service \
257         units/fedora/killall.service \
258         units/fedora/poweroff.service \
259         units/fedora/prefdm.service \
260         units/fedora/rc-local.service \
261         units/fedora/reboot.service \
262         units/fedora/sysinit.service \
263         units/fedora/single.service \
264         units/fedora/plymouth-quit.service \
265         units/fedora/plymouth-reboot.service \
266         units/fedora/plymouth-poweroff.service \
267         units/fedora/plymouth-halt.service
268 endif
269
270 if TARGET_DEBIAN
271 dist_systemunit_DATA += \
272         units/debian/halt.service \
273         units/debian/killall.service \
274         units/debian/poweroff.service \
275         units/debian/reboot.service \
276         units/debian/fsck.target \
277         units/debian/umountfs.service \
278         units/debian/umountnfs.service \
279         units/debian/umountroot.service
280 endif
281
282 if TARGET_SUSE
283 dist_systemunit_DATA += \
284         units/suse/halt.service \
285         units/suse/poweroff.service \
286         units/suse/reboot.service \
287         units/suse/fsck.target
288 endif
289
290 if TARGET_GENTOO
291 dist_systemunit_DATA += \
292         units/gentoo/halt.service \
293         units/gentoo/killall.service \
294         units/gentoo/poweroff.service \
295         units/gentoo/reboot.service \
296         units/gentoo/xdm.service
297 endif
298
299 if TARGET_ARCH
300 dist_systemunit_DATA += \
301         units/arch/sysinit.service \
302         units/arch/rc-local.service \
303         units/arch/halt.service \
304         units/arch/poweroff.service \
305         units/arch/reboot.service
306 endif
307
308 dist_doc_DATA = \
309         README \
310         LICENSE \
311         DISTRO_PORTING \
312         src/sd-daemon.h \
313         src/sd-daemon.c \
314         src/sd-readahead.h \
315         src/sd-readahead.c
316
317 pkgconfigdata_DATA = \
318         systemd.pc
319
320 dist_polkitpolicy_DATA = \
321         src/org.freedesktop.systemd1.policy
322
323 noinst_LTLIBRARIES = \
324         libsystemd-basic.la \
325         libsystemd-core.la
326
327 libsystemd_basic_la_SOURCES = \
328         src/util.c \
329         src/label.c \
330         src/hashmap.c \
331         src/set.c \
332         src/strv.c \
333         src/conf-parser.c \
334         src/socket-util.c \
335         src/log.c \
336         src/ratelimit.c
337
338 libsystemd_basic_la_CFLAGS = \
339         $(AM_CFLAGS) \
340         $(SELINUX_CFLAGS)
341
342 libsystemd_basic_la_LIBADD = \
343         $(SELINUX_LIBS)
344
345 libsystemd_core_la_SOURCES = \
346         src/unit.c \
347         src/job.c \
348         src/manager.c \
349         src/path-lookup.c \
350         src/load-fragment.c \
351         src/service.c \
352         src/automount.c \
353         src/mount.c \
354         src/swap.c \
355         src/device.c \
356         src/target.c \
357         src/snapshot.c \
358         src/socket.c \
359         src/timer.c \
360         src/path.c \
361         src/load-dropin.c \
362         src/execute.c \
363         src/exit-status.c \
364         src/dbus.c \
365         src/dbus-manager.c \
366         src/dbus-unit.c \
367         src/dbus-job.c \
368         src/dbus-service.c \
369         src/dbus-socket.c \
370         src/dbus-timer.c \
371         src/dbus-target.c \
372         src/dbus-mount.c \
373         src/dbus-automount.c \
374         src/dbus-swap.c \
375         src/dbus-snapshot.c \
376         src/dbus-device.c \
377         src/dbus-execute.c \
378         src/dbus-path.c \
379         src/cgroup.c \
380         src/mount-setup.c \
381         src/hostname-setup.c \
382         src/loopback-setup.c \
383         src/kmod-setup.c \
384         src/locale-setup.c \
385         src/specifier.c \
386         src/unit-name.c \
387         src/fdset.c \
388         src/namespace.c \
389         src/tcpwrap.c \
390         src/cgroup-util.c
391
392 libsystemd_core_la_CFLAGS = \
393         $(AM_CFLAGS) \
394         $(DBUS_CFLAGS) \
395         $(UDEV_CFLAGS) \
396         $(LIBWRAP_CFLAGS) \
397         $(PAM_CFLAGS) \
398         $(AUDIT_CFLAGS)
399
400 libsystemd_core_la_LIBADD = \
401         libsystemd-basic.la \
402         $(DBUS_LIBS) \
403         $(UDEV_LIBS) \
404         $(LIBWRAP_LIBS) \
405         $(PAM_LIBS) \
406         $(AUDIT_LIBS)
407
408 # This is needed because automake is buggy in how it generates the
409 # rules for C programs, but not Vala programs.  We therefore can't
410 # list the .h files as dependencies if we want make dist to work.
411
412 EXTRA_DIST += \
413         ${libsystemd_basic_la_SOURCES:.c=.h} \
414         ${libsystemd_core_la_SOURCES:.c=.h} \
415         src/macro.h \
416         src/ioprio.h \
417         src/missing.h \
418         src/list.h \
419         src/securebits.h \
420         src/linux/auto_dev-ioctl.h \
421         src/linux/fanotify.h \
422         src/initreq.h \
423         src/sd-daemon.h \
424         src/sd-readahead.h \
425         src/special.h \
426         src/dbus-common.h \
427         src/bus-errors.h \
428         src/cgroup-show.h \
429         src/utmp-wtmp.h \
430         src/build.h \
431         src/shutdownd.h \
432         src/readahead-common.h
433
434 MANPAGES = \
435         man/systemd.1 \
436         man/systemctl.1 \
437         man/systemadm.1 \
438         man/systemd-cgls.1 \
439         man/systemd-notify.1 \
440         man/sd_notify.3 \
441         man/sd_readahead.3 \
442         man/sd_booted.3 \
443         man/sd_listen_fds.3 \
444         man/sd_is_fifo.3 \
445         man/systemd.unit.5 \
446         man/systemd.service.5 \
447         man/systemd.socket.5 \
448         man/systemd.mount.5 \
449         man/systemd.automount.5 \
450         man/systemd.swap.5 \
451         man/systemd.timer.5 \
452         man/systemd.path.5 \
453         man/systemd.target.5 \
454         man/systemd.device.5 \
455         man/systemd.snapshot.5 \
456         man/systemd.exec.5 \
457         man/daemon.7 \
458         man/sd-daemon.7 \
459         man/runlevel.8 \
460         man/telinit.8 \
461         man/halt.8 \
462         man/shutdown.8 \
463         man/pam_systemd.8 \
464         man/systemd.conf.5
465
466 MANPAGES_ALIAS = \
467         man/reboot.8 \
468         man/poweroff.8 \
469         man/sd_is_socket.3 \
470         man/sd_is_socket_unix.3 \
471         man/sd_is_socket_inet.3 \
472         man/sd_notifyf.3 \
473         man/init.1
474
475 man/reboot.8: man/halt.8
476 man/poweroff.8: man/halt.8
477 man/sd_is_socket.3: man/sd_is_fifo.3
478 man/sd_is_socket_unix.3: man/sd_is_fifo.3
479 man/sd_is_socket_inet.3: man/sd_is_fifo.3
480 man/sd_notifyf.3: man/sd_notify.3
481 man/init.1: man/systemd.1
482
483 dist_man_MANS = \
484         $(MANPAGES) \
485         $(MANPAGES_ALIAS)
486
487 nodist_man_MANS = \
488         man/systemd.special.7
489
490 XML_FILES = \
491         ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}}
492
493 XML_IN_FILES = \
494         ${patsubst %.1,%.xml.in,${patsubst %.3,%.xml.in,${patsubst %.5,%.xml.in,${patsubst %.7,%.xml.in,${patsubst %.8,%.xml.in,$(nodist_man_MANS)}}}}}
495
496 dist_noinst_DATA = \
497         ${XML_FILES:.xml=.html}
498
499 nodist_noinst_DATA = \
500         ${XML_IN_FILES:.xml.in=.html}
501
502 EXTRA_DIST += \
503         $(XML_FILES) \
504         $(XML_IN_FILES) \
505         ${nodist_man_MANS:=.in} \
506         ${XML_IN_FILES:.xml.in=.html.in}
507
508 systemd_SOURCES = \
509         src/main.c
510
511 systemd_CFLAGS = \
512         $(AM_CFLAGS) \
513         $(DBUS_CFLAGS) \
514         $(UDEV_CFLAGS)
515
516 systemd_LDADD = \
517         libsystemd-core.la
518
519 test_engine_SOURCES = \
520         src/test-engine.c
521
522 test_engine_CFLAGS = $(systemd_CFLAGS)
523 test_engine_LDADD = $(systemd_LDADD)
524
525 test_job_type_SOURCES = \
526         src/test-job-type.c
527
528 test_job_type_CFLAGS = $(systemd_CFLAGS)
529 test_job_type_LDADD = $(systemd_LDADD)
530
531 test_ns_SOURCES = \
532         src/test-ns.c
533
534 test_ns_CFLAGS = $(systemd_CFLAGS)
535 test_ns_LDADD = $(systemd_LDADD)
536
537 test_loopback_SOURCES = \
538         src/test-loopback.c \
539         src/loopback-setup.c
540
541 test_loopback_LDADD = \
542         libsystemd-basic.la
543
544 test_hostname_SOURCES = \
545         src/test-hostname.c \
546         src/hostname-setup.c
547
548 test_hostname_LDADD = \
549         libsystemd-basic.la
550
551 test_daemon_SOURCES = \
552         src/test-daemon.c \
553         src/sd-daemon.c
554
555 test_daemon_LDADD = \
556         libsystemd-basic.la
557
558 test_cgroup_SOURCES = \
559         src/test-cgroup.c \
560         src/cgroup-util.c
561
562 test_cgroup_CFLAGS = \
563         $(AM_CFLAGS)
564
565 test_cgroup_LDADD = \
566         libsystemd-basic.la
567
568 test_env_replace_SOURCES = \
569         src/test-env-replace.c
570
571 test_env_replace_CFLAGS = \
572         $(AM_CFLAGS)
573
574 test_env_replace_LDADD = \
575         libsystemd-basic.la
576
577 systemd_logger_SOURCES = \
578         src/logger.c \
579         src/sd-daemon.c \
580         src/tcpwrap.c
581
582 systemd_logger_LDADD = \
583         libsystemd-basic.la \
584         $(LIBWRAP_LIBS)
585
586 systemd_initctl_SOURCES = \
587         src/initctl.c \
588         src/sd-daemon.c \
589         src/dbus-common.c
590
591 systemd_initctl_CFLAGS = \
592         $(AM_CFLAGS) \
593         $(DBUS_CFLAGS)
594
595 systemd_initctl_LDADD = \
596         libsystemd-basic.la \
597         $(DBUS_LIBS)
598
599 systemd_update_utmp_SOURCES = \
600         src/update-utmp.c \
601         src/dbus-common.c \
602         src/utmp-wtmp.c
603
604 systemd_update_utmp_CFLAGS = \
605         $(AM_CFLAGS) \
606         $(DBUS_CFLAGS) \
607         $(AUDIT_CFLAGS)
608
609 systemd_update_utmp_LDADD = \
610         libsystemd-basic.la \
611         $(DBUS_LIBS) \
612         $(AUDIT_LIBS)
613
614 systemd_random_seed_SOURCES = \
615         src/random-seed.c
616
617 systemd_random_seed_CFLAGS = \
618         $(AM_CFLAGS)
619
620 systemd_random_seed_LDADD = \
621         libsystemd-basic.la
622
623 systemd_shutdownd_SOURCES = \
624         src/utmp-wtmp.c \
625         src/sd-daemon.c \
626         src/shutdownd.c
627
628 systemd_shutdownd_CFLAGS = \
629         $(AM_CFLAGS)
630
631 systemd_shutdownd_LDADD = \
632         libsystemd-basic.la
633
634 systemd_modules_load_SOURCES = \
635         src/modules-load.c
636
637 systemd_modules_load_CFLAGS = \
638         $(AM_CFLAGS)
639
640 systemd_tmpfiles_LDADD = \
641         libsystemd-basic.la
642
643 systemd_tmpfiles_SOURCES = \
644         src/tmpfiles.c
645
646 systemd_tmpfiles_CFLAGS = \
647         $(AM_CFLAGS)
648
649 systemd_modules_load_LDADD = \
650         libsystemd-basic.la
651
652 systemd_vconsole_setup_SOURCES = \
653         src/vconsole-setup.c
654
655 systemd_vconsole_setup_CFLAGS = \
656         $(AM_CFLAGS)
657
658 systemd_vconsole_setup_LDADD = \
659         libsystemd-basic.la
660
661 systemd_remount_api_vfs_SOURCES = \
662         src/remount-api-vfs.c \
663         src/mount-setup.c
664
665 systemd_remount_api_vfs_CFLAGS = \
666         $(AM_CFLAGS)
667
668 systemd_remount_api_vfs_LDADD = \
669         libsystemd-basic.la
670
671 systemd_cgroups_agent_SOURCES = \
672         src/cgroups-agent.c \
673         src/dbus-common.c
674
675 systemd_cgroups_agent_CFLAGS = \
676         $(AM_CFLAGS) \
677         $(DBUS_CFLAGS)
678
679 systemd_cgroups_agent_LDADD = \
680         libsystemd-basic.la \
681         $(DBUS_LIBS)
682
683 systemd_kmsg_syslogd_SOURCES = \
684         src/kmsg-syslogd.c \
685         src/sd-daemon.c \
686         src/fdset.c
687
688 systemd_kmsg_syslogd_CFLAGS = \
689         $(AM_CFLAGS)
690
691 systemd_kmsg_syslogd_LDADD = \
692         libsystemd-basic.la
693
694 systemctl_SOURCES = \
695         src/systemctl.c \
696         src/utmp-wtmp.c \
697         src/dbus-common.c \
698         src/path-lookup.c \
699         src/sd-daemon.c \
700         src/cgroup-show.c \
701         src/cgroup-util.c \
702         src/exit-status.c
703
704 systemctl_CFLAGS = \
705         $(AM_CFLAGS) \
706         $(DBUS_CFLAGS)
707
708 systemctl_LDADD = \
709         libsystemd-basic.la \
710         $(DBUS_LIBS)
711
712 systemd_notify_SOURCES = \
713         src/notify.c \
714         src/sd-daemon.c \
715         src/sd-readahead.c
716
717 systemd_notify_LDADD = \
718         libsystemd-basic.la
719
720 systemd_ask_password_SOURCES = \
721         src/ask-password.c
722
723 systemd_ask_password_LDADD = \
724         libsystemd-basic.la
725
726 systemd_reply_password_SOURCES = \
727         src/reply-password.c
728
729 systemd_reply_password_LDADD = \
730         libsystemd-basic.la
731
732 systemd_readahead_collect_SOURCES = \
733         src/readahead-collect.c \
734         src/sd-daemon.c \
735         src/readahead-common.c
736
737 systemd_readahead_collect_CFLAGS = \
738         $(UDEV_CFLAGS)
739
740 systemd_readahead_collect_LDADD = \
741         libsystemd-basic.la \
742         $(UDEV_LIBS)
743
744 systemd_readahead_replay_SOURCES = \
745         src/readahead-replay.c \
746         src/sd-daemon.c \
747         src/readahead-common.c
748
749 systemd_readahead_replay_CFLAGS = \
750         $(UDEV_CFLAGS)
751
752 systemd_readahead_replay_LDADD = \
753         libsystemd-basic.la \
754         $(UDEV_LIBS)
755
756 systemd_cgls_SOURCES = \
757         src/cgls.c \
758         src/cgroup-show.c \
759         src/cgroup-util.c
760
761 systemd_cgls_CFLAGS = \
762         $(AM_CFLAGS)
763
764 systemd_cgls_LDADD = \
765         libsystemd-basic.la
766
767 systemadm_SOURCES = \
768         src/systemadm.vala \
769         src/systemd-interfaces.vala
770
771 systemadm_CFLAGS = \
772         $(AM_CFLAGS) \
773         $(DBUSGLIB_CFLAGS) \
774         $(GTK_CFLAGS) \
775         -Wno-unused-variable \
776         -Wno-unused-function \
777         -Wno-shadow \
778         -Wno-format-nonliteral
779
780 systemadm_VALAFLAGS = \
781         --pkg=dbus-glib-1 \
782         --pkg=posix \
783         --pkg=gtk+-2.0 \
784         -g
785
786 systemadm_LDADD = \
787         $(DBUSGLIB_LIBS) \
788         $(GTK_LIBS)
789
790 systemd_ask_password_agent_SOURCES = \
791         src/ask-password-agent.vala
792
793 systemd_ask_password_agent_CFLAGS = \
794         $(AM_CFLAGS) \
795         $(DBUSGLIB_CFLAGS) \
796         $(GTK_CFLAGS) \
797         -Wno-unused-variable \
798         -Wno-unused-function \
799         -Wno-shadow \
800         -Wno-format-nonliteral
801
802 systemd_ask_password_agent_VALAFLAGS = \
803         --pkg=dbus-glib-1 \
804         --pkg=posix \
805         --pkg=gtk+-2.0 \
806         --pkg=linux \
807         --pkg=gio-unix-2.0 \
808         --pkg=libnotify \
809         -g
810
811 systemd_ask_password_agent_LDADD = \
812         $(DBUSGLIB_LIBS) \
813         $(GTK_LIBS)
814
815 pam_systemd_la_SOURCES = \
816         src/pam-module.c \
817         src/cgroup-util.c \
818         src/sd-daemon.c
819
820 pam_systemd_la_CFLAGS = \
821         $(AM_CFLAGS)
822         -fvisibility=hidden
823
824 pam_systemd_la_LDFLAGS = \
825         -module \
826         -export-dynamic \
827         -avoid-version \
828         -shared \
829         -export-symbols-regex '^pam_sm_.*'
830
831 pam_systemd_la_LIBADD = \
832         libsystemd-basic.la \
833         $(PAM_LIBS)
834
835 SED_PROCESS = \
836         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
837         $(SED)  -e 's,@rootlibexecdir\@,$(rootlibexecdir),g' \
838                 -e 's,@SPECIAL_SYSLOG_SERVICE\@,$(SPECIAL_SYSLOG_SERVICE),g' \
839                 -e 's,@SYSTEMCTL\@,$(rootbindir)/systemctl,g' \
840                 -e 's,@SYSTEMD_NOTIFY\@,$(rootbindir)/systemd-notify,g' \
841                 -e 's,@pkgsysconfdir\@,$(pkgsysconfdir),g' \
842                 -e 's,@pkgdatadir\@,$(pkgdatadir),g' \
843                 -e 's,@systemunitdir\@,$(systemunitdir),g' \
844                 -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' \
845                 -e 's,@PACKAGE_NAME\@,$(PACKAGE_NAME),g' \
846                 -e 's,@PACKAGE_URL\@,$(PACKAGE_URL),g' \
847                 -e 's,@prefix\@,$(prefix),g' \
848                 < $< > $@
849
850 units/%: units/%.in Makefile
851         $(SED_PROCESS)
852
853 man/%: man/%.in Makefile
854         $(SED_PROCESS)
855
856 %.pc: %.pc.in Makefile
857         $(SED_PROCESS)
858
859 M4_PROCESS_SYSTEM = \
860         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
861         $(M4) -P $(M4_DISTRO_FLAG) -DFOR_SYSTEM=1 < $< > $@
862
863 M4_PROCESS_SESSION = \
864         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
865         $(M4) -P $(M4_DISTRO_FLAG) -DFOR_SESSION=1 < $< > $@
866
867 units/%: units/%.m4 Makefile
868         $(M4_PROCESS_SYSTEM)
869
870 units/session/%: units/%.m4 Makefile
871         $(M4_PROCESS_SESSION)
872
873 CLEANFILES = \
874         $(nodist_systemunit_DATA) \
875         $(nodist_sessionunit_DATA) \
876         $(nodist_man_MANS) \
877         ${XML_IN_FILES:.xml.in=.html} \
878         $(pkgconfigdata_DATA)
879
880 if HAVE_VALAC
881 CLEANFILES += \
882         ${systemadm_SOURCES:.vala=.c}
883 endif
884
885 if HAVE_XSLTPROC
886 XSLTPROC_FLAGS = \
887         --nonet \
888         --param funcsynopsis.style "'ansi'"
889
890 XSLTPROC_PROCESS_MAN = \
891         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
892         $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
893
894 XSLTPROC_PROCESS_MAN_IN = \
895         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
896         $(XSLTPROC) -o ${@:.in=} $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< && \
897         mv ${@:.in=} $@
898
899 XSLTPROC_PROCESS_HTML = \
900         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
901         $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/xhtml-1_1/docbook.xsl $<
902
903 XSLTPROC_PROCESS_HTML_IN = \
904         $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
905         $(XSLTPROC) -o ${@:.in=} $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/xhtml-1_1/docbook.xsl $< && \
906         mv ${@:.in=} $@
907
908 man/%.1: man/%.xml
909         $(XSLTPROC_PROCESS_MAN)
910
911 man/%.1.in: man/%.xml.in
912         $(XSLTPROC_PROCESS_MAN)
913
914 man/%.3: man/%.xml
915         $(XSLTPROC_PROCESS_MAN)
916
917 man/%.3.in: man/%.xml.in
918         $(XSLTPROC_PROCESS_MAN)
919
920 man/%.5: man/%.xml
921         $(XSLTPROC_PROCESS_MAN)
922
923 man/%.5.in: man/%.xml.in
924         $(XSLTPROC_PROCESS_MAN)
925
926 man/%.7: man/%.xml
927         $(XSLTPROC_PROCESS_MAN)
928
929 man/%.7.in: man/%.xml.in
930         $(XSLTPROC_PROCESS_MAN_IN)
931
932 man/%.8: man/%.xml
933         $(XSLTPROC_PROCESS_MAN)
934
935 man/%.8.in: man/%.xml.in
936         $(XSLTPROC_PROCESS_MAN_IN)
937
938 man/%.html: man/%.xml
939         $(XSLTPROC_PROCESS_HTML)
940
941 man/%.html.in: man/%.xml.in
942         $(XSLTPROC_PROCESS_HTML_IN)
943
944 CLEANFILES += \
945         $(dist_man_MANS) \
946         ${nodist_man_MANS:=.in} \
947         ${XML_FILES:.xml=.html} \
948         ${XML_IN_FILES:.xml.in=.html.in}
949 endif
950
951 org.freedesktop.systemd1.%.xml: systemd
952         $(AM_V_GEN)SYSTEMD_SKIP_API_MOUNTS=1 ./systemd --introspect=${@:.xml=} > $@
953
954 CLEANFILES += \
955         $(dbusinterface_DATA)
956
957 install-data-hook:
958         $(MKDIR_P) -m 0755 \
959                 $(DESTDIR)$(systemunitdir) \
960                 $(DESTDIR)$(sessionunitdir) \
961                 $(DESTDIR)$(systemunitdir)/sockets.target.wants \
962                 $(DESTDIR)$(systemunitdir)/basic.target.wants \
963                 $(DESTDIR)$(systemunitdir)/shutdown.target.wants \
964                 $(DESTDIR)$(systemunitdir)/local-fs.target.wants \
965                 $(DESTDIR)$(systemunitdir)/runlevel1.target.wants \
966                 $(DESTDIR)$(systemunitdir)/runlevel2.target.wants \
967                 $(DESTDIR)$(systemunitdir)/runlevel3.target.wants \
968                 $(DESTDIR)$(systemunitdir)/runlevel4.target.wants \
969                 $(DESTDIR)$(systemunitdir)/runlevel5.target.wants \
970                 $(DESTDIR)$(systemunitdir)/multi-user.target.wants \
971                 $(DESTDIR)$(pkgsysconfdir)/system \
972                 $(DESTDIR)$(pkgsysconfdir)/system/getty.target.wants \
973                 $(DESTDIR)$(pkgsysconfdir)/system/multi-user.target.wants \
974                 $(DESTDIR)$(pkgsysconfdir)/system/graphical.target.wants \
975                 $(DESTDIR)$(pkgsysconfdir)/session \
976                 $(DESTDIR)$(sysconfdir)/xdg/systemd
977         ( cd $(DESTDIR)$(sysconfdir)/xdg/systemd/ && \
978                 rm -f session && \
979                 $(LN_S) $(pkgsysconfdir)/session session )
980         ( cd $(DESTDIR)$(systemunitdir)/sockets.target.wants && \
981                 rm -f systemd-initctl.socket systemd-logger.socket systemd-shutdownd.socket && \
982                 $(LN_S) ../systemd-logger.socket systemd-logger.socket && \
983                 $(LN_S) ../systemd-initctl.socket systemd-initctl.socket && \
984                 $(LN_S) ../systemd-shutdownd.socket systemd-shutdownd.socket )
985         ( cd $(DESTDIR)$(systemunitdir)/runlevel1.target.wants && \
986                 rm -f systemd-update-utmp-runlevel.service && \
987                 $(LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
988         ( cd $(DESTDIR)$(systemunitdir)/runlevel2.target.wants && \
989                 rm -f systemd-update-utmp-runlevel.service && \
990                 $(LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
991         ( cd $(DESTDIR)$(systemunitdir)/runlevel3.target.wants && \
992                 rm -f systemd-update-utmp-runlevel.service && \
993                 $(LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
994         ( cd $(DESTDIR)$(systemunitdir)/runlevel4.target.wants && \
995                 rm -f systemd-update-utmp-runlevel.service && \
996                 $(LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
997         ( cd $(DESTDIR)$(systemunitdir)/runlevel5.target.wants && \
998                 rm -f systemd-update-utmp-runlevel.service && \
999                 $(LN_S) ../systemd-update-utmp-runlevel.service systemd-update-utmp-runlevel.service )
1000         ( cd $(DESTDIR)$(systemunitdir)/shutdown.target.wants && \
1001                 rm -f systemd-update-utmp-shutdown.service \
1002                         hwclock-save.service \
1003                         systemd-random-seed-save.service && \
1004                 $(LN_S) ../systemd-update-utmp-shutdown.service systemd-update-utmp-shutdown.service && \
1005                 $(LN_S) ../hwclock-save.service hwclock-save.service && \
1006                 $(LN_S) ../systemd-random-seed-save.service systemd-random-seed-save.service )
1007         ( cd $(DESTDIR)$(systemunitdir)/local-fs.target.wants && \
1008                 rm -f systemd-remount-api-vfs.service \
1009                         remount-rootfs.service \
1010                         var-run.mount \
1011                         var-lock.mount && \
1012                 $(LN_S) ../systemd-remount-api-vfs.service systemd-remount-api-vfs.service && \
1013                 $(LN_S) ../remount-rootfs.service remount-rootfs.service && \
1014                 $(LN_S) ../var-run.mount var-run.mount && \
1015                 $(LN_S) ../var-lock.mount var-lock.mount )
1016         ( cd $(DESTDIR)$(sessionunitdir) && \
1017                 rm -f shutdown.target sockets.target local-fs.target swap.target bluetooth.target printer.target && \
1018                 $(LN_S) $(systemunitdir)/shutdown.target shutdown.target && \
1019                 $(LN_S) $(systemunitdir)/sockets.target sockets.target && \
1020                 $(LN_S) $(systemunitdir)/local-fs.target local-fs.target && \
1021                 $(LN_S) $(systemunitdir)/swap.target swap.target && \
1022                 $(LN_S) $(systemunitdir)/bluetooth.target bluetooth.target && \
1023                 $(LN_S) $(systemunitdir)/printer.target printer.target)
1024         ( cd $(DESTDIR)$(systemunitdir) && \
1025                 rm -f runlevel0.target runlevel1.target runlevel2.target runlevel3.target runlevel4.target runlevel5.target runlevel6.target && \
1026                 $(LN_S) poweroff.target runlevel0.target && \
1027                 $(LN_S) rescue.target runlevel1.target && \
1028                 $(LN_S) multi-user.target runlevel2.target && \
1029                 $(LN_S) multi-user.target runlevel3.target && \
1030                 $(LN_S) multi-user.target runlevel4.target && \
1031                 $(LN_S) graphical.target runlevel5.target && \
1032                 $(LN_S) reboot.target runlevel6.target )
1033         ( cd $(DESTDIR)$(systemunitdir) && \
1034                 rm -f default.target ctrl-alt-del.target && \
1035                 $(LN_S) graphical.target default.target && \
1036                 $(LN_S) reboot.target ctrl-alt-del.target )
1037         ( cd $(DESTDIR)$(systemunitdir)/multi-user.target.wants && \
1038                 rm -f getty.target && \
1039                 $(LN_S) ../getty.target getty.target )
1040         ( cd $(DESTDIR)$(pkgsysconfdir)/system/getty.target.wants && \
1041                 rm -f getty@tty1.service getty@tty2.service getty@tty3.service getty@tty4.service getty@tty5.service getty@tty6.service && \
1042                 $(LN_S) $(systemunitdir)/getty@.service getty@tty1.service && \
1043                 $(LN_S) $(systemunitdir)/getty@.service getty@tty2.service && \
1044                 $(LN_S) $(systemunitdir)/getty@.service getty@tty3.service && \
1045                 $(LN_S) $(systemunitdir)/getty@.service getty@tty4.service && \
1046                 $(LN_S) $(systemunitdir)/getty@.service getty@tty5.service && \
1047                 $(LN_S) $(systemunitdir)/getty@.service getty@tty6.service )
1048         ( cd $(DESTDIR)$(pkgsysconfdir)/system/multi-user.target.wants && \
1049                 rm -f remote-fs.target && \
1050                 $(LN_S) $(systemunitdir)/remote-fs.target remote-fs.target )
1051         ( cd $(DESTDIR)$(systemunitdir)/basic.target.wants && \
1052                 rm -f dev-hugepages.automount \
1053                         dev-mqueue.automount \
1054                         proc-sys-fs-binfmt_misc.automount \
1055                         sys-kernel-debug.automount \
1056                         sys-kernel-security.automount \
1057                         systemd-vconsole-setup.service \
1058                         systemd-modules-load.service \
1059                         systemd-random-seed-load.service \
1060                         systemd-tmpfiles.service \
1061                         sysctl.service \
1062                         tmpwatch.timer \
1063                         tmpwatch.service && \
1064                 $(LN_S) ../dev-hugepages.automount dev-hugepages.automount && \
1065                 $(LN_S) ../dev-mqueue.automount dev-mqueue.automount && \
1066                 $(LN_S) ../proc-sys-fs-binfmt_misc.automount proc-sys-fs-binfmt_misc.automount && \
1067                 $(LN_S) ../sys-kernel-debug.automount sys-kernel-debug.automount && \
1068                 $(LN_S) ../sys-kernel-security.automount sys-kernel-security.automount && \
1069                 $(LN_S) ../systemd-vconsole-setup.service systemd-vconsole-setup.service && \
1070                 $(LN_S) ../systemd-modules-load.service systemd-modules-load.service && \
1071                 $(LN_S) ../systemd-random-seed-load.service systemd-random-seed-load.service && \
1072                 $(LN_S) ../systemd-tmpfiles.service systemd-tmpfiles.service && \
1073                 $(LN_S) ../sysctl.service sysctl.service && \
1074                 $(LN_S) ../tmpwatch.timer tmpwatch.timer && \
1075                 $(LN_S) ../tmpwatch.service tmpwatch.service )
1076         ( cd $(DESTDIR)$(dbussessionservicedir) && \
1077                 rm -f org.freedesktop.systemd1.service && \
1078                 $(LN_S) ../system-services/org.freedesktop.systemd1.service org.freedesktop.systemd1.service )
1079 if TARGET_FEDORA
1080         $(MKDIR_P) -m 0755 \
1081                 $(DESTDIR)$(SYSTEM_SYSVINIT_PATH) \
1082                 $(DESTDIR)$(systemunitdir)/reboot.target.wants \
1083                 $(DESTDIR)$(systemunitdir)/poweroff.target.wants \
1084                 $(DESTDIR)$(systemunitdir)/halt.target.wants \
1085                 $(DESTDIR)$(systemunitdir)/rescue.target.wants \
1086                 $(DESTDIR)$(systemunitdir)/multi-user.target.wants
1087         ( cd $(DESTDIR)$(pkgsysconfdir)/system && \
1088                 rm -f display-manager.service && \
1089                 $(LN_S) $(systemunitdir)/prefdm.service display-manager.service )
1090         ( cd $(DESTDIR)$(pkgsysconfdir)/system/graphical.target.wants && \
1091                 rm -f prefdm.service && \
1092                 $(LN_S) $(systemunitdir)/prefdm.service prefdm.service )
1093         ( cd $(DESTDIR)$(pkgsysconfdir)/system/multi-user.target.wants && \
1094                 rm -f rc-local.service && \
1095                 $(LN_S) $(systemunitdir)/rc-local.service rc-local.service )
1096         ( cd $(DESTDIR)$(systemunitdir)/rescue.target.wants && \
1097                 rm -f single.service && \
1098                 $(LN_S) $(systemunitdir)/single.service single.service )
1099         ( cd $(DESTDIR)$(systemunitdir)/multi-user.target.wants && \
1100                 rm -f plymouth-quit.service && \
1101                 $(LN_S) ../plymouth-quit.service plymouth-quit.service )
1102         ( cd $(DESTDIR)$(systemunitdir)/reboot.target.wants && \
1103                 rm -f plymouth-reboot.service && \
1104                 $(LN_S) ../plymouth-reboot.service plymouth-reboot.service )
1105         ( cd $(DESTDIR)$(systemunitdir)/poweroff.target.wants && \
1106                 rm -f plymouth-poweroff.service && \
1107                 $(LN_S) ../plymouth-poweroff.service plymouth-poweroff.service )
1108         ( cd $(DESTDIR)$(systemunitdir)/halt.target.wants && \
1109                 rm -f plymouth-halt.service && \
1110                 $(LN_S) ../plymouth-halt.service plymouth-halt.service )
1111         ( cd $(DESTDIR)$(systemunitdir) && \
1112                 rm -f local.service && \
1113                 $(LN_S) rc-local.service local.service )
1114         ( cd $(DESTDIR)$(SYSTEM_SYSVINIT_PATH) && \
1115                 $(LN_S) halt reboot > /dev/null 2>&1 || true )
1116 endif
1117 if TARGET_GENTOO
1118         ( cd $(DESTDIR)$(pkgsysconfdir)/system && \
1119                 rm -f display-manager.service && \
1120                 $(LN_S) $(systemunitdir)/xdm.service display-manager.service )
1121         ( cd $(DESTDIR)$(pkgsysconfdir)/system/graphical.target.wants && \
1122                 rm -f xdm.service && \
1123                 $(LN_S) $(systemunitdir)/xdm.service xdm.service )
1124 endif
1125 if TARGET_DEBIAN
1126         $(MKDIR_P) -m 0755 \
1127                 $(DESTDIR)$(systemunitdir)/umount.target.wants
1128         ( cd $(DESTDIR)$(systemunitdir)/umount.target.wants && \
1129                 rm -f umountfs.service umountnfs.service umountroot.service && \
1130                 $(LN_S) ../umountfs.service umountfs.service && \
1131                 $(LN_S) ../umountnfs.service umountnfs.service && \
1132                 $(LN_S) ../umountroot.service umountroot.service )
1133         ( cd $(DESTDIR)$(systemunitdir) && \
1134                 rm -f runlevel5.target && \
1135                 $(LN_S) multi-user.target runlevel5.target )
1136 endif
1137 if !TARGET_SUSE
1138 if !TARGET_DEBIAN
1139         ( cd $(DESTDIR)$(systemunitdir) && \
1140                 rm -f fsck.target && \
1141                 $(LN_S) sysinit.target fsck.target )
1142 endif
1143 endif
1144
1145 DISTCHECK_CONFIGURE_FLAGS = \
1146         --with-dbuspolicydir=$$dc_install_base/$(dbuspolicydir) \
1147         --with-dbussessionservicedir=$$dc_install_base/$(dbussessionservicedir) \
1148         --with-dbussystemservicedir=$$dc_install_base/$(dbussystemservicedir) \
1149         --with-dbusinterfacedir=$$dc_install_base/$(dbusinterfacedir) \
1150         --with-udevrulesdir=$$dc_install_base/$(udevrulesdir) \
1151         --with-pamlibdir=$$dc_install_base/$(pamlibdir) \
1152         --with-rootdir=$$dc_install_base/$(rootdir)
1153
1154 upload: all distcheck
1155         cp -v systemd-$(VERSION).tar.bz2 /home/lennart/git.fedora/systemd/
1156         scp systemd-$(VERSION).tar.bz2 fdo:/srv/www.freedesktop.org/www/software/systemd/
1157         scp man/*.html tango:public/systemd-man/
1158
1159 git-tag:
1160         git tag "v$(VERSION)" -m "systemd $(VERSION)"
1161
1162 # Opt out from a few services on Fedora for now, as long as rc.sysinit does this job
1163 fedora: install
1164         rm /lib/systemd/system/local-fs.target.wants/var-run.mount
1165         rm /lib/systemd/system/local-fs.target.wants/var-lock.mount