mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
defs.mk: Include local.mk before USE_XXX checks
This commit is contained in:
parent
5298729f64
commit
8bccaa9ea1
1 changed files with 8 additions and 8 deletions
16
make/defs.mk
16
make/defs.mk
|
|
@ -351,6 +351,14 @@ endef
|
|||
UPLOAD_URL_RPM_BIN=rsync_ssh://ftp.jannet.de:/home/ftp/dat/pub/packages/rpm/bin/
|
||||
UPLOAD_URL_RPM_SRC=rsync_ssh://ftp.jannet.de:/home/ftp/dat/pub/packages/rpm/src/
|
||||
|
||||
ifneq ($(wildcard $(TOPDIR)/make/local.mk),)
|
||||
include $(TOPDIR)/make/local.mk
|
||||
endif
|
||||
|
||||
ifneq ($(wildcard local.mk),)
|
||||
include local.mk
|
||||
endif
|
||||
|
||||
ifeq ($(USE_TRACING),true)
|
||||
PROJECT_CFLAGS += -D_DO_TRACE_
|
||||
PROJECT_CPPFLAGS += -D_DO_TRACE_
|
||||
|
|
@ -420,11 +428,3 @@ endif
|
|||
#export PROJECT PROJECT_CFLAGS PROJECT_CPPFLAGS PROJECT_LDFLAGS USE_TIMER
|
||||
|
||||
|
||||
ifneq ($(wildcard $(TOPDIR)/make/local.mk),)
|
||||
include $(TOPDIR)/make/local.mk
|
||||
endif
|
||||
|
||||
ifneq ($(wildcard local.mk),)
|
||||
include local.mk
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue