]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/gmp
Merge remote-tracking branch 'mfischer/daq' into next
[ipfire-2.x.git] / lfs / gmp
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
b8cee3bb 4# Copyright (C) 2007-2014 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
45cd74d7 27VER = 6.0.0
cd1a2927
MT
28
29THISAPP = gmp-$(VER)
45cd74d7 30DL_FILE = $(THISAPP)a.tar.xz
6b8cff41 31DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
1b9ffccc
MT
35ifeq "$(MACHINE)" "i586"
36 CONFIGURE_ARGS = ABI=32
89066697 37 BUILDTARGET_PENTIUM4 = $(patsubst $(MACHINE)-%,pentium4-%,$(BUILDTARGET))
1b9ffccc
MT
38endif
39
89066697
MT
40CONFIGURE_OPTIONS = \
41 --prefix=/usr \
42 --enable-cxx \
43 --enable-mpbsd \
44 --disable-nls
45
cd1a2927
MT
46###############################################################################
47# Top-level Rules
48###############################################################################
49
50objects = $(DL_FILE)
51
52$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
53
45cd74d7 54$(DL_FILE)_MD5 = 1e6da4e434553d2811437aa42c7f7c76
cd1a2927
MT
55
56install : $(TARGET)
57
58check : $(patsubst %,$(DIR_CHK)/%,$(objects))
59
60download :$(patsubst %,$(DIR_DL)/%,$(objects))
61
62md5 : $(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)
45cd74d7 83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
89066697
MT
84 cd $(DIR_APP) && \
85 $(CONFIGURE_ARGS) \
86 ./configure \
87 --build=$(BUILDTARGET) \
88 $(CONFIGURE_OPTIONS)
6b8cff41 89 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927 90 cd $(DIR_APP) && make install
89066697
MT
91
92ifeq "$(MACHINE)" "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
45cd74d7 105 cd $(DIR_APP) && install -v -m 755 .libs/libgmp.so.10.2.0 /usr/lib/sse2
89066697
MT
106endif
107
cd1a2927
MT
108 @rm -rf $(DIR_APP)
109 @$(POSTBUILD)