summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-02-10 16:45:38 +0000
committerCarsten Schlote <c.schlote@konzeptpark.de>2009-11-18 17:29:22 +0100
commit9114c23cd1d0e2bc8affe6ad2f78584100306c74 (patch)
tree8d68f29f0c306cfe1c13b85935a757e7a7bfb290
parentacab099dae5a3ddbb2e2acaa14e330f248dfe63f (diff)
downloadOSELAS.Toolchain-9114c23cd1d0e2bc8affe6ad2f78584100306c74.tar.gz
OSELAS.Toolchain-9114c23cd1d0e2bc8affe6ad2f78584100306c74.tar.xz
* build_all_v2.mk:
the build_all_V2.mk script is very useful, if you just want to build all chains. If you intend to build just a single chain, you must derive the allowed targetnames by hand. The patch below adds a small helper to output the available target rules. Patch-by: c.schlote@konzeptpark.de Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/oselas/toolchain/trunks/OSELAS.Toolchain-trunk@9578 f8d472c7-5700-0410-ac5a-87979cec3adf
-rwxr-xr-xbuild_all_v2.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/build_all_v2.mk b/build_all_v2.mk
index dd61f70..df3e618 100755
--- a/build_all_v2.mk
+++ b/build_all_v2.mk
@@ -110,3 +110,9 @@ mkdirs:
print-%:
@echo "$* is \"$($(*))\""
+
+help:
+ @echo "Available DPKG targets:"
+ @for i in $(DEBS); do echo $$i; done;
+ @echo "Available tarball targets:"
+ @for i in $(TBZ2S); do echo $$i; done;