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