2010-02-03 16:21:48 +03:00
# This file is part of systemd.
#
# Copyright 2010 Lennart Poettering
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
ACLOCAL_AMFLAGS = -I m4
2010-02-13 03:07:02 +03:00
pkgsysconfdir = $( sysconfdir) /systemd
2010-04-10 20:51:07 +04:00
dbuspolicydir = $( sysconfdir) /dbus-1/system.d
2010-04-10 21:18:21 +04:00
udevrulesdir = /lib/udev/rules.d
2010-02-13 03:07:02 +03:00
2010-04-13 07:18:12 +04:00
systemunitdir = $( pkgdatadir) /system
sessionunitdir = $( pkgdatadir) /system
2010-02-03 16:21:48 +03:00
AM_CPPFLAGS = \
-include $( top_builddir) /config.h \
2010-02-13 03:07:02 +03:00
-DSYSTEM_CONFIG_UNIT_PATH= \" $( pkgsysconfdir) /system\" \
2010-04-13 07:18:12 +04:00
-DSYSTEM_DATA_UNIT_PATH= \" $( systemunitdir) \" \
2010-04-07 17:35:01 +04:00
-DSYSTEM_SYSVINIT_PATH= \" $( SYSTEM_SYSVINIT_PATH) \" \
2010-04-07 17:39:28 +04:00
-DSYSTEM_SYSVRCND_PATH= \" $( SYSTEM_SYSVRCND_PATH) \" \
2010-02-13 03:07:02 +03:00
-DSESSION_CONFIG_UNIT_PATH= \" $( pkgsysconfdir) /session\" \
2010-04-13 07:18:12 +04:00
-DSESSION_DATA_UNIT_PATH= \" $( sessionunitdir) \" \
2010-04-21 05:27:44 +04:00
-DCGROUP_AGENT_PATH= \" $( pkglibexecdir) /systemd-cgroups-agent\" \
-DSYSTEMD_BINARY_PATH= \" $( sbindir) /systemd\"
# -DSYSTEMD_BINARY_PATH=\"/home/lennart/projects/systemd/systemd\"
2010-02-03 16:21:48 +03:00
sbin_PROGRAMS = \
systemd
bin_PROGRAMS = \
systemctl \
2010-03-31 18:29:55 +04:00
systemadm
pkglibexec_PROGRAMS = \
systemd-logger \
2010-04-05 00:53:42 +04:00
systemd-cgroups-agent \
systemd-initctl
2010-02-03 16:21:48 +03:00
noinst_PROGRAMS = \
test-engine \
2010-04-22 00:15:06 +04:00
test-job-type \
test-ns
2010-02-03 16:21:48 +03:00
2010-04-10 20:51:07 +04:00
dbuspolicy_DATA = \
org.freedesktop.systemd1.conf
2010-04-10 21:18:21 +04:00
udevrules_DATA = \
99-systemd.rules
2010-04-13 07:18:12 +04:00
systemunit_DATA = \
units/emergency.service \
systemd-initctl.service \
units/systemd-initctl.socket \
systemd-logger.service \
units/systemd-logger.socket
2010-04-10 20:51:07 +04:00
EXTRA_DIST = \
2010-04-13 07:18:12 +04:00
org.freedesktop.systemd1.conf \
99-systemd.rules \
units/emergency.service \
units/systemd-initctl.service.in \
units/systemd-initctl.socket \
units/systemd-logger.service.in \
units/systemd-logger.socket
2010-04-10 20:51:07 +04:00
2010-02-03 16:21:48 +03:00
BASIC_SOURCES = \
util.c \
2010-03-31 18:29:55 +04:00
util.h \
2010-02-03 16:21:48 +03:00
hashmap.c \
2010-03-31 18:29:55 +04:00
hashmap.h \
2010-02-03 16:21:48 +03:00
set.c \
2010-03-31 18:29:55 +04:00
set.h \
2010-02-03 16:21:48 +03:00
strv.c \
2010-03-31 18:29:55 +04:00
strv.h \
2010-02-03 16:21:48 +03:00
conf-parser.c \
2010-03-31 18:29:55 +04:00
conf-parser.h \
2010-02-03 16:21:48 +03:00
socket-util.c \
2010-03-31 18:29:55 +04:00
socket-util.h \
2010-02-03 16:21:48 +03:00
log.c \
2010-03-31 18:29:55 +04:00
log.h \
ratelimit.c \
ratelimit.h
2010-02-03 16:21:48 +03:00
COMMON_SOURCES = \
$( BASIC_SOURCES) \
unit.c \
2010-03-31 18:29:55 +04:00
unit.h \
2010-02-03 16:21:48 +03:00
job.c \
2010-03-31 18:29:55 +04:00
job.h \
2010-02-03 16:21:48 +03:00
manager.c \
2010-03-31 18:29:55 +04:00
manager.h \
2010-02-03 16:21:48 +03:00
load-fragment.c \
2010-03-31 18:29:55 +04:00
load-fragment.h \
2010-02-03 16:21:48 +03:00
service.c \
2010-03-31 18:29:55 +04:00
service.h \
2010-02-03 16:21:48 +03:00
automount.c \
2010-03-31 18:29:55 +04:00
automount.h \
2010-02-03 16:21:48 +03:00
mount.c \
2010-03-31 18:29:55 +04:00
mount.h \
2010-02-03 16:21:48 +03:00
device.c \
2010-03-31 18:29:55 +04:00
device.h \
2010-02-03 16:21:48 +03:00
target.c \
2010-03-31 18:29:55 +04:00
target.h \
2010-02-03 16:21:48 +03:00
snapshot.c \
2010-03-31 18:29:55 +04:00
snapshot.h \
2010-02-03 16:21:48 +03:00
socket.c \
2010-03-31 18:29:55 +04:00
socket.h \
2010-02-03 16:21:48 +03:00
timer.c \
2010-03-31 18:29:55 +04:00
timer.h \
2010-02-03 16:21:48 +03:00
load-dropin.c \
2010-03-31 18:29:55 +04:00
load-dropin.h \
2010-02-03 16:21:48 +03:00
execute.c \
2010-03-31 18:29:55 +04:00
execute.h \
2010-02-03 16:21:48 +03:00
dbus.c \
2010-03-31 18:29:55 +04:00
dbus.h \
2010-02-03 16:21:48 +03:00
dbus-manager.c \
2010-03-31 18:29:55 +04:00
dbus-manager.h \
2010-02-03 16:21:48 +03:00
dbus-unit.c \
2010-03-31 18:29:55 +04:00
dbus-unit.h \
dbus-job.c \
dbus-job.h \
2010-04-18 05:08:16 +04:00
dbus-service.c \
dbus-service.h \
dbus-socket.c \
dbus-socket.h \
dbus-target.c \
dbus-target.h \
dbus-mount.c \
dbus-mount.h \
dbus-automount.c \
dbus-autpmount.h \
dbus-snapshot.c \
dbus-snapshot.h \
dbus-device.c \
dbus-device.h \
dbus-execute.c \
dbus-execute.h \
2010-03-31 18:29:55 +04:00
cgroup.c \
cgroup.h \
mount-setup.c \
2010-04-10 07:00:38 +04:00
mount-setup.h \
hostname-setup.c \
2010-04-10 19:53:17 +04:00
hostname-setup.h \
utmp-wtmp.c \
2010-04-15 05:11:11 +04:00
utmp-wtmp.h \
specifier.c \
specifier.h \
unit-name.c \
2010-04-21 05:27:44 +04:00
unit-name.h \
fdset.c \
2010-04-22 00:15:06 +04:00
fdset.h \
namespace.h \
namespace.c
2010-02-03 16:21:48 +03:00
systemd_SOURCES = \
$( COMMON_SOURCES) \
main.c
systemd_CPPFLAGS = \
$( AM_CPPFLAGS) \
$( DBUS_CFLAGS) \
2010-03-31 18:29:55 +04:00
$( UDEV_CFLAGS) \
$( CGROUP_CFLAGS)
2010-02-03 16:21:48 +03:00
systemd_LDADD = \
$( DBUS_LIBS) \
2010-03-31 18:29:55 +04:00
$( UDEV_LIBS) \
$( CGROUP_LIBS)
2010-02-03 16:21:48 +03:00
test_engine_SOURCES = \
$( COMMON_SOURCES) \
test-engine.c
test_engine_CPPFLAGS = $( systemd_CPPFLAGS)
test_engine_LDADD = $( systemd_LDADD)
test_job_type_SOURCES = \
$( COMMON_SOURCES) \
test-engine.c
test_job_type_CPPFLAGS = $( systemd_CPPFLAGS)
test_job_type_LDADD = $( systemd_LDADD)
2010-04-22 00:15:06 +04:00
test_ns_SOURCES = \
$( BASIC_SOURCES) \
test-ns.c \
namespace.c
test_ns_CPPFLAGS = $( systemd_CPPFLAGS)
test_ns_LDADD = $( systemd_LDADD)
2010-02-03 16:21:48 +03:00
systemd_logger_SOURCES = \
$( BASIC_SOURCES) \
logger.c
2010-04-05 00:53:42 +04:00
systemd_initctl_SOURCES = \
$( BASIC_SOURCES) \
initctl.c
systemd_initctl_CPPFLAGS = \
$( AM_CPPFLAGS) \
$( DBUS_CFLAGS)
systemd_initctl_LDADD = \
$( DBUS_LIBS)
2010-03-31 18:29:55 +04:00
systemd_cgroups_agent_SOURCES = \
$( BASIC_SOURCES) \
cgroups-agent.c
systemd_cgroups_agent_CPPFLAGS = \
$( AM_CPPFLAGS) \
$( DBUS_CFLAGS)
systemd_cgroups_agent_LDADD = \
$( DBUS_LIBS)
2010-02-03 16:21:48 +03:00
VALAFLAGS = -g --save-temps --pkg= dbus-glib-1 --pkg= posix --pkg gee-1.0 --pkg gtk+-2.0
systemctl_SOURCES = \
systemctl.vala \
systemd-interfaces.vala
systemctl_CPPFLAGS = $( AM_CPPFLAGS) $( DBUSGLIB_CFLAGS)
systemctl_LDADD = $( DBUSGLIB_LIBS)
systemadm_SOURCES = \
systemadm.vala \
systemd-interfaces.vala
systemadm_CPPFLAGS = $( AM_CPPFLAGS) $( DBUSGLIB_CFLAGS) $( GTK_CFLAGS)
systemadm_LDADD = $( DBUSGLIB_LIBS) $( GTK_LIBS)
2010-02-05 02:38:41 +03:00
2010-04-13 07:18:12 +04:00
systemd-initctl.service : units /systemd -initctl .service .in Makefile
2010-04-24 00:18:55 +04:00
sed -e 's,@libexecdir\@,$(libexecdir),g' \
-e 's,@pkglibexecdir\@,$(pkglibexecdir),g' \
< $< > $@
2010-04-13 07:18:12 +04:00
systemd-logger.service : units /systemd -logger .service .in Makefile
2010-04-24 00:18:55 +04:00
sed -e 's,@libexecdir\@,$(libexecdir),g' \
-e 's,@pkglibexecdir\@,$(pkglibexecdir),g' \
< $< > $@
2010-04-13 07:18:12 +04:00
2010-02-05 02:38:41 +03:00
CLEANFILES = \
systemd-interfaces.c \
systemctl.c \
2010-03-31 18:29:55 +04:00
systemadm.c \
2010-04-13 07:18:12 +04:00
systemd-initctl.service \
systemd-logger.service