SHA256
1
0
forked from pool/lz4
lz4/lz4-automake.diff

30 lines
725 B
Diff
Raw Normal View History

---
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 lz4hc.c lz4hc.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])
+AC_PROG_CC
+AM_PROG_CC_C_O
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT