mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
18 lines
439 B
Makefile
18 lines
439 B
Makefile
|
# 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
|