]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - lfs/gmp
Merge remote-tracking branch 'mfischer/daq' into next
[ipfire-2.x.git] / lfs / gmp
... / ...
CommitLineData
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2014 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 = 6.0.0
28
29THISAPP = gmp-$(VER)
30DL_FILE = $(THISAPP)a.tar.xz
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
35ifeq "$(MACHINE)" "i586"
36 CONFIGURE_ARGS = ABI=32
37 BUILDTARGET_PENTIUM4 = $(patsubst $(MACHINE)-%,pentium4-%,$(BUILDTARGET))
38endif
39
40CONFIGURE_OPTIONS = \
41 --prefix=/usr \
42 --enable-cxx \
43 --enable-mpbsd \
44 --disable-nls
45
46###############################################################################
47# Top-level Rules
48###############################################################################
49
50objects = $(DL_FILE)
51
52$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
53
54$(DL_FILE)_MD5 = 1e6da4e434553d2811437aa42c7f7c76
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)
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
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
105 cd $(DIR_APP) && install -v -m 755 .libs/libgmp.so.10.2.0 /usr/lib/sse2
106endif
107
108 @rm -rf $(DIR_APP)
109 @$(POSTBUILD)