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