]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - lfs/binutils
Merge branch 'glibc-update2' of ssh://git.ipfire.org/pub/git/people/ms/ipfire-2.x...
[people/teissler/ipfire-2.x.git] / lfs / binutils
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
25 include Config
26
27 VER = 2.22
28
29 THISAPP = binutils-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # XXX maybe we can remove that ugly MACHINE= by this
35 #unexport MACHINE
36
37 # Normal build or /tools build.
38 #
39 ifeq "$(ROOT)" ""
40 TARGET = $(DIR_INFO)/$(THISAPP)
41 EXTRA_CONFIG = --prefix=/usr --enable-shared --disable-nls
42 EXTRA_MAKE = tooldir=/usr
43 EXTRA_INSTALL = tooldir=/usr
44 else
45 ifeq "$(PASS)" "1"
46 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
47 EXTRA_CONFIG = --prefix=/tools --disable-nls --disable-werror --disable-gprof
48 #EXTRA_MAKE = LDFLAGS="-all-static"
49 EXTRA_INSTALL =
50 else
51 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
52 EXTRA_CONFIG = --prefix=/tools --with-lib-path=/tools/lib --disable-nls
53 EXTRA_MAKE =
54 EXTRA_INSTALL =
55 endif
56 endif
57
58 EXTRA_CONFIG += --build=$(BUILDTARGET)
59
60 ifeq "$(MACHINE_TYPE)" "arm"
61 EXTRA_CONFIG += \
62 --with-abi=aapcs-linux \
63 --with-float=soft \
64 --disable-initfini-array
65 endif
66
67 ###############################################################################
68 # Top-level Rules
69 ###############################################################################
70
71 objects = $(DL_FILE)
72
73 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
74
75 $(DL_FILE)_MD5 = ee0f10756c84979622b992a4a61ea3f5
76
77 install : $(TARGET)
78
79 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
80
81 download :$(patsubst %,$(DIR_DL)/%,$(objects))
82
83 md5 : $(subst %,%_MD5,$(objects))
84
85 ###############################################################################
86 # Downloading, checking, md5sum
87 ###############################################################################
88
89 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
90 @$(CHECK)
91
92 $(patsubst %,$(DIR_DL)/%,$(objects)) :
93 @$(LOAD)
94
95 $(subst %,%_MD5,$(objects)) :
96 @$(MD5)
97
98 ###############################################################################
99 # Installation Details
100 ###############################################################################
101
102 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
103 @$(PREBUILD)
104 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
105 @mkdir $(DIR_SRC)/binutils-build
106 cd $(DIR_SRC)/binutils-build && MACHINE= $(DIR_APP)/configure $(EXTRA_CONFIG)
107 ifeq "$(PASS)" "1"
108 cd $(DIR_SRC)/binutils-build && make configure-host MAKEINFO=makeinfo MACHINE=
109 endif
110 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING) MAKEINFO=makeinfo MACHINE=
111 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install MAKEINFO=makeinfo MACHINE=
112 ifeq "$(ROOT)" ""
113 cp -v $(DIR_APP)/include/libiberty.h /usr/include
114 else
115 ifeq "$(PASS)" "1"
116 cd $(DIR_SRC)/binutils-build && make -C ld clean MACHINE=
117 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/tools/lib MACHINE=
118 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
119 else
120 cd $(DIR_SRC)/binutils-build && make -C ld clean MACHINE=
121 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib MACHINE=
122 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
123 endif
124 endif
125 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
126 @$(POSTBUILD)