defs.mk: Add support for pre-local.mk (not sure if this should be kept)

This commit is contained in:
Jan Lindemann 2007-07-27 12:37:52 +00:00 committed by Jan Lindemann
commit 8d6388d574

View file

@ -2,6 +2,20 @@
# contact@jannet.de
# $Id$
# ----- pre-local.mk
ifneq ($(wildcard $(MODDIR)/make/pre-local.mk),)
include $(MODDIR)/make/pre-local.mk
endif
ifneq ($(wildcard $(TOPDIR)/make/pre-local.mk),)
include $(TOPDIR)/make/pre-local.mk
endif
ifneq ($(wildcard pre-local.mk),)
include pre-local.mk
endif
# ----- standard variables
PROJECT ?= $(shell (cd $(TOPDIR); basename `pwd`))