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

speed up package/install

SVN-Revision: 6588
parent 04ae6391
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,20 @@ $(STAMP_DIR) $(TARGET_DIR):
%-prereq: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-prereq,%,$@) prereq
$(eval $(call default_subtargets,$(TARGET_DIR)))
%-download: FORCE
$(MAKE) -C $(patsubst %-download,%,$@) download
%-prepare: $(TARGET_DIR) FORCE
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
%-compile: %-prepare
$(MAKE) -C $(patsubst %-compile,%,$@) compile
%-install:
$(MAKE) -C $(patsubst %-install,%,$@) install
%-clean: FORCE
$(MAKE) -C $(patsubst %-clean,%,$@) clean
ifeq ($(SDK),1)
GENDEP_OPTS := -s
......
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