From c92404d08090a67a019776d5478f4dd615306968 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 18 Jun 2013 03:55:08 +0200 Subject: build: initial attempt to use autotools as the build system With my apologies to Jan for delaying this patch for so long, there are a number of differences between Jan's original patch and what is being merged in this patch; almost all of the changes are due to changes in the underlying code base, but there are a few minor fixes as well. Signed-off-by: Jan Engelhardt Signed-off-by: Paul Moore --- Makefile.am | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..bf0a4ea --- /dev/null +++ b/Makefile.am @@ -0,0 +1,31 @@ +# -*- Makefile -*- + +ACLOCAL_AMFLAGS = -I m4 +SUBDIRS = src tools tests + +pkgconfdir = ${libdir}/pkgconfig +pkgconf_DATA = libseccomp.pc + +nodist_include_HEADERS = include/seccomp.h + +dist_man_MANS = \ + doc/man/man1/scmp_sys_resolver.1 \ + doc/man/man3/seccomp_arch_add.3 \ + doc/man/man3/seccomp_arch_exist.3 \ + doc/man/man3/seccomp_arch_native.3 \ + doc/man/man3/seccomp_arch_remove.3 \ + doc/man/man3/seccomp_attr_get.3 \ + doc/man/man3/seccomp_attr_set.3 \ + doc/man/man3/seccomp_export_bpf.3 \ + doc/man/man3/seccomp_export_pfc.3 \ + doc/man/man3/seccomp_init.3 \ + doc/man/man3/seccomp_load.3 \ + doc/man/man3/seccomp_merge.3 \ + doc/man/man3/seccomp_release.3 \ + doc/man/man3/seccomp_reset.3 \ + doc/man/man3/seccomp_rule_add.3 \ + doc/man/man3/seccomp_rule_add_exact.3 \ + doc/man/man3/seccomp_syscall_priority.3 \ + doc/man/man3/seccomp_syscall_resolve_name.3 \ + doc/man/man3/seccomp_syscall_resolve_name_arch.3 \ + doc/man/man3/seccomp_syscall_resolve_num_arch.3 -- cgit v1.2.1