diff options
author | 2007-07-22 21:29:42 (GMT) | |
---|---|---|
committer | 2007-07-22 21:29:42 (GMT) | |
commit | ef660a90ce34e57fddd8f2bf193c041ed3388360 (patch) | |
tree | 9070909f4f17f1f59682e732c6160a43bc111260 | |
parent | f38b71646ad376a8442d49330c8eadb137c2bd06 (diff) |
Move CREDITS to docs/
Be a bit verbose when restoring a sample.
-rw-r--r-- | Makefile.in | 6 | ||||
-rw-r--r-- | docs/CREDITS (renamed from CREDITS) | 0 | ||||
-rw-r--r-- | samples/samples.mk | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 54fe82c..184c6fd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -101,9 +101,9 @@ install-lib-samples: install-local-test $(LIBDIR) install-lib-main done install-doc: install-local-test $(DOCDIR) - @for doc_file in CREDITS docs/overview.txt; do \ - echo " INST $${doc_file}"; \ - install -m 644 "$${doc_file}" $(DOCDIR); \ + @for doc_file in docs/CREDITS docs/overview.txt; do \ + echo " INST $${doc_file}"; \ + install -m 644 "$${doc_file}" $(DOCDIR); \ done install-man: install-local-test $(MANDIR) diff --git a/samples/samples.mk b/samples/samples.mk index 3d1dc60..221e82a 100644 --- a/samples/samples.mk +++ b/samples/samples.mk @@ -20,7 +20,9 @@ help-build:: # How we do build one sample PHONY += $(CT_SAMPLES) $(CT_SAMPLES): + @echo 'Configuring for "$@"' @$(CT_NG) $(patsubst %,copy_config_%,$(@)) oldconfig + @echo 'Execute "$(CT_NG) build" to build your toolchain' $(patsubst %,copy_config_%,$(CT_SAMPLES)): @if [ -f $(CT_TOP_DIR)/samples/$(patsubst copy_config_%,%,$(@))/crosstool.config ]; then \ |