diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-28 02:53:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-28 02:53:54 +0000 |
commit | 02a7e555debc912845757f1609a159ee3c2af4b4 (patch) | |
tree | 985eb37f90178aebdfc24dd7a6654c824e9b2ab7 /include/subdir.mk | |
parent | 81529c47ec26f951a849c54922db22f38848ed95 (diff) | |
download | upstream-02a7e555debc912845757f1609a159ee3c2af4b4.tar.gz upstream-02a7e555debc912845757f1609a159ee3c2af4b4.tar.bz2 upstream-02a7e555debc912845757f1609a159ee3c2af4b4.zip |
don't force the install->compile, compile->prepare dependencies in subdir.mk
SVN-Revision: 8202
Diffstat (limited to 'include/subdir.mk')
-rw-r--r-- | include/subdir.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/subdir.mk b/include/subdir.mk index 81a6f2a428..fe46ed0de0 100644 --- a/include/subdir.mk +++ b/include/subdir.mk @@ -23,8 +23,6 @@ $(call warn,$(1),$(2),$(3) $(4)) $(4) endef -dep/compile=$(1)/prepare -dep/install=$(1)/compile SUBTARGETS:=clean download prepare compile install update refresh prereq # Parameters: <subdir> @@ -33,7 +31,7 @@ define subdir $(foreach bd,$($(1)/builddirs), $(call warn,$(1),d,BD $(1)/$(bd)) $(foreach target,$(SUBTARGETS), - $(call warn_eval,$(1)/$(bd),t,T,$(1)/$(bd)/$(target): $(call dep/$(target),$(1)/$(bd)) $($(1)/$(bd)/$(target)) $($(1)//$(target))) + $(call warn_eval,$(1)/$(bd),t,T,$(1)/$(bd)/$(target): $($(1)/$(bd)/$(target)) $(call $(1)//$(target),$(1)/$(bd))) @$$(MAKE) -j1 -C $(1)/$(bd) $(target) # legacy targets |