mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
defs.mk: Add support for pre-local.mk (not sure if this should be kept)
This commit is contained in:
parent
794f00a907
commit
8d6388d574
1 changed files with 14 additions and 0 deletions
14
make/defs.mk
14
make/defs.mk
|
|
@ -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`))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue