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
|
2007-07-28 13:44:04 +00:00
|
|
|
$(curdir)/builddirs := sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline $(if $(CONFIG_CCACHE),ccache)
|
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-07-28 13:44:04 +00:00
|
|
|
define copy_include
|
2007-07-28 02:44:55 +00:00
|
|
|
$(STAGING_DIR)/include-host/.done:
|
2007-07-28 13:44:04 +00:00
|
|
|
@mkdir -p $$$$(dirname $$@)
|
|
|
|
@cp $(1)/include/*.h $$$$(dirname $$@)/
|
|
|
|
@touch $$@
|
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/include-host/.done
|
|
|
|
endef
|
|
|
|
$(eval $(call copy_include,$(curdir)))
|
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)))
|