openwrt/tools/Makefile

34 lines
961 B
Makefile
Raw Normal View History

#
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# Main makefile for the host tools
#
curdir:=tools
# subdirectories to descend into
2007-07-28 15:44:04 +02:00
$(curdir)/builddirs := sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline $(if $(CONFIG_CCACHE),ccache)
# builddir dependencies
2007-07-28 15:44:04 +02:00
$(curdir)/squashfs/compile := $(curdir)/lzma/install
# preparatory work
2007-07-28 15:44:04 +02:00
define copy_include
$(STAGING_DIR)/include-host/.done:
2007-07-28 15:44:04 +02:00
@mkdir -p $$$$(dirname $$@)
@cp $(1)/include/*.h $$$$(dirname $$@)/
@touch $$@
$(curdir)//prepare = $(STAGING_DIR)/include-host/.done
2007-07-31 01:08:59 +02:00
$(curdir)//compile = $(STAGING_DIR)/include-host/.done
2007-07-28 15:44:04 +02:00
endef
$(eval $(call copy_include,$(curdir)))
# prerequisites for the individual targets
$(curdir)/ := .config prereq
2007-07-28 15:44:04 +02:00
$(curdir)//install = $(1)/compile
$(eval $(call stampfile,$(curdir),tools,install))
2007-07-28 15:44:04 +02:00
$(eval $(call subdir,$(curdir)))