samples/samples.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Oct 31 18:31:01 2008 +0000 (2008-10-31)
changeset 1025 fc64f85e41cc
parent 1001 c8ac48ba1411
child 1067 860c6c633565
permissions -rw-r--r--
Remove regtest actions, introduce build-all actions:
- regtest was not easy to use
- one may wish to simply build all samples
- introduce a per-sample automatic build

/trunk/docs/overview.txt | 19 14 5 0 ++++++++---
/trunk/samples/samples.mk | 92 49 43 0 ++++++++++++++++++++++++++++-------------------------
/trunk/ct-ng.comp | 8 5 3 0 +++--
3 files changed, 68 insertions(+), 51 deletions(-)
yann@166
     1
# Makefile to manage samples
yann@63
     2
yann@1001
     3
# ----------------------------------------------------------
yann@166
     4
# Build the list of available samples
yann@182
     5
CT_TOP_SAMPLES := $(patsubst $(CT_TOP_DIR)/samples/%/crosstool.config,%,$(wildcard $(CT_TOP_DIR)/samples/*/crosstool.config))
yann@182
     6
CT_LIB_SAMPLES := $(filter-out $(CT_TOP_SAMPLES),$(patsubst $(CT_LIB_DIR)/samples/%/crosstool.config,%,$(wildcard $(CT_LIB_DIR)/samples/*/crosstool.config)))
yann@1001
     7
CT_SAMPLES := $(sort $(CT_TOP_SAMPLES) $(CT_LIB_SAMPLES))
yann@182
     8
yann@1001
     9
# ----------------------------------------------------------
yann@1001
    10
# This part deals with the samples help entries
yann@63
    11
yann@176
    12
help-config::
yann@333
    13
	@echo  '  saveconfig         - Save current config as a preconfigured target'
yann@176
    14
yann@176
    15
help-samples::
yann@544
    16
	@echo  '  list-samples       - prints the list of all samples (for scripting)'
yann@544
    17
	@echo  '  show-<sample>      - show a brief overview of <sample> (list below)'
yann@544
    18
	@echo  '  <sample>           - preconfigure crosstool-NG with <sample> (list below)'
yann@1025
    19
	@echo  '  build-all[.#]      - Build *all* samples (list below) and install in'
yann@1025
    20
	@echo  '                       $${CT_PREFIX} (which you must set)'
yann@1025
    21
	@echo  '  Available samples:'
yann@182
    22
	@$(CT_LIB_DIR)/scripts/showSamples.sh $(CT_SAMPLES)
yann@176
    23
yann@560
    24
help-distrib::
yann@560
    25
	@echo  '  wiki-samples       - Print a DokuWiki table of samples'
yann@560
    26
yann@1025
    27
help-env::
yann@1025
    28
	@echo  '  CT_PREFIX          - directory in which to auto-install samples'
yann@1025
    29
	@echo  '                       (see action "build-all", above).'
yann@1025
    30
yann@1001
    31
# ----------------------------------------------------------
yann@1001
    32
# This part deals with printing samples information
yann@1001
    33
yann@1001
    34
# Prints the details of a sample
yann@1001
    35
PHONY += $(patsubst %,show-%,$(CT_SAMPLES))
yann@539
    36
$(patsubst %,show-%,$(CT_SAMPLES)):
yann@539
    37
	@$(CT_LIB_DIR)/scripts/showSamples.sh -v $(patsubst show-%,%,$(@))
yann@539
    38
yann@1001
    39
# print the list of all available samples
yann@544
    40
PHONY += list-samples
yann@544
    41
list-samples: .FORCE
yann@539
    42
	@echo $(CT_SAMPLES) |sed -r -e 's/ /\n/g;' |sort
yann@474
    43
yann@1001
    44
wiki-samples:
yann@1001
    45
	$(SILENT)$(CT_LIB_DIR)/scripts/showSamples.sh -w $(CT_SAMPLES)
yann@1001
    46
yann@1001
    47
# ----------------------------------------------------------
yann@1001
    48
# This part deals with saving/restoring samples
yann@1001
    49
yann@1001
    50
# Save a sample
yann@1001
    51
saveconfig:
yann@1001
    52
	$(SILENT)$(CT_LIB_DIR)/scripts/saveSample.sh
yann@1001
    53
yann@1001
    54
# The 'sample_dir' function prints the directory in which the sample is,
yann@1001
    55
# searching first in local samples, then in global samples
yann@1001
    56
define sample_dir
yann@1001
    57
$$( [ -d $(CT_TOP_DIR)/samples/$(1) ] && echo "$(CT_TOP_DIR)/samples/$(1)" || echo "$(CT_LIB_DIR)/samples/$(1)")
yann@1001
    58
endef
yann@1001
    59
yann@933
    60
# How we do recall one sample
yann@182
    61
PHONY += $(CT_SAMPLES)
yann@166
    62
$(CT_SAMPLES):
yann@940
    63
	$(SILENT)cp $(call sample_dir,$@)/crosstool.config .config
