--- Makefile.am | 6 ++++++ configure.ac | 8 ++++++++ 2 files changed, 14 insertions(+) Index: lz4/Makefile.am =================================================================== --- /dev/null +++ lz4/Makefile.am @@ -0,0 +1,6 @@ +# -*- Makefile -*- + +AM_CFLAGS = -Wall -std=c99 + +bin_PROGRAMS = lz4 +lz4_SOURCES = lz4.c lz4.h bench.c lz4demo.c Index: lz4/configure.ac =================================================================== --- /dev/null +++ lz4/configure.ac @@ -0,0 +1,8 @@ +AC_INIT([lz4], [0]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_HEADERS([config.h]) +AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax no-dist-gzip dist-xz]) +AC_PROG_CC +AM_PROG_CC_C_O +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT