mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-23 15:21:05 +02:00
revert [6857] for rules.mk; make cannot parse dependancies properly
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6860 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b8894ad01a
commit
ccaa720fcf
14
rules.mk
14
rules.mk
@ -135,12 +135,20 @@ endef
|
|||||||
# Parameters:
|
# Parameters:
|
||||||
# 1: dependencies for the prepare step
|
# 1: dependencies for the prepare step
|
||||||
define default_subtargets
|
define default_subtargets
|
||||||
%-download %-prepare %-compile %-install %-clean: FORCE
|
%-download: FORCE
|
||||||
$$(MAKE) -C $$* $$(patsubst $$*-%,%,$$@)
|
$$(MAKE) -C $$(patsubst %-download,%,$$@) download
|
||||||
|
|
||||||
|
%-prepare: $(1) FORCE
|
||||||
|
$$(MAKE) -C $$(patsubst %-prepare,%,$$@) prepare
|
||||||
|
|
||||||
%-compile: %-prepare
|
%-compile: %-prepare
|
||||||
|
$$(MAKE) -C $$(patsubst %-compile,%,$$@) compile
|
||||||
|
|
||||||
%-install: %-compile
|
%-install: %-compile
|
||||||
.SILENT: %-clean
|
$$(MAKE) -C $$(patsubst %-install,%,$$@) install
|
||||||
|
|
||||||
|
%-clean: FORCE
|
||||||
|
@$$(MAKE) -C $$(patsubst %-clean,%,$$@) clean
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user