2006-09-27 14:06:46 +00:00
|
|
|
#
|
2007-07-28 02:44:55 +00:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2006-09-27 14:06:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# Main makefile for the host tools
|
|
|
|
#
|
2007-07-30 15:00:27 +00:00
|
|
|
curdir:=tools
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# subdirectories to descend into
|
2008-03-09 21:22:23 +00:00
|
|
|
$(curdir)/builddirs := sed sstrip ipkg-utils genext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline pkg-config automake $(if $(CONFIG_CCACHE),ccache) bison $(if $(CONFIG_TARGET_ppc40x),dtc)
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# builddir dependencies
|
2007-07-28 13:44:04 +00:00
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma/install
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# preparatory work
|
2007-08-07 00:04:25 +00:00
|
|
|
$(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
|
|
|
|
@for dir in $(STAGING_DIR) $(STAGING_DIR_HOST); do ( \
|
|
|
|
set -x; \
|
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
|
|
|
mkdir -p bin lib include stamp; \
|
|
|
|
); done
|
|
|
|
mkdir -p $(BUILD_DIR_HOST)/stamp $(BUILD_DIR)/stamp
|
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/.prepared
|
|
|
|
$(curdir)//compile = $(STAGING_DIR)/.prepared
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# prerequisites for the individual targets
|
2007-07-30 18:22:01 +00:00
|
|
|
$(curdir)/ := .config prereq
|
2007-07-28 13:44:04 +00:00
|
|
|
$(curdir)//install = $(1)/compile
|
2007-07-28 02:53:54 +00:00
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,install))
|
2007-07-28 13:44:04 +00:00
|
|
|
$(eval $(call subdir,$(curdir)))
|