summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorCyan4973 <yann.collet.73@gmail.com>2014-04-22 22:45:28 (GMT)
committerCyan4973 <yann.collet.73@gmail.com>2014-04-22 22:45:28 (GMT)
commitdac2a0946d854e1fcb9547b3cc40db835432cece (patch)
treeff6f5c293ee4c61cda64b1f36a8549743db3b8c2 /Makefile
parent37be46701a21e554fff47f97b549fb473f6a2904 (diff)
parent30a41b5b91b4f4caf8d65b979de5199c9ddcccf5 (diff)
downloadlz4-dac2a0946d854e1fcb9547b3cc40db835432cece.zip
lz4-dac2a0946d854e1fcb9547b3cc40db835432cece.tar.gz
lz4-dac2a0946d854e1fcb9547b3cc40db835432cece.tar.bz2
Merge pull request #3 from Cyan4973/betar117
Beta
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4ceacb9..e5797c7 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@
# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
# ################################################################
-export RELEASE=r116
+export RELEASE=r117
LIBVER_MAJOR=1
LIBVER_MINOR=0
LIBVER_PATCH=0
@@ -69,13 +69,14 @@ else
endif
TEXT = lz4.c lz4.h lz4hc.c lz4hc.h \
- lz4_format_description.txt Makefile NEWS LICENSE \
+ lz4_format_description.txt Makefile NEWS LICENSE README.md \
cmake_unofficial/CMakeLists.txt \
$(PRGDIR)/fullbench.c $(PRGDIR)/fuzzer.c $(PRGDIR)/lz4cli.c \
$(PRGDIR)/lz4io.c $(PRGDIR)/lz4io.h \
$(PRGDIR)/bench.c $(PRGDIR)/bench.h \
$(PRGDIR)/xxhash.c $(PRGDIR)/xxhash.h \
- $(PRGDIR)/lz4.1 $(PRGDIR)/Makefile $(PRGDIR)/COPYING
+ $(PRGDIR)/lz4.1 $(PRGDIR)/lz4c.1 $(PRGDIR)/lz4cat.1 \
+ $(PRGDIR)/Makefile $(PRGDIR)/COPYING
NONTEXT = LZ4_Streaming_Format.odt
SOURCES = $(TEXT) $(NONTEXT)
@@ -144,4 +145,7 @@ dist: clean
@sha1sum $(DISTRIBNAME) > $(DISTRIBNAME).sha1
@echo Distribution $(DISTRIBNAME) built
+test: lz4programs
+ @cd $(PRGDIR); $(MAKE) -e $@
+
endif