defs.mk: Indentation beautification

This commit is contained in:
Jan Lindemann 2009-05-22 14:33:20 +00:00 committed by Jan Lindemann
commit 00cc2274fa

View file

@ -90,12 +90,12 @@ export REENTRANT
USE_CFG_XXX_MK ?= true USE_CFG_XXX_MK ?= true
ifeq ($(USE_CFG_XXX_MK),true) ifeq ($(USE_CFG_XXX_MK),true)
ifeq ($(DEVELOPMENT),true) ifeq ($(DEVELOPMENT),true)
-include $(MODDIR)/make/defs-dev.mk -include $(MODDIR)/make/defs-dev.mk
ifneq ($(wildcard $(TOPDIR)/make/cfg_dev.mk),) ifneq ($(wildcard $(TOPDIR)/make/cfg_dev.mk),)
-include $(TOPDIR)/make/cfg_dev.mk -include $(TOPDIR)/make/cfg_dev.mk
endif endif
else else
-include $(MODDIR)/make/defs-dist.mk -include $(MODDIR)/make/defs-dist.mk
ifneq ($(wildcard $(TOPDIR)/make/cfg_dist.mk),) ifneq ($(wildcard $(TOPDIR)/make/cfg_dist.mk),)
-include $(TOPDIR)/make/cfg_dist.mk -include $(TOPDIR)/make/cfg_dist.mk
endif endif