summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2014-04-23 16:34:22 -0400
committerPaul Moore <pmoore@redhat.com>2014-05-01 14:15:02 -0400
commit54a87cb7b04049fc2f61238446e8625898e35eb7 (patch)
treee6abd06cb259f2c3a8fb3ec760f1dfcd6994f051 /tools
parent1f4013fe223960231f614431eef13b82c75f85d6 (diff)
downloadlibseccomp-54a87cb7b04049fc2f61238446e8625898e35eb7.tar.gz
build: add headers to all of the autotools files
There are also some minor cosmetic tweaks to the files. Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am30
1 files changed, 25 insertions, 5 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 8109ce4..a88df73 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -1,13 +1,33 @@
-# -*- Makefile -*-
+####
+# Seccomp Library Utility Tools
+#
+
+#
+# This library is free software; you can redistribute it and/or modify it
+# under the terms of version 2.1 of the GNU Lesser General Public License
+# as published by the Free Software Foundation.
+#
+# This library 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 this library; if not, see <http://www.gnu.org/licenses>.
+#
noinst_LTLIBRARIES = util.la
util_la_SOURCES = util.c util.h
util_la_LDFLAGS = -module
-bin_PROGRAMS = scmp_sys_resolver
-noinst_PROGRAMS = scmp_arch_detect scmp_bpf_disasm scmp_bpf_sim
+bin_PROGRAMS = \
+ scmp_sys_resolver
+noinst_PROGRAMS = \
+ scmp_arch_detect \
+ scmp_bpf_disasm \
+ scmp_bpf_sim
-scmp_sys_resolver_LDADD = ../src/libseccomp-internal.la
-scmp_arch_detect_LDADD = ../src/libseccomp-internal.la
+scmp_sys_resolver_LDADD = ../src/libseccomp-internal.la
+scmp_arch_detect_LDADD = ../src/libseccomp-internal.la
scmp_bpf_disasm_LDADD = util.la
scmp_bpf_sim_LDADD = util.la