summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-25 22:59:38 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-25 22:59:38 (GMT)
commitb4755c79026b6ac0b7f300933e9c022d35fb7460 (patch)
treecbe7890dbd6b25841c8d1e967149e51eff6df263 /Makefile
parenta357f434f06de70e5d670b8669becccb09f4c7a6 (diff)
downloadlz4-b4755c79026b6ac0b7f300933e9c022d35fb7460.zip
lz4-b4755c79026b6ac0b7f300933e9c022d35fb7460.tar.gz
lz4-b4755c79026b6ac0b7f300933e9c022d35fb7460.tar.bz2
Added : arm cross-compilation test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5e6157f..451672b 100644
--- a/Makefile
+++ b/Makefile
@@ -127,15 +127,19 @@ test-travis: $(TRAVIS_TARGET)
cmake:
@cd cmake_unofficial; cmake CMakeLists.txt; $(MAKE)
-gpptest: clean
- export CC=g++; export CFLAGS="-O3 -Wall -Wextra -Wundef -Wshadow -Wcast-align"; $(MAKE) -e all
-
clangtest: clean
export CC=clang; $(MAKE) all
staticAnalyze: clean
export CFLAGS=-g; scan-build -v $(MAKE) all
+gpptest: clean
+ export CC=g++; export CFLAGS="-O3 -Wall -Wextra -Wundef -Wshadow -Wcast-align"; $(MAKE) -e all
+
+armtest: clean
+ export CC=arm-linux-gnueabi-gcc; cd lib; $(MAKE) -e all
+ export CC=arm-linux-gnueabi-gcc; cd programs; $(MAKE) -e bins
+
streaming-examples:
cd examples; $(MAKE) -e test