2008-09-13 14:34:43 +00:00
|
|
|
#
|
2010-03-05 20:26:14 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
ifneq ($(__rules_inc),1)
|
|
|
|
__rules_inc=1
|
|
|
|
|
2007-06-26 20:24:55 +00:00
|
|
|
ifeq ($(DUMP),)
|
|
|
|
-include $(TOPDIR)/.config
|
|
|
|
endif
|
2007-08-30 21:12:39 +00:00
|
|
|
include $(TOPDIR)/include/debug.mk
|
2006-06-23 21:47:24 +00:00
|
|
|
include $(TOPDIR)/include/verbose.mk
|
2005-10-19 13:32:59 +00:00
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
TMP_DIR:=$(TOPDIR)/tmp
|
|
|
|
|
2010-07-31 22:32:21 +00:00
|
|
|
GREP_OPTIONS=
|
|
|
|
export GREP_OPTIONS
|
|
|
|
|
2009-03-03 14:55:53 +00:00
|
|
|
qstrip=$(strip $(subst ",,$(1)))
|
2007-08-07 00:04:25 +00:00
|
|
|
#"))
|
2005-03-06 03:34:52 +00:00
|
|
|
|
2008-06-09 15:38:45 +00:00
|
|
|
empty:=
|
|
|
|
space:= $(empty) $(empty)
|
|
|
|
merge=$(subst $(space),,$(1))
|
|
|
|
confvar=$(call merge,$(foreach v,$(1),$(if $($(v)),y,n)))
|
2008-07-31 23:55:39 +00:00
|
|
|
strip_last=$(patsubst %.$(lastword $(subst .,$(space),$(1))),%,$(1))
|
2008-06-09 15:38:45 +00:00
|
|
|
|
2010-12-13 19:04:33 +00:00
|
|
|
define sep
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2008-08-16 16:59:47 +00:00
|
|
|
_SINGLE=export MAKEFLAGS=$(space);
|
2009-03-14 03:17:06 +00:00
|
|
|
CFLAGS:=
|
2009-03-03 14:55:53 +00:00
|
|
|
ARCH:=$(subst i486,i386,$(subst i586,i386,$(subst i686,i386,$(call qstrip,$(CONFIG_ARCH)))))
|
2010-09-12 20:49:54 +00:00
|
|
|
ARCH_PACKAGES:=$(call qstrip,$(CONFIG_TARGET_ARCH_PACKAGES))
|
2007-09-08 19:55:42 +00:00
|
|
|
BOARD:=$(call qstrip,$(CONFIG_TARGET_BOARD))
|
2007-08-07 00:04:25 +00:00
|
|
|
TARGET_OPTIMIZATION:=$(call qstrip,$(CONFIG_TARGET_OPTIMIZATION))
|
2009-01-17 20:36:38 +00:00
|
|
|
TARGET_SUFFIX=$(call qstrip,$(CONFIG_TARGET_SUFFIX))
|
2007-08-07 00:04:25 +00:00
|
|
|
BUILD_SUFFIX:=$(call qstrip,$(CONFIG_BUILD_SUFFIX))
|
2007-08-30 21:12:39 +00:00
|
|
|
SUBDIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR})
|
2010-08-19 13:32:47 +00:00
|
|
|
export SHELL:=/usr/bin/env bash
|
2005-03-06 03:34:52 +00:00
|
|
|
|
2009-03-03 14:55:53 +00:00
|
|
|
OPTIMIZE_FOR_CPU=$(subst i386,i486,$(ARCH))
|
2005-03-06 03:34:52 +00:00
|
|
|
|
2008-08-06 22:10:20 +00:00
|
|
|
ifeq ($(ARCH),powerpc)
|
|
|
|
FPIC:=-fPIC
|
|
|
|
else
|
|
|
|
FPIC:=-fpic
|
|
|
|
endif
|
|
|
|
|
2010-10-23 20:30:43 +00:00
|
|
|
HOST_FPIC:=-fPIC
|
|
|
|
|
2010-03-14 18:24:05 +00:00
|
|
|
ARCH_SUFFIX:=
|
2011-02-25 16:52:25 +00:00
|
|
|
GCC_ARCH:=
|
|
|
|
|
|
|
|
ifneq ($(filter -march=armv%,$(TARGET_OPTIMIZATION)),)
|
|
|
|
ARCH_SUFFIX:=_$(patsubst -march=arm%,%,$(filter -march=armv%,$(TARGET_OPTIMIZATION)))
|
|
|
|
GCC_ARCH:=$(patsubst -march=%,%,$(filter -march=armv%,$(TARGET_OPTIMIZATION)))
|
|
|
|
endif
|
2010-03-14 18:24:05 +00:00
|
|
|
ifneq ($(findstring -mips32r2,$(TARGET_OPTIMIZATION)),)
|
|
|
|
ARCH_SUFFIX:=_r2
|
|
|
|
endif
|
2011-01-16 01:25:06 +00:00
|
|
|
ifdef CONFIG_HAS_SPE_FPU
|
|
|
|
TARGET_SUFFIX:=$(TARGET_SUFFIX)spe
|
|
|
|
endif
|
2010-03-14 18:24:05 +00:00
|
|
|
|
2007-10-29 22:05:23 +00:00
|
|
|
DL_DIR:=$(if $(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(TOPDIR)/dl)
|
2009-12-03 18:21:03 +00:00
|
|
|
BIN_DIR:=$(TOPDIR)/bin/$(BOARD)
|
2006-06-21 02:32:39 +00:00
|
|
|
INCLUDE_DIR:=$(TOPDIR)/include
|
2006-06-22 22:33:56 +00:00
|
|
|
SCRIPT_DIR:=$(TOPDIR)/scripts
|
2007-08-07 00:04:25 +00:00
|
|
|
BUILD_DIR_BASE:=$(TOPDIR)/build_dir
|
|
|
|
BUILD_DIR_HOST:=$(BUILD_DIR_BASE)/host
|
|
|
|
STAGING_DIR_HOST:=$(TOPDIR)/staging_dir/host
|
2009-09-23 02:27:38 +00:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
GCCV:=$(call qstrip,$(CONFIG_GCC_VERSION))
|
|
|
|
LIBC:=$(call qstrip,$(CONFIG_LIBC))
|
|
|
|
LIBCV:=$(call qstrip,$(CONFIG_LIBC_VERSION))
|
|
|
|
REAL_GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-openwrt-linux$(if $(TARGET_SUFFIX),-$(TARGET_SUFFIX))
|
|
|
|
GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-openwrt-linux
|
2011-03-07 12:59:19 +00:00
|
|
|
DIR_SUFFIX:=_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi)
|
2010-03-14 18:24:05 +00:00
|
|
|
BUILD_DIR:=$(BUILD_DIR_BASE)/target-$(ARCH)$(ARCH_SUFFIX)$(DIR_SUFFIX)$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX))
|
|
|
|
STAGING_DIR:=$(TOPDIR)/staging_dir/target-$(ARCH)$(ARCH_SUFFIX)$(DIR_SUFFIX)
|
|
|
|
BUILD_DIR_TOOLCHAIN:=$(BUILD_DIR_BASE)/toolchain-$(ARCH)$(ARCH_SUFFIX)_gcc-$(GCCV)$(DIR_SUFFIX)
|
|
|
|
TOOLCHAIN_DIR:=$(TOPDIR)/staging_dir/toolchain-$(ARCH)$(ARCH_SUFFIX)_gcc-$(GCCV)$(DIR_SUFFIX)
|
2009-12-04 22:18:36 +00:00
|
|
|
PACKAGE_DIR:=$(BIN_DIR)/packages
|
2009-09-23 02:27:38 +00:00
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_NATIVE_TOOLCHAIN),)
|
|
|
|
GNU_TARGET_NAME=$(call qstrip,$(CONFIG_TARGET_NAME))
|
|
|
|
else
|
|
|
|
GNU_TARGET_NAME=$(shell gcc -dumpmachine)
|
|
|
|
endif
|
|
|
|
REAL_GNU_TARGET_NAME=$(GNU_TARGET_NAME)
|
|
|
|
BUILD_DIR:=$(BUILD_DIR_BASE)/target-$(GNU_TARGET_NAME)$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX))
|
|
|
|
STAGING_DIR:=$(TOPDIR)/staging_dir/target-$(GNU_TARGET_NAME)
|
|
|
|
BUILD_DIR_TOOLCHAIN:=$(BUILD_DIR_BASE)/toolchain-$(GNU_TARGET_NAME)
|
|
|
|
TOOLCHAIN_DIR:=$(TOPDIR)/staging_dir/toolchain-$(GNU_TARGET_NAME)
|
2009-12-04 22:17:26 +00:00
|
|
|
PACKAGE_DIR:=$(BIN_DIR)/packages
|
2009-09-23 02:27:38 +00:00
|
|
|
endif
|
2005-03-06 03:34:52 +00:00
|
|
|
STAMP_DIR:=$(BUILD_DIR)/stamp
|
2007-08-07 00:04:25 +00:00
|
|
|
STAMP_DIR_HOST=$(BUILD_DIR_HOST)/stamp
|
2009-02-20 10:44:19 +00:00
|
|
|
TARGET_ROOTFS_DIR?=$(if $(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(BUILD_DIR))
|
|
|
|
TARGET_DIR:=$(TARGET_ROOTFS_DIR)/root-$(BOARD)
|
2009-08-07 21:58:35 +00:00
|
|
|
STAGING_DIR_ROOT:=$(STAGING_DIR)/root-$(BOARD)
|
2009-05-28 16:30:04 +00:00
|
|
|
BUILD_LOG_DIR:=$(TOPDIR)/logs
|
2006-06-22 22:33:56 +00:00
|
|
|
|
2009-09-23 02:27:38 +00:00
|
|
|
TARGET_PATH:=$(STAGING_DIR_HOST)/bin:$(PATH)
|
2008-09-13 17:41:02 +00:00
|
|
|
TARGET_CFLAGS:=$(TARGET_OPTIMIZATION)$(if $(CONFIG_DEBUG), -g3)
|
2008-07-19 16:29:01 +00:00
|
|
|
TARGET_CPPFLAGS:=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include
|
2009-09-23 02:27:38 +00:00
|
|
|
TARGET_LDFLAGS:=-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib
|
2011-04-11 16:06:46 +00:00
|
|
|
ifneq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
LIBGCC_S_PATH=$(realpath $(wildcard $(call qstrip,$(CONFIG_LIBGCC_ROOT_DIR))/$(call qstrip,$(CONFIG_LIBGCC_FILE_SPEC))))
|
|
|
|
LIBGCC_S=$(if $(LIBGCC_S_PATH),-L$(dir $(LIBGCC_S_PATH)) -lgcc_s)
|
|
|
|
else
|
2010-09-12 22:19:29 +00:00
|
|
|
LIBGCC_S=$(if $(wildcard $(TOOLCHAIN_DIR)/lib/libgcc_s.so),-L$(TOOLCHAIN_DIR)/lib -lgcc_s,$(wildcard $(TOOLCHAIN_DIR)/lib/gcc/*/*/libgcc.a))
|
2011-04-11 16:06:46 +00:00
|
|
|
endif
|
2011-02-13 01:45:07 +00:00
|
|
|
ifdef CONFIG_USE_UCLIBC
|
|
|
|
LIBRPC=-lrpc
|
|
|
|
endif
|
2011-03-03 01:45:36 +00:00
|
|
|
LIBRPC_DEPENDS=+USE_UCLIBC:librpc
|
2008-07-19 16:29:01 +00:00
|
|
|
|
2009-03-03 13:54:29 +00:00
|
|
|
ifndef DUMP
|
2009-09-23 02:27:38 +00:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
-include $(TOOLCHAIN_DIR)/info.mk
|
|
|
|
TARGET_CROSS:=$(if $(TARGET_CROSS),$(TARGET_CROSS),$(OPTIMIZE_FOR_CPU)-openwrt-linux$(if $(TARGET_SUFFIX),-$(TARGET_SUFFIX))-)
|
|
|
|
TARGET_CFLAGS+= -fhonour-copts
|
|
|
|
TARGET_CPPFLAGS+= -I$(TOOLCHAIN_DIR)/usr/include -I$(TOOLCHAIN_DIR)/include
|
|
|
|
TARGET_LDFLAGS+= -L$(TOOLCHAIN_DIR)/usr/lib -L$(TOOLCHAIN_DIR)/lib
|
2010-08-19 12:49:51 +00:00
|
|
|
TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(TARGET_PATH)
|
2009-09-23 02:27:38 +00:00
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_NATIVE_TOOLCHAIN),)
|
|
|
|
TARGET_CROSS:=$(call qstrip,$(CONFIG_TOOLCHAIN_PREFIX))
|
|
|
|
TOOLCHAIN_ROOT_DIR:=$(call qstrip,$(CONFIG_TOOLCHAIN_ROOT))
|
|
|
|
TOOLCHAIN_BIN_DIRS:=$(patsubst ./%,$(TOOLCHAIN_ROOT_DIR)/%,$(call qstrip,$(CONFIG_TOOLCHAIN_BIN_PATH)))
|
|
|
|
TOOLCHAIN_INC_DIRS:=$(patsubst ./%,$(TOOLCHAIN_ROOT_DIR)/%,$(call qstrip,$(CONFIG_TOOLCHAIN_INC_PATH)))
|
|
|
|
TOOLCHAIN_LIB_DIRS:=$(patsubst ./%,$(TOOLCHAIN_ROOT_DIR)/%,$(call qstrip,$(CONFIG_TOOLCHAIN_LIB_PATH)))
|
|
|
|
ifneq ($(TOOLCHAIN_BIN_DIRS),)
|
|
|
|
TARGET_PATH:=$(subst $(space),:,$(TOOLCHAIN_BIN_DIRS)):$(TARGET_PATH)
|
|
|
|
endif
|
|
|
|
ifneq ($(TOOLCHAIN_INC_DIRS),)
|
|
|
|
TARGET_CPPFLAGS+= $(patsubst %,-I%,$(TOOLCHAIN_INC_DIRS))
|
|
|
|
endif
|
|
|
|
ifneq ($(TOOLCHAIN_LIB_DIRS),)
|
|
|
|
TARGET_LDFLAGS+= $(patsubst %,-L%,$(TOOLCHAIN_LIB_DIRS))
|
|
|
|
endif
|
2011-04-02 14:27:51 +00:00
|
|
|
TOOLCHAIN_DIR:=$(TOOLCHAIN_ROOT_DIR)
|
2009-09-23 02:27:38 +00:00
|
|
|
endif
|
|
|
|
endif
|
2009-03-03 13:54:29 +00:00
|
|
|
endif
|
2009-09-23 02:27:38 +00:00
|
|
|
TARGET_PATH_PKG:=$(STAGING_DIR)/host/bin:$(TARGET_PATH)
|
2006-08-10 19:25:26 +00:00
|
|
|
|
2007-12-28 18:06:47 +00:00
|
|
|
ifeq ($(CONFIG_SOFT_FLOAT),y)
|
2009-01-29 20:19:00 +00:00
|
|
|
SOFT_FLOAT_CONFIG_OPTION:=--with-float=soft
|
|
|
|
TARGET_CFLAGS+= -msoft-float
|
2007-12-28 18:06:47 +00:00
|
|
|
else
|
2009-01-29 20:19:00 +00:00
|
|
|
SOFT_FLOAT_CONFIG_OPTION:=
|
2007-12-28 18:06:47 +00:00
|
|
|
endif
|
|
|
|
|
2006-08-04 11:59:52 +00:00
|
|
|
export PATH:=$(TARGET_PATH)
|
2007-10-06 19:13:07 +00:00
|
|
|
export STAGING_DIR
|
2007-10-07 00:26:02 +00:00
|
|
|
export GCC_HONOUR_COPTS:=0
|
2010-08-19 12:49:37 +00:00
|
|
|
export SH_FUNC:=. $(INCLUDE_DIR)/shell.sh;
|
2006-08-04 11:59:52 +00:00
|
|
|
|
2007-10-20 19:13:53 +00:00
|
|
|
PKG_CONFIG:=$(STAGING_DIR_HOST)/bin/pkg-config
|
|
|
|
|
|
|
|
export PKG_CONFIG
|
|
|
|
|
2006-06-22 22:33:56 +00:00
|
|
|
HOSTCC:=gcc
|
2007-08-07 00:04:25 +00:00
|
|
|
HOST_CFLAGS:=-O2 -I$(STAGING_DIR_HOST)/include
|
|
|
|
HOST_LDFLAGS:=-L$(STAGING_DIR_HOST)/lib
|
|
|
|
|
2006-06-22 22:33:56 +00:00
|
|
|
TARGET_CC:=$(TARGET_CROSS)gcc
|
2009-05-30 15:48:44 +00:00
|
|
|
TARGET_CXX:=$(if $(CONFIG_INSTALL_LIBSTDCPP),$(TARGET_CROSS)g++,no)
|
2010-10-07 11:32:09 +00:00
|
|
|
KPATCH:=$(SCRIPT_DIR)/patch-kernel.sh
|
2007-08-07 00:04:25 +00:00
|
|
|
SED:=$(STAGING_DIR_HOST)/bin/sed -i -e
|
2006-06-22 22:33:56 +00:00
|
|
|
CP:=cp -fpR
|
2010-03-05 20:26:14 +00:00
|
|
|
LN:=ln -sf
|
2005-03-06 03:34:52 +00:00
|
|
|
|
2006-11-22 23:05:54 +00:00
|
|
|
INSTALL_BIN:=install -m0755
|
|
|
|
INSTALL_DIR:=install -d -m0755
|
|
|
|
INSTALL_DATA:=install -m0644
|
2006-12-31 15:54:59 +00:00
|
|
|
INSTALL_CONF:=install -m0600
|
2006-11-22 23:05:54 +00:00
|
|
|
|
2006-08-04 06:56:10 +00:00
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
2006-08-04 11:59:52 +00:00
|
|
|
TARGET_CC:= ccache $(TARGET_CC)
|
2010-09-11 18:37:15 +00:00
|
|
|
TARGET_CXX:= ccache $(TARGET_CXX)
|
2006-08-04 06:56:10 +00:00
|
|
|
endif
|
|
|
|
|
2010-03-29 00:05:48 +00:00
|
|
|
TARGET_CONFIGURE_OPTS = \
|
2006-06-22 22:33:56 +00:00
|
|
|
AR=$(TARGET_CROSS)ar \
|
2006-08-04 11:59:52 +00:00
|
|
|
AS="$(TARGET_CC) -c $(TARGET_CFLAGS)" \
|
2006-06-22 22:33:56 +00:00
|
|
|
LD=$(TARGET_CROSS)ld \
|
|
|
|
NM=$(TARGET_CROSS)nm \
|
2006-08-04 06:56:10 +00:00
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
GCC="$(TARGET_CC)" \
|
2008-09-01 18:35:03 +00:00
|
|
|
CXX="$(TARGET_CXX)" \
|
2006-06-22 22:33:56 +00:00
|
|
|
RANLIB=$(TARGET_CROSS)ranlib \
|
2007-01-01 00:03:09 +00:00
|
|
|
STRIP=$(TARGET_CROSS)strip \
|
2007-03-22 18:07:01 +00:00
|
|
|
OBJCOPY=$(TARGET_CROSS)objcopy \
|
2007-09-03 05:50:05 +00:00
|
|
|
OBJDUMP=$(TARGET_CROSS)objdump \
|
|
|
|
SIZE=$(TARGET_CROSS)size
|
2006-06-22 22:33:56 +00:00
|
|
|
|
|
|
|
# strip an entire directory
|
2008-09-13 08:31:15 +00:00
|
|
|
ifneq ($(CONFIG_NO_STRIP),)
|
2008-06-10 07:18:41 +00:00
|
|
|
RSTRIP:=:
|
2009-07-07 02:34:58 +00:00
|
|
|
STRIP:=:
|
2008-06-10 07:18:41 +00:00
|
|
|
else
|
2009-07-07 02:34:58 +00:00
|
|
|
ifneq ($(CONFIG_USE_STRIP),)
|
2010-01-22 08:12:20 +00:00
|
|
|
STRIP:=$(TARGET_CROSS)strip $(call qstrip,$(CONFIG_STRIP_ARGS))
|
2009-07-07 02:34:58 +00:00
|
|
|
else
|
|
|
|
ifneq ($(CONFIG_USE_SSTRIP),)
|
|
|
|
STRIP:=$(STAGING_DIR_HOST)/bin/sstrip
|
|
|
|
endif
|
|
|
|
endif
|
2008-06-10 07:18:41 +00:00
|
|
|
RSTRIP:= \
|
|
|
|
NM="$(TARGET_CROSS)nm" \
|
|
|
|
STRIP="$(STRIP)" \
|
2011-03-26 15:29:53 +00:00
|
|
|
STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded -R .comment -R .pdr -R .mdebug.abi32 -R .note.gnu.build-id -R .gnu.attributes -R .reginfo -x" \
|
2008-06-10 07:18:41 +00:00
|
|
|
$(SCRIPT_DIR)/rstrip.sh
|
|
|
|
endif
|
2006-06-22 22:33:56 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_ENABLE_LOCALE),true)
|
2009-07-25 21:45:51 +00:00
|
|
|
DISABLE_NLS:=--enable-nls
|
2005-03-06 03:34:52 +00:00
|
|
|
else
|
2006-06-22 22:33:56 +00:00
|
|
|
DISABLE_NLS:=--disable-nls
|
2005-03-06 03:34:52 +00:00
|
|
|
endif
|
|
|
|
|
2009-07-25 21:45:51 +00:00
|
|
|
ifeq ($(CONFIG_IPV6),y)
|
2009-08-01 12:12:48 +00:00
|
|
|
DISABLE_IPV6:=
|
2009-07-25 21:45:51 +00:00
|
|
|
else
|
|
|
|
DISABLE_IPV6:=--disable-ipv6
|
|
|
|
endif
|
|
|
|
|
2006-06-22 22:33:56 +00:00
|
|
|
ifeq ($(CONFIG_TAR_VERBOSITY),y)
|
2006-10-14 14:52:39 +00:00
|
|
|
TAR_OPTIONS:=-xvf -
|
2006-06-22 22:33:56 +00:00
|
|
|
else
|
2006-10-14 14:52:39 +00:00
|
|
|
TAR_OPTIONS:=-xf -
|
2006-06-22 22:33:56 +00:00
|
|
|
endif
|
2006-05-14 10:25:38 +00:00
|
|
|
|
2006-11-11 23:11:02 +00:00
|
|
|
define shvar
|
|
|
|
V_$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define shexport
|
|
|
|
$(call shvar,$(1))=$$(call $(1))
|
|
|
|
export $(call shvar,$(1))
|
|
|
|
endef
|
|
|
|
|
2010-02-24 23:07:56 +00:00
|
|
|
define include_mk
|
|
|
|
$(eval -include $(if $(DUMP),,$(STAGING_DIR)/mk/$(strip $(1))))
|
|
|
|
endef
|
|
|
|
|
2010-10-29 14:53:16 +00:00
|
|
|
# Execute commands under flock
|
|
|
|
# $(1) => The shell expression.
|
|
|
|
# $(2) => The lock name. If not given, the global lock will be used.
|
|
|
|
define locked
|
2010-10-31 15:33:48 +00:00
|
|
|
SHELL= \
|
|
|
|
$(STAGING_DIR_HOST)/bin/flock \
|
|
|
|
$(TMP_DIR)/.$(if $(2),$(strip $(2)),global).flock \
|
|
|
|
-c '$(subst ','\'',$(1))'
|
2010-10-29 14:53:16 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-29 00:05:48 +00:00
|
|
|
# file extension
|
|
|
|
ext=$(word $(words $(subst ., ,$(1))),$(subst ., ,$(1)))
|
|
|
|
|
2006-05-14 10:25:38 +00:00
|
|
|
all:
|
2006-06-22 22:33:56 +00:00
|
|
|
FORCE: ;
|
2006-05-14 10:25:38 +00:00
|
|
|
.PHONY: FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
|
2010-10-10 22:40:44 +00:00
|
|
|
val.%:
|
|
|
|
@$(if $(filter undefined,$(origin $*)),\
|
|
|
|
echo "$* undefined" >&2, \
|
|
|
|
echo '$(subst ','"'"',$($*))' \
|
|
|
|
)
|
|
|
|
|
|
|
|
var.%:
|
|
|
|
@$(if $(filter undefined,$(origin $*)),\
|
|
|
|
echo "$* undefined" >&2, \
|
|
|
|
echo "$*='"'$(subst ','"'\"'\"'"',$($*))'"'" \
|
|
|
|
)
|
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
endif #__rules_inc
|