1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:43:16 +03:00

use default_subtargets in package/Makefile and target/Makefile

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6380 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-02-26 00:41:53 +00:00
parent 50de7d1654
commit 02059e7283
2 changed files with 2 additions and 25 deletions

View File

@ -22,20 +22,7 @@ $(STAMP_DIR) $(TARGET_DIR):
%-prereq: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-prereq,%,$@) prereq
%-download: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-download,%,$@) download
%-prepare: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-compile,%,$@) compile
%-install: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-install,%,$@) install
%-clean: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-clean,%,$@) clean
$(eval $(call default_subtargets,$(TARGET_DIR)))
ifeq ($(SDK),1)
GENDEP_OPTS := -s

View File

@ -51,14 +51,4 @@ image_install: image_compile
imagebuilder_install: image_install
$(MAKE) -C imagebuilder install
%-clean: FORCE
$(MAKE) -C $(patsubst %-clean,%,$@) clean
%-download: FORCE
$(MAKE) -C $(patsubst %-download,%,$@) download
%-prepare: FORCE
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
$(MAKE) -C $(patsubst %-compile,%,$@) compile
%-install: %-compile
$(MAKE) -C $(patsubst %-install,%,$@) install
$(eval $(call default_subtargets,))