# -*- Mode: makefile; indent-tabs-mode: t -*- # # This file is part of systemd. # # Copyright 2010-2012 Lennart Poettering # Copyright 2010-2012 Kay Sievers # Copyright 2013 Zbigniew Jędrzejewski-Szmek # Copyright 2013 David Strauss # Copyright 2016 Luke Shumaker # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 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 # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with systemd; If not, see . include $(dir $(lastword $(MAKEFILE_LIST)))/../../../config.mk include $(topsrcdir)/build-aux/Makefile.head.mk noinst_LTLIBRARIES += \ libcore.la libcore_la_SOURCES = \ src/core/unit.c \ src/core/unit.h \ src/core/unit-printf.c \ src/core/unit-printf.h \ src/core/job.c \ src/core/job.h \ src/core/manager.c \ src/core/manager.h \ src/core/transaction.c \ src/core/transaction.h \ src/core/load-fragment.c \ src/core/load-fragment.h \ src/core/service.c \ src/core/service.h \ src/core/socket.c \ src/core/socket.h \ src/core/busname.c \ src/core/busname.h \ src/core/bus-policy.c \ src/core/bus-policy.h \ src/core/target.c \ src/core/target.h \ src/core/device.c \ src/core/device.h \ src/core/mount.c \ src/core/mount.h \ src/core/automount.c \ src/core/automount.h \ src/core/swap.c \ src/core/swap.h \ src/core/timer.c \ src/core/timer.h \ src/core/path.c \ src/core/path.h \ src/core/slice.c \ src/core/slice.h \ src/core/scope.c \ src/core/scope.h \ src/core/load-dropin.c \ src/core/load-dropin.h \ src/core/execute.c \ src/core/execute.h \ src/core/kill.c \ src/core/kill.h \ src/core/dbus.c \ src/core/dbus.h \ src/core/dbus-manager.c \ src/core/dbus-manager.h \ src/core/dbus-unit.c \ src/core/dbus-unit.h \ src/core/dbus-job.c \ src/core/dbus-job.h \ src/core/dbus-service.c \ src/core/dbus-service.h \ src/core/dbus-socket.c \ src/core/dbus-socket.h \ src/core/dbus-busname.c \ src/core/dbus-busname.h \ src/core/dbus-target.c \ src/core/dbus-target.h \ src/core/dbus-device.c \ src/core/dbus-device.h \ src/core/dbus-mount.c \ src/core/dbus-mount.h \ src/core/dbus-automount.c \ src/core/dbus-automount.h \ src/core/dbus-swap.c \ src/core/dbus-swap.h \ src/core/dbus-timer.c \ src/core/dbus-timer.h \ src/core/dbus-path.c \ src/core/dbus-path.h \ src/core/dbus-slice.c \ src/core/dbus-slice.h \ src/core/dbus-scope.c \ src/core/dbus-scope.h \ src/core/dbus-execute.c \ src/core/dbus-execute.h \ src/core/dbus-kill.c \ src/core/dbus-kill.h \ src/core/dbus-cgroup.c \ src/core/dbus-cgroup.h \ src/core/cgroup.c \ src/core/cgroup.h \ src/core/selinux-access.c \ src/core/selinux-access.h \ src/core/selinux-setup.c \ src/core/selinux-setup.h \ src/core/smack-setup.c \ src/core/smack-setup.h \ src/core/ima-setup.c \ src/core/ima-setup.h \ src/core/locale-setup.h \ src/core/locale-setup.c \ src/core/hostname-setup.c \ src/core/hostname-setup.h \ src/core/machine-id-setup.c \ src/core/machine-id-setup.h \ src/core/mount-setup.c \ src/core/mount-setup.h \ src/core/kmod-setup.c \ src/core/kmod-setup.h \ src/core/loopback-setup.h \ src/core/loopback-setup.c \ src/core/namespace.c \ src/core/namespace.h \ src/core/killall.h \ src/core/killall.c \ src/core/audit-fd.c \ src/core/audit-fd.h \ src/core/show-status.c \ src/core/show-status.h \ src/core/failure-action.c \ src/core/failure-action.h nodist_libcore_la_SOURCES = \ src/core/load-fragment-gperf.c \ src/core/load-fragment-gperf-nulstr.c libcore_la_CFLAGS = \ $(AM_CFLAGS) \ $(PAM_CFLAGS) \ $(AUDIT_CFLAGS) \ $(KMOD_CFLAGS) \ $(APPARMOR_CFLAGS) \ $(MOUNT_CFLAGS) \ $(SECCOMP_CFLAGS) libcore_la_LIBADD = \ libshared.la \ $(PAM_LIBS) \ $(AUDIT_LIBS) \ $(KMOD_LIBS) \ $(APPARMOR_LIBS) \ $(MOUNT_LIBS) $(outdir)/load-fragment-gperf-nulstr.c: $(outdir)/load-fragment-gperf.gperf $(AM_V_GEN)$(AWK) 'BEGIN{ keywords=0 ; FS="," ; print "extern const char load_fragment_gperf_nulstr[];" ; print "const char load_fragment_gperf_nulstr[] ="} ; keyword==1 { print "\"" $$1 "\\0\"" } ; /%%/ { keyword=1} ; END { print ";" }' < $< > $@ sd.CPPFLAGS += -I$(topsrcdir)/src/libudev/src sd.CPPFLAGS += -DMOUNT_PATH=\"$(MOUNT_PATH)\" sd.CPPFLAGS += -DUMOUNT_PATH=\"$(UMOUNT_PATH)\" sd.CPPFLAGS += -DSYSTEMD_CGROUP_AGENT_PATH=\"$(libexecdir)/systemd-cgroups-agent\" sd.CPPFLAGS += -DSYSTEMD_BINARY_PATH=\"$(libexecdir)/systemd\" include $(topsrcdir)/build-aux/Makefile.tail.mk