1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 18:53:52 +02:00

fix host header files installation for tools (closes: #1604)

SVN-Revision: 7029
This commit is contained in:
Nicolas Thill 2007-04-21 22:23:33 +00:00
parent 942d07de9a
commit 74991d46b7

View File

@ -32,10 +32,11 @@ endif
$(STAMP): $(TOPDIR)/.config $(STAMP): $(TOPDIR)/.config
mkdir -p $(shell dirname $@) mkdir -p $(shell dirname $@)
touch $@ touch $@
$(STAGING_DIR)/include-host: TOOL_HOST_INCLUDES:=$(patsubst ./include/%.h,$(STAGING_DIR)/include-host/%.h,$(wildcard ./include/*.h))
@mkdir -p $@ $(TOOL_HOST_INCLUDES): $(STAGING_DIR)/include-host/%.h: ./include/%.h
@$(CP) ./include/*.h $@/ @mkdir -p $(STAGING_DIR)/include-host
$(CP) $< $@
$(TOOL_BUILD_DIR): $(TOOL_BUILD_DIR):
@mkdir -p $@ @mkdir -p $@
@ -43,7 +44,7 @@ $(TOOL_BUILD_DIR):
%-prereq %-download %-clean: FORCE %-prereq %-download %-clean: FORCE
$(MAKE) -C $* $(patsubst $*-%,%,$@) $(MAKE) -C $* $(patsubst $*-%,%,$@)
%-prepare: $(STAGING_DIR)/include-host $(TOOL_BUILD_DIR) FORCE %-prepare: $(TOOL_HOST_INCLUDES) $(TOOL_BUILD_DIR) FORCE
$(MAKE) -C $* $(patsubst $*-%,%,$@) $(MAKE) -C $* $(patsubst $*-%,%,$@)
%-compile: %-prepare FORCE %-compile: %-prepare FORCE