Makefile: add NO_UTEST
Add NO_UTEST to allow the user to disable building utest Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
This commit is contained in:
parent
b1f2ef5e0b
commit
f908750db9
2
Makefile
2
Makefile
|
@ -168,9 +168,11 @@ ifndef NO_FBLAS
|
||||||
$(MAKE) -C test all
|
$(MAKE) -C test all
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
ifneq ($(NO_UTEST), 1)
|
||||||
ifneq ($(ONLY_CBLAS), 1)
|
ifneq ($(ONLY_CBLAS), 1)
|
||||||
$(MAKE) -C utest all
|
$(MAKE) -C utest all
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
ifneq ($(NO_CBLAS), 1)
|
ifneq ($(NO_CBLAS), 1)
|
||||||
ifneq ($(ONLY_CBLAS), 1)
|
ifneq ($(ONLY_CBLAS), 1)
|
||||||
$(MAKE) -C ctest all
|
$(MAKE) -C ctest all
|
||||||
|
|
Loading…
Reference in New Issue