]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - lfs/binutils
client175: update to 0.7.
[people/pmueller/ipfire-2.x.git] / lfs / binutils
... / ...
CommitLineData
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
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 #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27VER = 2.17
28
29THISAPP = binutils-$(VER)
30DL_FILE = $(THISAPP).tar.bz2
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34# Normal build or /tools build.
35#
36ifeq "$(ROOT)" ""
37ifeq "$(LFS_PASS)" "install"
38 TARGET = $(DIR_INFO)/$(THISAPP)-install
39 EXTRA_CONFIG = --prefix=/opt/$(MACHINE)-uClibc \
40 --build=$(MACHINE)-pc-linux-gnu \
41 --host=$(MACHINE)-pc-linux-gnu \
42 --target=$(MACHINE)-linux-uclibc \
43 --disable-nls \
44 --enable-multilib \
45 --disable-werror
46 EXTRA_MAKE = all
47 EXTRA_INSTALL =
48else
49 TARGET = $(DIR_INFO)/$(THISAPP)
50 EXTRA_CONFIG = --prefix=/usr --enable-shared --disable-nls
51 EXTRA_MAKE = tooldir=/usr
52 EXTRA_INSTALL = tooldir=/usr
53endif
54else
55ifeq "$(PASS)" "1"
56 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
57 EXTRA_CONFIG = --prefix=/tools --disable-nls --disable-werror --disable-gprof
58 EXTRA_MAKE = LDFLAGS="-all-static"
59 EXTRA_INSTALL =
60else
61 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
62 EXTRA_CONFIG = --prefix=/tools --with-lib-path=/tools/lib --disable-nls
63 EXTRA_MAKE =
64 EXTRA_INSTALL =
65endif
66endif
67
68###############################################################################
69# Top-level Rules
70###############################################################################
71
72objects = $(DL_FILE)
73
74$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
75
76$(DL_FILE)_MD5 = e26e2e06b6e4bf3acf1dc8688a94c0d1
77
78install : $(TARGET)
79
80check : $(patsubst %,$(DIR_CHK)/%,$(objects))
81
82download :$(patsubst %,$(DIR_DL)/%,$(objects))
83
84md5 : $(subst %,%_MD5,$(objects))
85
86###############################################################################
87# Downloading, checking, md5sum
88###############################################################################
89
90$(patsubst %,$(DIR_CHK)/%,$(objects)) :
91 @$(CHECK)
92
93$(patsubst %,$(DIR_DL)/%,$(objects)) :
94 @$(LOAD)
95
96$(subst %,%_MD5,$(objects)) :
97 @$(MD5)
98
99###############################################################################
100# Installation Details
101###############################################################################
102
103$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
104 @$(PREBUILD)
105 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
106 @mkdir $(DIR_SRC)/binutils-build
107 cd $(DIR_SRC)/binutils-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
108ifeq "$(PASS)" "1"
109 cd $(DIR_SRC)/binutils-build && make configure-host
110endif
111 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING)
112 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install
113ifeq "$(ROOT)" ""
114ifneq "$(LFS_PASS)" "install"
115 cp -v $(DIR_APP)/include/libiberty.h /usr/include
116endif
117else
118ifeq "$(PASS)" "1"
119 cd $(DIR_SRC)/binutils-build && make -C ld clean
120 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/tools/lib
121 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
122else
123 cd $(DIR_SRC)/binutils-build && make -C ld clean
124 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib
125 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
126endif
127endif
128 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
129 @$(POSTBUILD)