Reorder ifeq/ifneq for a long if statement
By having the very short clause first, it is easier to see what it belongs to.
This commit is contained in:
parent
8368f66afe
commit
0e99473a46
8
Makefile
8
Makefile
@ -270,7 +270,10 @@ endif
|
||||
install: install-static-lib install-shared
|
||||
@:
|
||||
|
||||
ifeq ($(HAVE_GTEST),Yes)
|
||||
ifneq ($(HAVE_GTEST),Yes)
|
||||
binaries:
|
||||
@:
|
||||
else
|
||||
include $(SRC_PATH)build/gtest-targets.mk
|
||||
include $(SRC_PATH)test/api/targets.mk
|
||||
include $(SRC_PATH)test/decoder/targets.mk
|
||||
@ -325,9 +328,6 @@ endif
|
||||
endif
|
||||
endif
|
||||
|
||||
else
|
||||
binaries:
|
||||
@:
|
||||
endif
|
||||
|
||||
-include $(OBJS:.$(OBJ)=.d)
|
||||
|
Loading…
x
Reference in New Issue
Block a user