diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-31 15:57:22 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-31 15:57:22 +0100 |
commit | 3fb046353628229bb16fb0cacb11316b1d9534e7 (patch) | |
tree | a2c8c85a02cc19a6ced4410e9300044a49092d20 /samples | |
parent | ed19d3f919d7cc2988efe86a862f94582eaf7ce5 (diff) | |
download | crosstool-ng-3fb046353628229bb16fb0cacb11316b1d9534e7.tar.gz crosstool-ng-3fb046353628229bb16fb0cacb11316b1d9534e7.tar.bz2 crosstool-ng-3fb046353628229bb16fb0cacb11316b1d9534e7.zip |
scripts: add action to dump current configuration in humane-readable form
Diffstat (limited to 'samples')
-rw-r--r-- | samples/samples.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/samples.mk b/samples/samples.mk index a67a0ade..76023e99 100644 --- a/samples/samples.mk +++ b/samples/samples.mk @@ -36,6 +36,11 @@ help-env:: # ---------------------------------------------------------- # This part deals with printing samples information +# Print the details of current configuration +PHONY += show-config +show-config: .config + @$(CT_LIB_DIR)/scripts/showSamples.sh -v current + # Prints the details of a sample PHONY += $(patsubst %,show-%,$(CT_SAMPLES)) $(patsubst %,show-%,$(CT_SAMPLES)): |