Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Apr 17 22:24:42 2007 +0000 (2007-04-17)
changeset 41 fd6ad5721f77
parent 32 565d6d12f139
child 44 1bfe65e14402
permissions -rw-r--r--
Add the EXPERIMENTAL option to show options marked as such.
Add the four types of toolchains ct-ng is able to build as EXPERIMENTAL, except for CROSS which *is* functional.
Reorder menus accordingly.
     1 # Makefile for crosstool-NG.
     2 # Copyright 2006 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
     3 
     4 # The project version
     5 export PROJECTVERSION=0.0.2-svn
     6 
     7 # This should eventually be computed if compiling out-of-tree is implemented
     8 export CT_TOP_DIR=$(shell pwd)
     9 
    10 .PHONY: all
    11 all: _ct_build
    12 
    13 HOST_CC = gcc -funsigned-char
    14 
    15 help::
    16 	@echo  'Available make targets (*: default target):'
    17 	@echo
    18 
    19 include $(CT_TOP_DIR)/kconfig/Makefile
    20 #include $(CT_TOP_DIR)/samples/Makefile
    21 
    22 help::
    23 	@echo  'Build targets:'
    24 	@echo  '* build          - Build the toolchain'
    25 	@echo  '  clean          - Remove generated files'
    26 	@echo  '  distclean      - Remove generated files, configuration and build directories'
    27 
    28 include $(CT_TOP_DIR)/tools/Makefile
    29 
    30 .config: config/*.in
    31 	@make menuconfig
    32 	@# Because exiting menuconfig without saving is not an error to menuconfig
    33 	@test -f .config
    34 
    35 # Actual build
    36 _ct_build: .config
    37 	@$(CT_TOP_DIR)/scripts/crosstool.sh
    38 
    39 .PHONY: distclean
    40 distclean:: clean
    41 	@rm -f .config* ..config.tmp
    42 	@rm -rf "$(CT_TOP_DIR)/build"