Will need to try to copy eventual pre-existing project-specific deps back to package/config in order not to mess up the corresponding timestamps (to avoid superfluous rebuilds)..
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
PROJECT:=$(strip $(subst ",,$(BR2_PROJECT)))
|
|
#"))
|
|
TARGET_HOSTNAME:=$(strip $(subst ",,$(BR2_HOSTNAME)))
|
|
#"))
|
|
BANNER:=$(strip $(subst ",,$(BR2_BANNER)))
|
|
#"))
|
|
|
|
|
|
# Strip off the annoying quoting
|
|
ARCH:=$(strip $(subst ",, $(BR2_ARCH)))
|
|
#"))
|
|
WGET:=$(strip $(subst ",, $(BR2_WGET))) $(SPIDER)
|
|
#"))
|
|
SVN:=$(strip $(subst ",, $(BR2_SVN)))
|
|
#"))
|
|
ZCAT:=$(strip $(subst ",, $(BR2_ZCAT)))
|
|
#"))
|
|
BZCAT:=$(strip $(subst ",, $(BR2_BZCAT)))
|
|
#"))
|
|
TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xf
|
|
#")
|
|
|
|
|
|
BASE_DIR:=$(shell pwd)
|
|
|
|
TOPDIR_PREFIX:=$(strip $(subst ",, $(BR2_TOPDIR_PREFIX)))_
|
|
#"))
|
|
TOPDIR_SUFFIX:=_$(strip $(subst ",, $(BR2_TOPDIR_SUFFIX)))
|
|
#"))
|
|
ifeq ($(TOPDIR_PREFIX),_)
|
|
TOPDIR_PREFIX:=
|
|
endif
|
|
ifeq ($(TOPDIR_SUFFIX),_)
|
|
TOPDIR_SUFFIX:=
|
|
endif
|
|
|
|
DL_DIR=$(strip $(subst ",, $(BR2_DL_DIR)))
|
|
#"))
|
|
ifeq ($(DL_DIR),)
|
|
DL_DIR:=$(BASE_DIR)/dl
|
|
endif
|
|
|
|
# All non-configurable packages should be built in BUILD_DIR
|
|
BUILD_DIR:=$(BASE_DIR)/$(TOPDIR_PREFIX)build_$(ARCH)$(ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX)
|
|
|
|
GNU_TARGET_SUFFIX:=-$(strip $(subst ",, $(BR2_GNU_TARGET_SUFFIX)))
|
|
#"))
|
|
|
|
STAGING_DIR:=$(strip $(subst ",, $(BR2_STAGING_DIR)))
|
|
#"))
|
|
|
|
# All configurable packages (like Busybox,Linux etc) should be built
|
|
# in PROJECT_BUILD_DIR
|
|
PROJECT_BUILD_DIR:=$(BASE_DIR)/$(TOPDIR_PREFIX)project_build_$(ARCH)$(ARCH_FPU_SUFFIX)$(TOPDIR_SUFFIX)/$(PROJECT)
|
|
BINARIES_DIR:=$(BASE_DIR)/binaries/$(PROJECT)
|
|
TARGET_DIR:=$(PROJECT_BUILD_DIR)/root
|