From 58b4c6d0a44d57b15d7857ecb27711a2224949e9 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Mon, 7 May 2007 09:04:02 +0000 Subject: Merge the save-sample branch to trunk: - reorder most of the environment setup, - geting, extracting and patching are now components' sub-actions, - save the current config as a sample to be used as a pre-configured target. --- samples/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 samples/Makefile (limited to 'samples/Makefile') diff --git a/samples/Makefile b/samples/Makefile new file mode 100644 index 00000000..7c15b6e0 --- /dev/null +++ b/samples/Makefile @@ -0,0 +1,17 @@ +# Build a list of all available samples + +SAMPLES = $(patsubst $(CT_TOP_DIR)/samples/%,%,$(filter-out %Makefile,$(wildcard $(CT_TOP_DIR)/samples/*))) +.PHONY: $(SAMPLES) +$(SAMPLES): + @cp "$(CT_TOP_DIR)/samples/$(@)/crosstool.config" "$(CT_TOP_DIR)/.config" + @$(MAKE) oldconfig + +help:: + @echo 'Preconfigured targets:' + @for s in $(SAMPLES); do \ + echo " $${s}"; \ + done + @echo '' + +saveconfig: + @$(CT_TOP_DIR)/scripts/saveSample.sh -- cgit v1.2.3