diff options
-rw-r--r-- | Makefile.in | 10 | ||||
-rwxr-xr-x | autogen.sh | 7 | ||||
-rw-r--r-- | configure.ac | 12 |
3 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..c617486 --- /dev/null +++ b/Makefile.in @@ -0,0 +1,10 @@ +CC = @CC@ +WARNINGS_FLAGS = -Wall -Wextra + +all: python-wrapper + +python-wrapper: config.h python-wrapper.c + $(CC) $(CPPFLAGS) $(CFLAGS) $(WARNINGS_FLAGS) $(ASFLAGS) $(LDFLAGS) -o $@ $< + +clean: + rm -fr config.h config.h.in config.log config.status configure Makefile python-wrapper diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..b7ee211 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +"${AUTOHEADER:-autoheader}" || exit 1 +"${AUTOCONF:-autoconf}" || exit 1 + +# Remove Autoconf cache. +rm -fr autom4te.cache diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..8aaf1b8 --- /dev/null +++ b/configure.ac @@ -0,0 +1,12 @@ +AC_INIT([eselect-python], [20090920]) + +AC_PROG_CC + +# strndup() was introduced in POSIX.1-2008. +AC_CHECK_FUNCS([strndup]) + +# Create output files. +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_FILES([Makefile]) + +AC_OUTPUT |