Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri May 25 19:30:42 2007 +0000 (2007-05-25)
changeset 135 b2695c2f1919
parent 129 ebdfd61687fb
child 136 22b5ef41df97
permissions -rw-r--r--
Add the possibility to stop after a specified step.
Update the Makefile help and the documentation accordingly.
     1 # Makefile for crosstool-NG.
     2 # Copyright 2006 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
     3 
     4 # Don't print directory as we descend into them
     5 MAKEFLAGS += --no-print-directory
     6 
     7 export CT_TOP_DIR=$(shell pwd)
     8 
     9 # This is crosstool-ng version string
    10 export CT_VERSION=$(shell cat $(CT_TOP_DIR)/version)
    11 
    12 export CT_STOP=$(STOP)
    13 export CT_RESTART=$(RESTART)
    14 
    15 .PHONY: all
    16 all: build
    17 
    18 HOST_CC = gcc -funsigned-char
    19 
    20 help::
    21 	@echo  'Available make targets:'
    22 	@echo
    23 
    24 include $(CT_TOP_DIR)/kconfig/Makefile
    25 include $(CT_TOP_DIR)/samples/Makefile
    26 
    27 help::
    28 	@echo  'Build targets:'
    29 	@echo  '* build          - Build the toolchain'
    30 	@echo  '  clean          - Remove generated files'
    31 	@echo  '  distclean      - Remove generated files, configuration and build directories'
    32 
    33 include $(CT_TOP_DIR)/tools/Makefile
    34 
    35 help::
    36 	@echo  'Distribution targets:'
    37 	@echo  '  tarball        - Build a tarball of the configured toolchain'
    38 	@echo
    39 	@echo  'Environement variables:'
    40 	@echo  '  STOP           - Stop the build just after this step'
    41 	@echo  '  RESTART        - Restart the build just before this step'
    42 	@echo
    43 	@echo  'Execute "make" or "make all" to build all targets marked with [*]'
    44 
    45 .config: $(CONFIG_FILES) $(CT_TOP_DIR)/config/debug.in
    46 	@make oldconfig
    47 
    48 # Actual build
    49 build: .config
    50 	@$(CT_TOP_DIR)/scripts/crosstool.sh
    51 
    52 .PHONY: tarball
    53 tarball:
    54 	@$(CT_TOP_DIR)/scripts/tarball.sh
    55 
    56 .PHONY: distclean
    57 distclean:: clean
    58 	@rm -f .config* ..config.tmp
    59 	@rm -rf "$(CT_TOP_DIR)/targets"