samples/samples.mk
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 31 13:04:43 2010 +0100 (2010-01-31)
branch1.4
changeset 1769 438ce270f84e
parent 1155 21e86e18f344
child 1618 7f52e1cca71e
permissions -rw-r--r--
1.4: close branch
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@1155
    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@1159
    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@1067
    98
	@$(ECHO) '  CONF  $(1)'
yann@1025
    99
	$(SILENT)cp $(call sample_dir,$(1))/crosstool.config .config
yann@1155
   100
	$(SILENT)$(sed) -i -r -e 's:^(CT_PREFIX_DIR=).*$$:\1"$(2)":;' .config
yann@1155
   101
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_(WARN|INFO|EXTRA|DEBUG|ALL)).*$$:# \1 is not set:;' .config
yann@1155
   102
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_ERROR).*$$:\1=y:;' .config
yann@1155
   103
	$(SILENT)$(sed) -i -r -e 's:^(CT_LOG_LEVEL_MAX)=.*$$:\1="ERROR":;' .config
yann@1155
   104
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_TO_FILE).*$$:\1=y:;' .config
yann@1155
   105
	$(SILENT)$(sed) -i -r -e 's:^.*(CT_LOG_PROGRESS_BAR).*$$:\1=y:;' .config
yann@1067
   106
	$(SILENT)$(MAKE) -rf $(CT_NG) V=0 oldconfig
yann@1025
   107
	@$(ECHO) '  BUILD $(1)'
yann@1067
   108
	$(SILENT)$(MAKE) -rf $(CT_NG) V=0 build
yann@1025
   109
endef
yann@230
   110
yann@1025
   111
# ----------------------------------------------------------
yann@1025
   112
# Build samples for use (not regtest!)
yann@230
   113
yann@1025
   114
# Check that PREFIX is set if building samples
yann@1025
   115
ifneq ($(strip $(MAKECMDGOALS)),)
yann@1025
   116
ifneq ($(strip $(filter $(patsubst %,build-%,$(CT_SAMPLES)) build-all,$(MAKECMDGOALS))),)
yann@230
   117
yann@1025
   118
ifeq ($(strip $(CT_PREFIX)),)
yann@1025
   119
$(error Please set 'CT_PREFIX' to where you want to install generated toolchain samples!)
yann@1025
   120
endif
yann@333
   121
yann@1025
   122
endif # MAKECMDGOALS contains a build sample rule
yann@1025
   123
endif # MAKECMDGOALS != ""
yann@1025
   124
yann@1025
   125
# Build a single sample
yann@1025
   126
$(patsubst %,build-%,$(CT_SAMPLES)):
yann@1025
   127
	$(call build_sample,$(patsubst build-%,%,$@),$(CT_PREFIX)/$(patsubst build-%,%,$@))
yann@1025
   128
yann@1025
   129
# Build al samples
yann@1025
   130
build-all: $(patsubst %,build-%,$(CT_SAMPLES))
yann@1025
   131
yann@1025
   132
# Build all samples, overiding the number of // jobs per sample
yann@1025
   133
build-all.%:
yann@1155
   134
	$(SILENT)$(MAKE) -rf $(CT_NG) V=$(V) $(shell echo "$(@)" |$(sed) -r -e 's|^([^.]+)\.([[:digit:]]+)$$|\1 CT_JOBS=\2|;')
yann@1025
   135