yann@1025
    64
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) oldconfig
yann@935
    65
	@echo
yann@935
    66
	@echo  '***********************************************************'
yann@935
    67
	@echo
yann@940
    68
	$(SILENT)( . $(call sample_dir,$@)/reported.by;                             \
yann@935
    69
	   echo "Initially reported by: $${reporter_name:-Yann E. MORIN}";          \
yann@935
    70
	   echo "URL: $${reporter_url:-http://ymorin.is-a-geek.org/}";              \
yann@935
    71
	   if [ -n "$${reporter_comment}" ]; then                                   \
yann@935
    72
	     echo  ;                                                                \
yann@935
    73
	     echo  "Comment:";                                                      \
yann@935
    74
	     printf "$${reporter_comment}\n";                                       \
yann@935
    75
	   fi;                                                                      \
yann@935
    76
	   echo  ;                                                                  \
yann@935
    77
	   echo  '***********************************************************';     \
yann@935
    78
	 )
yann@940
    79
	$(SILENT)if grep -E '^CT_EXPERIMENTAL=y$$' .config >/dev/null 2>&1; then    \
yann@940
    80
	   echo  ;                                                                  \
yann@940
    81
	   echo  'WARNING! This sample may enable experimental features.';          \
yann@940
    82
	   echo  '         Please be sure to review the configuration prior';       \
yann@940
    83
	   echo  '         to building and using your toolchain!';                  \
yann@940
    84
	   echo  'Now, you have been warned!';                                      \
yann@940
    85
	   echo  ;                                                                  \
yann@940
    86
	   echo  '***********************************************************';     \
yann@822
    87
	 fi
yann@935
    88
	@echo
yann@933
    89
	@echo  'Now configured for "$@"'
yann@182
    90
yann@1001
    91
# ----------------------------------------------------------
yann@1025
    92
# Some helper functions
yann@166
    93
yann@1025
    94
# Create the rule to build a sample
yann@1025
    95
# $1: sample tuple
yann@1025
    96
# $2: prefix
yann@1025
    97
define build_sample
yann@1025
    98
	@$(ECHO) '  CP    .config'
yann@1025
    99
	$(SILENT)cp $(call sample_dir,$(1))/crosstool.config .config
yann@1025
   100
	@$(ECHO) '  SED   .config'
yann@1025
   101
	$(SILENT)sed -i -r -e 's:^(CT_PREFIX_DIR=).*$$:\1"$(2)":;' .config
yann@1025
   102
	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_(WARN|INFO|EXTRA|DEBUG|ALL)).*$$:# \1 is not set:;' .config
yann@1025
   103
	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_ERROR).*$$:\1=y:;' .config
yann@1025
   104
	$(SILENT)sed -i -r -e 's:^(CT_LOG_LEVEL_MAX)=.*$$:\1="ERROR":;' .config
yann@1025
   105
	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_TO_FILE).*$$:\1=y:;' .config
yann@1025
   106
	$(SILENT)sed -i -r -e 's:^.*(CT_LOG_PROGRESS_BAR).*$$:\1=y:;' .config
yann@1025
   107
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) oldconfig
yann@1025
   108
	@$(ECHO) '  BUILD $(1)'
yann@1025
   109
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) build
yann@1025
   110
endef
yann@230
   111
yann@1025
   112
# ----------------------------------------------------------
yann@1025
   113
# Build samples for use (not regtest!)
yann@230
   114
yann@1025
   115
# Check that PREFIX is set if building samples
yann@1025
   116
ifneq ($(strip $(MAKECMDGOALS)),)
yann@1025
   117
ifneq ($(strip $(filter $(patsubst %,build-%,$(CT_SAMPLES)) build-all,$(MAKECMDGOALS))),)
yann@230
   118
yann@1025
   119
ifeq ($(strip $(CT_PREFIX)),)
yann@1025
   120
$(error Please set 'CT_PREFIX' to where you want to install generated toolchain samples!)
yann@1025
   121
endif
yann@333
   122
yann@1025
   123
endif # MAKECMDGOALS contains a build sample rule
yann@1025
   124
endif # MAKECMDGOALS != ""
yann@1025
   125
yann@1025
   126
# Build a single sample
yann@1025
   127
$(patsubst %,build-%,$(CT_SAMPLES)):
yann@1025
   128
	$(call build_sample,$(patsubst build-%,%,$@),$(CT_PREFIX)/$(patsubst build-%,%,$@))
yann@1025
   129
yann@1025
   130
# Build al samples
yann@1025
   131
build-all: $(patsubst %,build-%,$(CT_SAMPLES))
yann@1025
   132
yann@1025
   133
# Build all samples, overiding the number of // jobs per sample
yann@1025
   134
build-all.%:
yann@1025
   135
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) $(shell echo "$(@)" |sed -r -e 's|^([^.]+)\.([[:digit:]]+)$$|\1 CT_JOBS=\2|;')
yann@1025
   136