Systemd/Makefile.am

189 lines
4.0 KiB
Makefile
Raw Normal View History

2010-02-03 14:21:48 +01: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 01:07:02 +01:00
pkgsysconfdir=$(sysconfdir)/systemd
2010-02-03 14:21:48 +01:00
AM_CPPFLAGS = \
-include $(top_builddir)/config.h \
2010-02-13 01:07:02 +01:00
-DSYSTEM_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/system\" \
-DSYSTEM_DATA_UNIT_PATH=\"$(pkgdatadir)/system\" \
-DSYSTEM_SYSVINIT_PATH=\"$(SYSTEM_SYSVINIT_PATH)\" \
-DSYSTEM_SYSVRCND_PATH=\"$(SYSTEM_SYSVRCND_PATH)\" \
2010-02-13 01:07:02 +01:00
-DSESSION_CONFIG_UNIT_PATH=\"$(pkgsysconfdir)/session\" \
2010-03-31 16:29:55 +02:00
-DSESSION_DATA_UNIT_PATH=\"$(pkgdatadir)/session\" \
-DCGROUP_AGENT_PATH=\"$(pkglibexecdir)/systemd-cgroups-agent\"
2010-02-03 14:21:48 +01:00
sbin_PROGRAMS = \
systemd
bin_PROGRAMS = \
systemctl \
2010-03-31 16:29:55 +02:00
systemadm
pkglibexec_PROGRAMS = \
systemd-logger \
systemd-cgroups-agent \
systemd-initctl
2010-02-03 14:21:48 +01:00
noinst_PROGRAMS = \
test-engine \
test-job-type
BASIC_SOURCES= \
util.c \
2010-03-31 16:29:55 +02:00
util.h \
2010-02-03 14:21:48 +01:00
hashmap.c \
2010-03-31 16:29:55 +02:00
hashmap.h \
2010-02-03 14:21:48 +01:00
set.c \
2010-03-31 16:29:55 +02:00
set.h \
2010-02-03 14:21:48 +01:00
strv.c \
2010-03-31 16:29:55 +02:00
strv.h \
2010-02-03 14:21:48 +01:00
conf-parser.c \
2010-03-31 16:29:55 +02:00
conf-parser.h \
2010-02-03 14:21:48 +01:00
socket-util.c \
2010-03-31 16:29:55 +02:00
socket-util.h \
2010-02-03 14:21:48 +01:00
log.c \
2010-03-31 16:29:55 +02:00
log.h \
ratelimit.c \
ratelimit.h
2010-02-03 14:21:48 +01:00
COMMON_SOURCES= \
$(BASIC_SOURCES) \
unit.c \
2010-03-31 16:29:55 +02:00
unit.h \
2010-02-03 14:21:48 +01:00
job.c \
2010-03-31 16:29:55 +02:00
job.h \
2010-02-03 14:21:48 +01:00
manager.c \
2010-03-31 16:29:55 +02:00
manager.h \
2010-02-03 14:21:48 +01:00
load-fragment.c \
2010-03-31 16:29:55 +02:00
load-fragment.h \
2010-02-03 14:21:48 +01:00
service.c \
2010-03-31 16:29:55 +02:00
service.h \
2010-02-03 14:21:48 +01:00
automount.c \
2010-03-31 16:29:55 +02:00
automount.h \
2010-02-03 14:21:48 +01:00
mount.c \
2010-03-31 16:29:55 +02:00
mount.h \
2010-02-03 14:21:48 +01:00
device.c \
2010-03-31 16:29:55 +02:00
device.h \
2010-02-03 14:21:48 +01:00
target.c \
2010-03-31 16:29:55 +02:00
target.h \
2010-02-03 14:21:48 +01:00
snapshot.c \
2010-03-31 16:29:55 +02:00
snapshot.h \
2010-02-03 14:21:48 +01:00
socket.c \
2010-03-31 16:29:55 +02:00
socket.h \
2010-02-03 14:21:48 +01:00
timer.c \
2010-03-31 16:29:55 +02:00
timer.h \
2010-02-03 14:21:48 +01:00
load-dropin.c \
2010-03-31 16:29:55 +02:00
load-dropin.h \
2010-02-03 14:21:48 +01:00
execute.c \
2010-03-31 16:29:55 +02:00
execute.h \
2010-02-03 14:21:48 +01:00
dbus.c \
2010-03-31 16:29:55 +02:00
dbus.h \
2010-02-03 14:21:48 +01:00
dbus-manager.c \
2010-03-31 16:29:55 +02:00
dbus-manager.h \
2010-02-03 14:21:48 +01:00
dbus-unit.c \
2010-03-31 16:29:55 +02:00
dbus-unit.h \
dbus-job.c \
dbus-job.h \
cgroup.c \
cgroup.h \
mount-setup.c \
mount-setup.h \
hostname-setup.c \
hostname-setup.h \
utmp-wtmp.c \
utmp-wtmp.h
2010-02-03 14:21:48 +01:00
systemd_SOURCES = \
$(COMMON_SOURCES) \
main.c
systemd_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(DBUS_CFLAGS) \
2010-03-31 16:29:55 +02:00
$(UDEV_CFLAGS) \
$(CGROUP_CFLAGS)
2010-02-03 14:21:48 +01:00
systemd_LDADD = \
$(DBUS_LIBS) \
2010-03-31 16:29:55 +02:00
$(UDEV_LIBS) \
$(CGROUP_LIBS)
2010-02-03 14:21:48 +01: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
systemd_initctl_SOURCES = \
$(BASIC_SOURCES) \
initctl.c
systemd_initctl_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(DBUS_CFLAGS)
systemd_initctl_LDADD = \
$(DBUS_LIBS)
2010-03-31 16:29:55 +02: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 14:21:48 +01: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)
CLEANFILES = \
systemd-interfaces.c \
systemctl.c \
2010-03-31 16:29:55 +02:00
systemadm.c \
systemd-cgroups-agent