buildrootschalter/target/Makefile.in

86 lines
2.8 KiB
Makefile
Raw Normal View History

2007-04-17 19:30:12 +02:00
BR2_PACKAGE_LINUX_FORMAT:=$(strip $(subst ",,$(BR2_PACKAGE_LINUX_FORMAT)))
#"))
BR2_PACKAGE_LINUX_KCONFIG:=$(strip $(subst ",,$(BR2_PACKAGE_LINUX_KCONFIG)))
#"))
# COPY_FILE absolute_path_to_file, target_directory, filename
ifneq ($(strip $(subst ",,$(BUILDROOT_COPYTO))),) # Use shell definition
#"))
define COPY_FILE
@echo "BUILDROOT_COPYTO: Copy to $(BUILDROOT_COPYTO)/$(strip $(3))" ; \
mkdir -p $(BINARIES_DIR) || echo "Could not create $(BINARIES_DIR)" ; \
if [ -w $(BINARIES_DIR) -o -w $(BINARIES_DIR) ] ; then \
cp $(1) $(BINARIES_DIR)/$(strip $(3)) || echo "Could not copy $(3)" ; \
fi ; \
mkdir -p $(BUILDROOT_COPYTO) || echo "Could not create $(BUILDROOT_COPYTO)" ; \
if [ -d $(BUILDROOT_COPYTO) -o -w $(BUILDROOT_COPYTO) ] ; then \
cp $(1) $(BUILDROOT_COPYTO)/$(strip $(3)) || echo "Could not copy $(3)" ; \
fi
endef
COPYTO=$(strip $(subst ",,$(BUILDROOT_COPYTO)))
else ifneq ($(strip $(subst ",,$(BR2_COPYTO))),) # Global override
#"))
define COPY_FILE
@echo "BR2_COPYTO: Copy to $(BR2_COPYTO)/$(strip $(3))" ; \
mkdir -p $(BINARIES_DIR) || echo "Could not create $(BINARIES_DIR)" ; \
if [ -w $(BINARIES_DIR) -o -w $(BINARIES_DIR) ] ; then \
cp $(1) $(BINARIES_DIR)/$(strip $(3)) || echo "Could not copy $(3)" ; \
fi ; \
if [ "$(strip $(subst ",,$(BR2_COPYTO)))X" != "X" ] ; then \
mkdir -p $(BR2_COPYTO) || echo "Could not create $(BR2_COPYTO)" ; \
if [ -d $(BR2_COPYTO) -o -w $(BR2_COPYTO) ] ; then \
cp $(1) $(BR2_COPYTO)/$(strip $(3)) || echo "Could not copy $(3)" ; \
fi ; \
fi
endef
#"))
COPYTO=$(strip $(subst ",,$(BR2_COPYTO)))
else # Package specific copyto, or empty
define COPY_FILE
@echo "Copy to $(2)/$(strip $(3))" ; \
mkdir -p $(BINARIES_DIR) || echo "Could not create $(BINARIES_DIR)" ; \
if [ -w $(BINARIES_DIR) -o -w $(BINARIES_DIR) ] ; then \
cp $(1) $(BINARIES_DIR)/$(strip $(3)) || echo "Could not copy $(3)" ; \
fi ; \
if [ "$(strip $(subst ",,$(2)))X" != "X" ] ; then \
mkdir -p $(2) || echo "Could not create $(2)" ; \
if [ -d $(2) -o -w $(2) ] ; then \
cp $(1) $(2)/$(strip $(3)) || echo "Could not copy $(3)" ; \
fi ; \
fi
endef
#"))
endif
# make sure to put everything that is board-specific before the tarroot targets
2005-02-17 18:29:57 +01:00
include target/generic/Makefile.in
# this eventually adds the kernel target to TARGETS:
2005-02-17 18:05:47 +01:00
include target/device/Makefile.in
2006-01-20 21:04:53 +01:00
include target/x86/Makefile.in
include target/powerpc/Makefile.in
ifeq ($(BR2_TARGET_UBOOT),y)
include target/u-boot/Makefile.in
endif
2008-03-06 20:00:38 +01:00
# and finally build the filesystems/tarballs
include target/*/*.mk
# kernel rules
# We already did add the kernel target to TARGETS and now just pull in the rules
# to actually build this target.
2007-07-20 13:27:45 +02:00
ifeq ($(BR2_KERNEL_LINUX),y)
2007-08-21 21:33:00 +02:00
include target/linux/Makefile.in
endif
ifeq ($(BR2_KERNEL_LINUX_ADVANCED),y)
include target/linux/Makefile.in.advanced
endif
include target/device/Makefile.in.linux
include target/hurd/Makefile.in