mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 04:08:25 +02:00
sync with buildroot2 from uclibc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@268 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8b29425cae
commit
b1fea1a5d2
@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
mainmenu "Buildroot2 Configuration"
|
mainmenu "OpenWRT Configuration"
|
||||||
|
|
||||||
config BR2_HAVE_DOT_CONFIG
|
config BR2_HAVE_DOT_CONFIG
|
||||||
bool
|
bool
|
||||||
|
67
Makefile
67
Makefile
@ -27,7 +27,8 @@ CONFIG_DEFCONFIG = .defconfig
|
|||||||
CONFIG = package/config
|
CONFIG = package/config
|
||||||
|
|
||||||
noconfig_targets := menuconfig config oldconfig randconfig \
|
noconfig_targets := menuconfig config oldconfig randconfig \
|
||||||
defconfig allyesconfig allnoconfig release tags
|
defconfig allyesconfig allnoconfig clean distclean \
|
||||||
|
release tags
|
||||||
|
|
||||||
# Pull in the user's configuration file
|
# Pull in the user's configuration file
|
||||||
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
|
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
|
||||||
@ -48,13 +49,11 @@ ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
|
|||||||
# along with the packages to build for the target.
|
# along with the packages to build for the target.
|
||||||
#
|
#
|
||||||
##############################################################
|
##############################################################
|
||||||
TARGETS:=host-sed linux-headers uclibc-configured binutils gcc uclibc-target-utils
|
TARGETS:=host-sed kernel-headers uclibc-configured binutils gcc uclibc-target-utils
|
||||||
|
TARGETS+=linux
|
||||||
|
|
||||||
include toolchain/Makefile.in
|
include toolchain/Makefile.in
|
||||||
include toolchain/*/Makefile.in
|
|
||||||
include package/Makefile.in
|
include package/Makefile.in
|
||||||
include package/*/Makefile.in
|
|
||||||
include target/Makefile.in
|
|
||||||
include target/*/Makefile.in
|
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
@ -70,19 +69,26 @@ all: world
|
|||||||
# In this section, we need .config
|
# In this section, we need .config
|
||||||
include .config.cmd
|
include .config.cmd
|
||||||
|
|
||||||
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
|
# We also need the various per-package makefiles, which also add
|
||||||
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
|
# each selected package to TARGETS if that package was selected
|
||||||
|
# in the .config file.
|
||||||
world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS)
|
|
||||||
|
|
||||||
.PHONY: all world clean distclean source $(TARGETS) \
|
|
||||||
$(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) \
|
|
||||||
$(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR) $(STAGING_DIR)
|
|
||||||
|
|
||||||
include toolchain/*/*.mk
|
include toolchain/*/*.mk
|
||||||
include package/*/*.mk
|
include package/*/*.mk
|
||||||
include target/*/*.mk
|
include target/*/*.mk
|
||||||
|
|
||||||
|
# target stuff is last so it can override anything else
|
||||||
|
include target/Makefile.in
|
||||||
|
|
||||||
|
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
|
||||||
|
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
|
||||||
|
TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
|
||||||
|
|
||||||
|
world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS)
|
||||||
|
|
||||||
|
.PHONY: all world clean dirclean distclean source $(TARGETS) \
|
||||||
|
$(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) \
|
||||||
|
$(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR) $(STAGING_DIR)
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
# staging and target directories do NOT list these as
|
# staging and target directories do NOT list these as
|
||||||
@ -105,11 +111,14 @@ $(STAGING_DIR):
|
|||||||
@ln -sf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
@ln -sf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
||||||
|
|
||||||
$(TARGET_DIR):
|
$(TARGET_DIR):
|
||||||
@mkdir -p $(TARGET_DIR)
|
if [ -f "$(TARGET_SKELETON)" ] ; then \
|
||||||
cp -a target/default/target_skeleton/* $(TARGET_DIR)/
|
zcat $(TARGET_SKELETON) | tar -C $(BUILD_DIR) -xf -; \
|
||||||
mkdir -p $(TARGET_DIR)/{proc,dev,jffs,tmp,usr/sbin}
|
fi;
|
||||||
chmod 1777 $(TARGET_DIR)/tmp
|
if [ -d "$(TARGET_SKEL_DIR)" ] ; then \
|
||||||
-find $(TARGET_DIR) -type d -name CVS -exec rm -rf {} \; > /dev/null 2>&1
|
cp -a $(TARGET_SKEL_DIR)/* $(TARGET_DIR)/; \
|
||||||
|
fi;
|
||||||
|
-find $(TARGET_DIR) -type d -name CVS | xargs rm -rf
|
||||||
|
-find $(TARGET_DIR) -type d -name .svn | xargs rm -rf
|
||||||
|
|
||||||
source: $(TARGETS_SOURCE)
|
source: $(TARGETS_SOURCE)
|
||||||
|
|
||||||
@ -118,13 +127,17 @@ source: $(TARGETS_SOURCE)
|
|||||||
# Cleanup and misc junk
|
# Cleanup and misc junk
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
clean:
|
clean: $(TARGETS_CLEAN)
|
||||||
rm -rf $(BUILD_DIR) $(IMAGE).*
|
rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE)
|
||||||
-rm -f openwrt-*
|
|
||||||
@$(MAKE) -C $(CONFIG) clean
|
|
||||||
|
|
||||||
distclean: clean
|
dirclean: $(TARGETS_DIRCLEAN)
|
||||||
rm -rf $(DL_DIR) $(TOOL_BUILD_DIR) .config
|
rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE)
|
||||||
|
|
||||||
|
distclean:
|
||||||
|
rm -rf $(DL_DIR) $(BUILD_DIR) $(LINUX_KERNEL) $(IMAGE)
|
||||||
|
|
||||||
|
cleanall:
|
||||||
|
rm -rf $(DL_DIR) $(BUILD_DIR) $(LINUX_KERNEL) $(IMAGE) $(TOOL_BUILD_DIR)
|
||||||
|
|
||||||
sourceball:
|
sourceball:
|
||||||
rm -rf $(BUILD_DIR)
|
rm -rf $(BUILD_DIR)
|
||||||
@ -182,7 +195,7 @@ defconfig: $(CONFIG)/conf
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
clean:
|
clean:
|
||||||
@$(MAKE) -C $(CONFIG) clean
|
- $(MAKE) -C $(CONFIG) clean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user