From 0b218869c22668c4473482070b004b5d04291cec Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Wed, 22 May 2013 16:21:08 -0700 Subject: It's revision control time! --- Makefile.am | 1 + configure.ac | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 Makefile.am create mode 100644 configure.ac diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..af437a6 --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = src diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..edf56e6 --- /dev/null +++ b/configure.ac @@ -0,0 +1,14 @@ +AC_INIT([iptest], [0.1], [daniil@baturin.org]) + +AC_PROG_CC + +#AC_CHECK_HEADER(unistd.h) +AC_CHECK_HEADER(libcidr.h) + +AM_INIT_AUTOMAKE([gnu no-dist-gzip dist-bzip2 subdir-objects]) +AC_PREFIX_DEFAULT([/usr]) + +AC_CONFIG_FILES([Makefile src/Makefile]) +AC_CONFIG_HEADERS([src/config.h]) + +AC_OUTPUT -- cgit v1.2.3