Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Mar 11 09:46:22 2007 +0000 (2007-03-11)
changeset 17 1cc9524bf15a
parent 1 eeea35fbf182
child 19 d80e6dedcc13
permissions -rw-r--r--
Rename directory "licenses" to "licenses.d" for those filesystems unable to handle lower/upper case.
Update COPYING 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.1
     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: 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 and configuration'
    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 build: .config
    37 	@$(CT_TOP_DIR)/scripts/crosstool.sh
    38 
    39 .PHONY: distclean
    40 distclean:: clean
    41 	@rm -f .config* ..config.tmp
    42