diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-04-18 17:35:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-04-18 17:35:46 +0000 |
commit | 1099e2d679328043c2c317169054f16a86b5d45b (patch) | |
tree | 08f2beef40c9c1fb7483e72aa597949b73f355ad /target/Makefile | |
parent | 532654e3c6237f9867c35ca38b3d4967d4e054ff (diff) | |
download | mtk-20170518-1099e2d679328043c2c317169054f16a86b5d45b.zip mtk-20170518-1099e2d679328043c2c317169054f16a86b5d45b.tar.gz mtk-20170518-1099e2d679328043c2c317169054f16a86b5d45b.tar.bz2 |
the default_subtargets template was a bad idea, since different makefiles require different types of dependencies for subtargets. nuke it...
SVN-Revision: 7003
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 1b6cbb5..9a7dff2 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 $*-%,%,$@) |