diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-02-26 00:41:53 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-02-26 00:41:53 +0000 |
commit | 02059e7283fa828bb98a52754ec6d9019e858bf0 (patch) | |
tree | 1745aabc1cef822f3399fabd49543c5e57517956 /package/Makefile | |
parent | 50de7d16545ea58128b15baee5b9869b47f18bc0 (diff) |
use default_subtargets in package/Makefile and target/Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6380 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/package/Makefile b/package/Makefile index 6ddbc1ba4..151942de3 100644 --- a/package/Makefile +++ b/package/Makefile @@ -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 |