Skip to content
Snippets Groups Projects
Commit 4e60cfe5 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

use default_subtargets in package/Makefile and target/Makefile

SVN-Revision: 6380
parent 27fd6cee
No related branches found
No related tags found
No related merge requests found
...@@ -22,20 +22,7 @@ $(STAMP_DIR) $(TARGET_DIR): ...@@ -22,20 +22,7 @@ $(STAMP_DIR) $(TARGET_DIR):
%-prereq: $(STAMP_DIR) $(TARGET_DIR) %-prereq: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-prereq,%,$@) prereq $(MAKE) -C $(patsubst %-prereq,%,$@) prereq
%-download: $(STAMP_DIR) $(TARGET_DIR) $(eval $(call default_subtargets,$(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
ifeq ($(SDK),1) ifeq ($(SDK),1)
GENDEP_OPTS := -s GENDEP_OPTS := -s
......
...@@ -51,14 +51,4 @@ image_install: image_compile ...@@ -51,14 +51,4 @@ image_install: image_compile
imagebuilder_install: image_install imagebuilder_install: image_install
$(MAKE) -C imagebuilder install $(MAKE) -C imagebuilder install
%-clean: FORCE $(eval $(call default_subtargets,))
$(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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment