]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/binutils
cleanup-toolchain: Use TOOLCHAIN variable
[ipfire-2.x.git] / lfs / binutils
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
22a504c6 4# Copyright (C) 2007-2016 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
7cefbe1c 27VER = 2.28
cd1a2927
MT
28
29THISAPP = binutils-$(VER)
7cefbe1c 30DL_FILE = $(THISAPP).tar.gz
1751628e 31DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34# Normal build or /tools build.
35#
36ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
1d627130
MT
38 EXTRA_CONFIG = \
39 --prefix=/usr \
40 --enable-shared \
2eb67894
AF
41 --disable-nls \
42 --disable-werror
857d9bf2
MT
43 EXTRA_MAKE = tooldir=/usr
44 EXTRA_INSTALL = tooldir=/usr
cd1a2927 45else
15679d9f 46ifeq "$(PASS)" "1"
cd1a2927 47 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
35a8f5f0
MT
48 EXTRA_CONFIG = \
49 --target=$(CROSSTARGET) \
50 --prefix=/tools \
2eb67894
AF
51 --with-sysroot=$(ROOT) \
52 --with-lib-path=/tools/lib \
35a8f5f0
MT
53 --disable-nls \
54 --disable-werror
55 EXTRA_MAKE =
cd1a2927
MT
56 EXTRA_INSTALL =
57else
58 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
35a8f5f0 59 EXTRA_ENV = \
a74272d2 60 CC="$(CROSSTARGET)-gcc" \
35a8f5f0
MT
61 AR="$(CROSSTARGET)-ar" \
62 RANLIB="$(CROSSTARGET)-ranlib"
63 EXTRA_CONFIG = \
64 --host=$(BUILDTARGET) \
65 --build=$(BUILDTARGET) \
66 --prefix=/tools \
67 --with-lib-path=/tools/lib \
2eb67894
AF
68 --disable-nls \
69 --disable-werror
cd1a2927
MT
70 EXTRA_MAKE =
71 EXTRA_INSTALL =
72endif
73endif
74
7cefbe1c 75ifeq "$(MACHINE)" "armv5tel"
51f9e7ac 76 EXTRA_CONFIG += \
51f9e7ac 77 --with-abi=aapcs-linux \
35a8f5f0 78 --with-float=soft
51f9e7ac
MT
79endif
80
81aa9714
MT
81EXTRA_CONFIG += \
82 --enable-64-bit-bfd
83
cd1a2927
MT
84###############################################################################
85# Top-level Rules
86###############################################################################
87
88objects = $(DL_FILE)
89
90$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
91
7cefbe1c 92$(DL_FILE)_MD5 = d5d270fd0b698ed59ca5ade8e1b5059c
cd1a2927
MT
93
94install : $(TARGET)
95
96check : $(patsubst %,$(DIR_CHK)/%,$(objects))
97
98download :$(patsubst %,$(DIR_DL)/%,$(objects))
99
100md5 : $(subst %,%_MD5,$(objects))
101
102###############################################################################
103# Downloading, checking, md5sum
104###############################################################################
105
106$(patsubst %,$(DIR_CHK)/%,$(objects)) :
107 @$(CHECK)
108
109$(patsubst %,$(DIR_DL)/%,$(objects)) :
110 @$(LOAD)
111
112$(subst %,%_MD5,$(objects)) :
113 @$(MD5)
114
115###############################################################################
116# Installation Details
117###############################################################################
118
119$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
120 @$(PREBUILD)
7cefbe1c 121 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd1a2927 122 @mkdir $(DIR_SRC)/binutils-build
fc5076e3
MT
123
124 # Prevent installing libiberty to lib64.
125 cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in
126
11fbf1fa 127 cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) MACHINE= $(DIR_APP)/configure $(EXTRA_CONFIG)
5d512a1f
MT
128 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING) MACHINE=
129 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install MACHINE=
b4b6bcdb 130ifeq "$(ROOT)" ""
f97be0a6 131 cp -v $(DIR_APP)/include/libiberty.h /usr/include
cd1a2927 132else
35a8f5f0 133ifeq "$(PASS)" "2"
5d512a1f
MT
134 cd $(DIR_SRC)/binutils-build && make -C ld clean MACHINE=
135 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib MACHINE=
dd714b8a 136 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
90d372c4 137endif
cd1a2927
MT
138endif
139 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
140 @$(POSTBUILD)