]> git.ipfire.org Git - thirdparty/systemd.git/blame - Makefile.am
device: don't allow definiing additional aliases via SYSTEMD_NAMES
[thirdparty/systemd.git] / Makefile.am
CommitLineData
47be870b
LP
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
18ACLOCAL_AMFLAGS = -I m4
19
036643a2 20pkgsysconfdir=$(sysconfdir)/systemd
e24067c3 21dbuspolicydir=$(sysconfdir)/dbus-1/system.d
5cc5d790 22udevrulesdir=/lib/udev/rules.d
036643a2 23
70fcff31
LP
24systemunitdir=$(pkgdatadir)/system
25sessionunitdir=$(pkgdatadir)/system
26
47be870b
LP
27AM_CPPFLAGS = \
28 -include $(top_builddir)/config.h \
036643a2 29 -DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
70fcff31 30 -DSYSTEM_DATA_UNIT_PATH=\"$(systemunitdir)\" \
0571e011 31 -DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
061978fa 32 -DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
036643a2 33 -DSESSION_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/session\" \
70fcff31 34 -DSESSION_DATA_UNIT_PATH=\"$(sessionunitdir)\" \
8e274523 35 -DCGROUP_AGENT_PATH=\"$(pkglibexecdir)/systemd-cgroups-agent\"
47be870b
LP
36
37sbin_PROGRAMS = \
38 systemd
39
40bin_PROGRAMS = \
41 systemctl \
8e274523
LP
42 systemadm
43
44pkglibexec_PROGRAMS = \
45 systemd-logger \
0b7964b8
LP
46 systemd-cgroups-agent \
47 systemd-initctl
47be870b
LP
48
49noinst_PROGRAMS = \
50 test-engine \
51 test-job-type
52
e24067c3
LP
53dbuspolicy_DATA = \
54 org.freedesktop.systemd1.conf
55
5cc5d790
LP
56udevrules_DATA = \
57 99-systemd.rules
58
70fcff31
LP
59systemunit_DATA = \
60 units/emergency.service \
61 systemd-initctl.service \
62 units/systemd-initctl.socket \
63 systemd-logger.service \
64 units/systemd-logger.socket
65
e24067c3 66EXTRA_DIST = \
70fcff31
LP
67 org.freedesktop.systemd1.conf \
68 99-systemd.rules \
69 units/emergency.service \
70 units/systemd-initctl.service.in \
71 units/systemd-initctl.socket \
72 units/systemd-logger.service.in \
73 units/systemd-logger.socket
e24067c3 74
47be870b
LP
75BASIC_SOURCES= \
76 util.c \
8e274523 77 util.h \
47be870b 78 hashmap.c \
8e274523 79 hashmap.h \
47be870b 80 set.c \
8e274523 81 set.h \
47be870b 82 strv.c \
8e274523 83 strv.h \
47be870b 84 conf-parser.c \
8e274523 85 conf-parser.h \
47be870b 86 socket-util.c \
8e274523 87 socket-util.h \
47be870b 88 log.c \
8e274523
LP
89 log.h \
90 ratelimit.c \
91 ratelimit.h
47be870b
LP
92
93COMMON_SOURCES= \
94 $(BASIC_SOURCES) \
95 unit.c \
8e274523 96 unit.h \
47be870b 97 job.c \
8e274523 98 job.h \
47be870b 99 manager.c \
8e274523 100 manager.h \
47be870b 101 load-fragment.c \
8e274523 102 load-fragment.h \
47be870b 103 service.c \
8e274523 104 service.h \
47be870b 105 automount.c \
8e274523 106 automount.h \
47be870b 107 mount.c \
8e274523 108 mount.h \
47be870b 109 device.c \
8e274523 110 device.h \
47be870b 111 target.c \
8e274523 112 target.h \
47be870b 113 snapshot.c \
8e274523 114 snapshot.h \
47be870b 115 socket.c \
8e274523 116 socket.h \
47be870b 117 timer.c \
8e274523 118 timer.h \
47be870b 119 load-dropin.c \
8e274523 120 load-dropin.h \
47be870b 121 execute.c \
8e274523 122 execute.h \
47be870b 123 dbus.c \
8e274523 124 dbus.h \
47be870b 125 dbus-manager.c \
8e274523 126 dbus-manager.h \
47be870b 127 dbus-unit.c \
8e274523
LP
128 dbus-unit.h \
129 dbus-job.c \
130 dbus-job.h \
4139c1b2
LP
131 dbus-service.c \
132 dbus-service.h \
133 dbus-socket.c \
134 dbus-socket.h \
135 dbus-target.c \
136 dbus-target.h \
137 dbus-mount.c \
138 dbus-mount.h \
139 dbus-automount.c \
140 dbus-autpmount.h \
141 dbus-snapshot.c \
142 dbus-snapshot.h \
143 dbus-device.c \
144 dbus-device.h \
145 dbus-execute.c \
146 dbus-execute.h \
8e274523
LP
147 cgroup.c \
148 cgroup.h \
149 mount-setup.c \
302e8c4c
LP
150 mount-setup.h \
151 hostname-setup.c \
e537352b
LP
152 hostname-setup.h \
153 utmp-wtmp.c \
9e2f7c11
LP
154 utmp-wtmp.h \
155 specifier.c \
156 specifier.h \
157 unit-name.c \
158 unit-name.h
47be870b
LP
159
160systemd_SOURCES = \
161 $(COMMON_SOURCES) \
162 main.c
163
164systemd_CPPFLAGS = \
165 $(AM_CPPFLAGS) \
166 $(DBUS_CFLAGS) \
8e274523
LP
167 $(UDEV_CFLAGS) \
168 $(CGROUP_CFLAGS)
47be870b
LP
169
170systemd_LDADD = \
171 $(DBUS_LIBS) \
8e274523
LP
172 $(UDEV_LIBS) \
173 $(CGROUP_LIBS)
47be870b
LP
174
175test_engine_SOURCES = \
176 $(COMMON_SOURCES) \
177 test-engine.c
178
179test_engine_CPPFLAGS = $(systemd_CPPFLAGS)
180test_engine_LDADD = $(systemd_LDADD)
181
182test_job_type_SOURCES = \
183 $(COMMON_SOURCES) \
184 test-engine.c
185
186test_job_type_CPPFLAGS = $(systemd_CPPFLAGS)
187test_job_type_LDADD = $(systemd_LDADD)
188
189systemd_logger_SOURCES = \
190 $(BASIC_SOURCES) \
191 logger.c
192
0b7964b8
LP
193systemd_initctl_SOURCES = \
194 $(BASIC_SOURCES) \
195 initctl.c
196
197systemd_initctl_CPPFLAGS = \
198 $(AM_CPPFLAGS) \
199 $(DBUS_CFLAGS)
200
201systemd_initctl_LDADD = \
202 $(DBUS_LIBS)
203
8e274523
LP
204systemd_cgroups_agent_SOURCES = \
205 $(BASIC_SOURCES) \
206 cgroups-agent.c
207
208systemd_cgroups_agent_CPPFLAGS = \
209 $(AM_CPPFLAGS) \
210 $(DBUS_CFLAGS)
211
212systemd_cgroups_agent_LDADD = \
213 $(DBUS_LIBS)
214
47be870b
LP
215VALAFLAGS = -g --save-temps --pkg=dbus-glib-1 --pkg=posix --pkg gee-1.0 --pkg gtk+-2.0
216
217systemctl_SOURCES = \
218 systemctl.vala \
219 systemd-interfaces.vala
220
221systemctl_CPPFLAGS = $(AM_CPPFLAGS) $(DBUSGLIB_CFLAGS)
222systemctl_LDADD = $(DBUSGLIB_LIBS)
223
224systemadm_SOURCES = \
225 systemadm.vala \
226 systemd-interfaces.vala
227
228systemadm_CPPFLAGS = $(AM_CPPFLAGS) $(DBUSGLIB_CFLAGS) $(GTK_CFLAGS)
229systemadm_LDADD = $(DBUSGLIB_LIBS) $(GTK_LIBS)
c1e1601e 230
70fcff31
LP
231systemd-initctl.service: units/systemd-initctl.service.in Makefile
232 sed -e 's,@libexecdir\@,$(libexecdir),g' < $< > $@
233
234systemd-logger.service: units/systemd-logger.service.in Makefile
235 sed -e 's,@libexecdir\@,$(libexecdir),g' < $< > $@
236
c1e1601e
LP
237CLEANFILES = \
238 systemd-interfaces.c \
239 systemctl.c \
8e274523 240 systemadm.c \
70fcff31
LP
241 systemd-initctl.service \
242 systemd-logger.service