aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2017-08-19 14:57:01 +0300
committerSergey Poznyakoff <gray@gnu.org>2017-08-19 17:15:58 +0300
commit511f9c9765eb2a9992ea4470703ebcd96faca52b (patch)
treee0414383c4bc9cc9a95f5f32aae6fd2e8557e204 /configure.ac
parentead370a83f981ccf3d288dbe222fd362ec801f79 (diff)
downloadruncap-511f9c9765eb2a9992ea4470703ebcd96faca52b.tar.gz
runcap-511f9c9765eb2a9992ea4470703ebcd96faca52b.tar.bz2
Switch to autotools
* .gitignore: Update. * Makefile: Remove. * Make.am: New file. * install.am: New file. * shared.am: New file. * static.am: New file. * configure.ac: New file. * runcap.m4: New file. * t/Makefile: Remove. * t/Makefile.am: New file. * t/testsuite: Don't use relative directory addressing.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..365a128
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,15 @@
+AC_PREREQ(2.63)
+AC_INIT([libruncap], [1.0], [gray+runcap@gnu.org.ua])
+AC_CONFIG_SRCDIR([runcap.c])
+AM_INIT_AUTOMAKE([1.11 foreign tar-ustar silent-rules])
+
+# Enable silent rules by default:
+AM_SILENT_RULES([yes])
+
+# Checks for programs.
+AC_PROG_CC
+
+RUNCAP_SETUP([.],[install])
+
+# Generate files
+AC_OUTPUT

Return to:

Send suggestions and report system problems to the System administrator.