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-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\" \
-DSYSTEM_DATA_UNIT_PATH= \" $( pkgdatadir) /system\" \
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-03-31 18:29:55 +04:00
-DSESSION_DATA_UNIT_PATH= \" $( pkgdatadir) /session\" \
-DCGROUP_AGENT_PATH= \" $( pkglibexecdir) /systemd-cgroups-agent\"
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 \
test-job-type
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 \
cgroup.c \
cgroup.h \
mount-setup.c \
2010-04-10 07:00:38 +04:00
mount-setup.h \
hostname-setup.c \
hostname-setup.h
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)
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
CLEANFILES = \
systemd-interfaces.c \
systemctl.c \
2010-03-31 18:29:55 +04:00
systemadm.c \
systemd-cgroups-agent