2012-03-18 19:08:42 +01:00
|
|
|
---
|
|
|
|
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
|
2012-09-01 13:25:18 +02:00
|
|
|
+lz4_SOURCES = lz4.c lz4.h lz4hc.c lz4hc.h bench.c lz4demo.c
|
2012-03-18 19:08:42 +01:00
|
|
|
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
|