Add basic tests for the lz4 integration

This commit is contained in:
W. Felix Handte
2017-09-28 19:16:43 -04:00
parent 360238733a
commit 5705d9f25a
3 changed files with 29 additions and 0 deletions
+5
View File
@@ -97,6 +97,7 @@ clean:
@$(MAKE) -C examples/ $@ > $(VOID)
@$(MAKE) -C contrib/gen_html $@ > $(VOID)
@$(RM) zstd$(EXT) zstdmt$(EXT) tmp*
@$(RM) -r lz4
@echo Cleaning completed
#------------------------------------------------------------------------------
@@ -274,6 +275,10 @@ gpp6install: apt-add-repo
clang38install:
APT_PACKAGES="clang-3.8" $(MAKE) apt-install
# Ubuntu 14.04 ships a too-old lz4
lz4install:
[ -e lz4 ] || git clone https://github.com/lz4/lz4 && sudo $(MAKE) -C lz4 install
endif