mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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:
parent
efab865b07
commit
70c000c905
1 changed files with 6 additions and 1 deletions
7
makefile
7
makefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue