diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-17 11:45:18 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-17 11:45:18 +0000 |
commit | b166f010a257d6cfd27e46ecb6e2ac6b505292c8 (patch) | |
tree | 5339ad710d4c0274d5e299d346d2c3491d5efceb | |
parent | eae28ee8af1196739707057e99c37cc2d488cb4f (diff) | |
download | crosstool-ng-b166f010a257d6cfd27e46ecb6e2ac6b505292c8.tar.gz crosstool-ng-b166f010a257d6cfd27e46ecb6e2ac6b505292c8.tar.bz2 crosstool-ng-b166f010a257d6cfd27e46ecb6e2ac6b505292c8.zip |
Add intermediate mesages when building regtests.
Distclean the repository after each sample during regtests.
-rw-r--r-- | samples/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/Makefile b/samples/Makefile index e1e2d49c..5b9b91f1 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -38,11 +38,11 @@ regtest: sed -i -r -e 's:^.*(CT_LOG_PROGRESS_BAR).*$$:\1=y:;' .config && \ yes "" |make -C $(CT_TOP_DIR) defoldconfig >/dev/null 2>&1 && \ make -C $(CT_TOP_DIR) && \ + echo "Making tarball for sample \"$${samp}\"" && \ make -C $(CT_TOP_DIR) tarball && \ - chmod -R u+w $(CT_TOP_DIR)/targets && \ - rm -rf $(CT_TOP_DIR)/targets; \ + echo "Cleaning sample \"$${samp}\"" && \ + make -C $(CT_TOP_DIR) distclean; \ done - @make distclean saveconfig: $(CT_TOP_DIR)/scripts/saveSample.sh |