2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 # Main makefile for the host tools
9 include $(TOPDIR
)/rules.mk
10 TARGETS-y
:=sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils
12 TARGETS_DOWNLOAD
:=$(patsubst %,%-download
,$(TARGETS-y
))
13 TARGETS_PREPARE
:=$(patsubst %,%-prepare
,$(TARGETS-y
))
14 TARGETS_COMPILE
:=$(patsubst %,%-compile
,$(TARGETS-y
))
15 TARGETS_INSTALL
:=$(patsubst %,%-install,$(TARGETS-y
))
16 TARGETS_CLEAN
:=$(patsubst %,%-clean,$(TARGETS-y
))
17 STAMP
:=$(STAGING_DIR
)/stampfiles
/.tools_installed
20 download
: $(TARGETS_DOWNLOAD
)
21 compile
: $(TARGETS_COMPILE
)
23 clean: $(TARGETS_CLEAN
)
25 squashfs-compile
: lzma-install
27 ifneq ($(shell $(SCRIPT_DIR
)/timestamp.pl
-p .
$(STAMP
)),$(STAMP
))
28 $(STAMP
): $(TARGETS_INSTALL
)
32 mkdir
-p
$(shell dirname
$@
)
35 $(STAGING_DIR
)/include-host
:
37 @
$(CP
) .
/include/*.h
$@
/
42 $(eval
$(call default_subtargets
,$(STAGING_DIR
)/include-host
$(TOOL_BUILD_DIR
)))
44 ifeq ($(MAKECMDGOALS
),install-targets
)
45 MAKEFLAGS
:=$(MAKEFLAGS
) -j
$(CONFIG_JLEVEL
)