ssrf: add "make check" to central makefile

extend ssrf/makefile with "make check" option.

This is just a convinience function, to not need to "cd build" first

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2018-07-05 22:41:22 +02:00 committed by Dirk Hohndel
parent efab865b07
commit 70c000c905

View file

@ -19,4 +19,9 @@ desktop:
cd build; LIBRARY_PATH=../install_root/lib make
cd build; LIBRARY_PATH=../install_root/lib make install
all: desktop mobile
check:
if test ! -d build; then (echo "error: please run build.sh before make"; exit -1;); fi
cd build; LIBRARY_PATH=../install_root/lib make check
all: desktop mobile check