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:
Martin Storsjö 2015-04-17 15:56:56 +03:00
parent 8368f66afe
commit 0e99473a46

View File

@ -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)