diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-18 17:35:46 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-18 17:35:46 +0000 |
commit | 7a1a2ed509f01fd1310d233be8ed4c4c93d49d83 (patch) | |
tree | f62e1d27ecf30113b42e9664e88b35705e248222 /target/Makefile | |
parent | 23a2f742c069076850dca0cc1b966a073a9f4b83 (diff) |
the default_subtargets template was a bad idea, since different makefiles require different types of dependencies for subtargets. nuke it...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7003 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index 1b6cbb54e..9a7dff2a7 100644 --- a/target/Makefile +++ b/target/Makefile @@ -51,4 +51,5 @@ image_install: image_compile imagebuilder_install: image_install $(MAKE) -C imagebuilder install -$(eval $(call default_subtargets,)) +%-prereq %-prepare %-download %-clean %-compile %-install: FORCE + $(MAKE) -C $* $(patsubst $*-%,%,$@) |