summaryrefslogtreecommitdiff
path: root/src/systemd-initctl/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-12 18:21:15 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-12 18:21:15 -0400
commitf0d6fb6fa9e817539e960b1ce70bd4f367646875 (patch)
treeb3915a1852701a2eac8264779efdce78eba82a29 /src/systemd-initctl/Makefile
parenta80aa6326ff560353b22dcbf2f7f15e6b8d31da9 (diff)
parent5a3abd0ec73e53f17f378e6ae7471d47fd279f11 (diff)
Merge branch 'lukeshu/postmove' into lukeshu/master
Diffstat (limited to 'src/systemd-initctl/Makefile')
-rw-r--r--src/systemd-initctl/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/systemd-initctl/Makefile b/src/systemd-initctl/Makefile
new file mode 100644
index 0000000000..66f3e72aa5
--- /dev/null
+++ b/src/systemd-initctl/Makefile
@@ -0,0 +1,36 @@
+# -*- 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 <http://www.gnu.org/licenses/>.
+include $(dir $(lastword $(MAKEFILE_LIST)))/../../config.mk
+include $(topsrcdir)/build-aux/Makefile.head.mk
+
+libexec_PROGRAMS += systemd-initctl
+systemd_initctl_SOURCES = \
+ src/initctl/initctl.c
+
+systemd_initctl_LDADD = \
+ libshared.la
+
+libexec_PROGRAMS += systemd-initctl
+systemd.CPPFLAGS += -I$(topsrcdir)/src/libsystemd/libsystemd-internal/sd-bus
+
+include $(topsrcdir)/build-aux/Makefile.tail.mk