]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/gmp
Merge branch 'master' into next
[ipfire-2.x.git] / lfs / gmp
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2016 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 = 6.1.2
28
29 THISAPP = gmp-$(VER)
30 DL_FILE = $(THISAPP).tar.xz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34
35 ifeq "$(BUILD_ARCH)" "i586"
36 CONFIGURE_ARGS = ABI=32
37 BUILDTARGET_PENTIUM4 = $(patsubst $(BUILD_ARCH)-%,pentium4-%,$(BUILDTARGET))
38 endif
39
40 CONFIGURE_OPTIONS = \
41 --prefix=/usr \
42 --enable-cxx \
43 --enable-mpbsd \
44 --disable-nls
45
46 ###############################################################################
47 # Top-level Rules
48 ###############################################################################
49
50 objects = $(DL_FILE)
51
52 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
53
54 $(DL_FILE)_MD5 = f58fa8001d60c4c77595fbbb62b63c1d
55
56 install : $(TARGET)
57
58 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
59
60 download :$(patsubst %,$(DIR_DL)/%,$(objects))
61
62 md5 : $(subst %,%_MD5,$(objects))
63
64 ###############################################################################
65 # Downloading, checking, md5sum
66 ###############################################################################
67
68 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71 $(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
74 $(subst %,%_MD5,$(objects)) :
75 @$(MD5)
76
77 ###############################################################################
78 # Installation Details
79 ###############################################################################
80
81 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
84 cd $(DIR_APP) && \
85 $(CONFIGURE_ARGS) \
86 ./configure \
87 --build=$(BUILDTARGET) \
88 $(CONFIGURE_OPTIONS)
89 cd $(DIR_APP) && make $(MAKETUNING)
90 cd $(DIR_APP) && make install
91
92 ifeq "$(BUILD_ARCH)" "i586"
93 # Build SSE/SSE2 optimised version for x86
94 cd $(DIR_APP) && make clean
95 cd $(DIR_APP) && \
96 $(CONFIGURE_ARGS) \
97 ./configure \
98 --build=$(BUILDTARGET_PENTIUM4) \
99 $(CONFIGURE_OPTIONS) \
100 CFLAGS="$(CFLAGS) -march=pentium4" \
101 CXXFLAGS="$(CXXFLAGS) -march=pentium4"
102 cd $(DIR_APP) && make $(MAKETUNING)
103
104 -mkdir -pv /usr/lib/sse2
105 cd $(DIR_APP) && install -v -m 755 .libs/libgmp.so.10.3.2 /usr/lib/sse2
106 endif
107
108 @rm -rf $(DIR_APP)
109 @$(POSTBUILD)