Makefile
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 08 17:48:32 2007 +0000 (2007-05-08)
changeset 78 c3868084d81a
parent 63 89b41dbffe8d
child 85 ac2845835b13
permissions -rw-r--r--
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers,
- use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!),
- lowest kernel version to use is only X.Y.Z, not X.Y.Z.T,
- a bit of preparations for NPTL (RSN I hope),
- fix fixing the linker scripts (changing the backup file is kind of useless and stupid);

Shut uClibc finish step: there really is nothing to do;

Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least);

Did not catch the make errors: fixed the pattern matching in scripts/functions;

Introduce a new log level, ALL:
- send components' build messages there,
- DEBUG log level is destined only for crosstool-NG debug messages,
- migrate sub-actions to use appropriate log levels;

Update the armeb-unknown-linux-gnu sample:
- it builds!
- uses gcc-4.0.4 and glibc-2.3.6,
- updated to latest config options set.
yann@1
     1
# Makefile for crosstool-NG.
yann@1
     2
# Copyright 2006 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
yann@1
     3
yann@65
     4
# Don't print directory as we descend into them
yann@65
     5
MAKEFLAGS += --no-print-directory
yann@65
     6
yann@1
     7
# The project version
yann@33
     8
export PROJECTVERSION=0.0.2-svn
yann@1
     9
yann@1
    10
# This should eventually be computed if compiling out-of-tree is implemented
yann@1
    11
export CT_TOP_DIR=$(shell pwd)
yann@1
    12
yann@1
    13
.PHONY: all
yann@25
    14
all: _ct_build
yann@1
    15
yann@1
    16
HOST_CC = gcc -funsigned-char
yann@1
    17
yann@1
    18
help::
yann@63
    19
	@echo  'Available make targets:'
yann@1
    20
	@echo
yann@1
    21
yann@1
    22
include $(CT_TOP_DIR)/kconfig/Makefile
yann@63
    23
include $(CT_TOP_DIR)/samples/Makefile
yann@1
    24
yann@1
    25
help::
yann@1
    26
	@echo  'Build targets:'
yann@19
    27
	@echo  '* build          - Build the toolchain'
yann@19
    28
	@echo  '  clean          - Remove generated files'
yann@31
    29
	@echo  '  distclean      - Remove generated files, configuration and build directories'
yann@1
    30
yann@1
    31
include $(CT_TOP_DIR)/tools/Makefile
yann@1
    32
yann@63
    33
help::
yann@63
    34
	@echo  'Execute "make" or "make all" to build all targets marked with [*]'
yann@63
    35
yann@44
    36
.config: $(shell find $(CT_TOP_DIR)/config -type f -name '*.in')
yann@1
    37
	@make menuconfig
yann@1
    38
	@# Because exiting menuconfig without saving is not an error to menuconfig
yann@1
    39
	@test -f .config
yann@1
    40
yann@1
    41
# Actual build
yann@25
    42
_ct_build: .config
yann@1
    43
	@$(CT_TOP_DIR)/scripts/crosstool.sh
yann@1
    44
yann@1
    45
.PHONY: distclean
yann@1
    46
distclean:: clean
yann@1
    47
	@rm -f .config* ..config.tmp
yann@31
    48
	@rm -rf "$(CT_TOP_DIR)/build"