]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/zlib
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / zlib
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
91ddb27a 4# Copyright (C) 2007-2024 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
91ddb27a 27VER = 1.3.1
cd1a2927
MT
28
29THISAPP = zlib-$(VER)
634f46dc 30DL_FILE = $(THISAPP).tar.xz
9b0ff0a0 31DL_FROM = $(URL_IPFIRE)
cd1a2927 32DIR_APP = $(DIR_SRC)/$(THISAPP)
97b5588c
MT
33
34ifeq "$(TOOLCHAIN)" "1"
35 TARGET = $(DIR_INFO)/$(THISAPP)-tools
03f64a00 36 CROSS_PREFIX = $(CROSSTARGET)-
97b5588c
MT
37else
38 TARGET = $(DIR_INFO)/$(THISAPP)
39endif
b7d60471 40
032d9402 41CFLAGS += -fPIC -DPIC
cd1a2927
MT
42
43###############################################################################
44# Top-level Rules
45###############################################################################
46objects = $(DL_FILE)
47
1b0d73ff 48$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
cd1a2927 49
91ddb27a 50$(DL_FILE)_BLAKE2 = 42d109223801a493de6d52e7343403d7fc3234a6ca816425fe41ac9c18019b01b93841acd28a235e99f2256a6a17f93624e96b2ddb58d588c8190a6bedb82910
cd1a2927
MT
51
52install : $(TARGET)
53
54check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
9a7e4d85 58b2 : $(subst %,%_BLAKE2,$(objects))
cd1a2927
MT
59
60###############################################################################
9a7e4d85 61# Downloading, checking, b2sum
cd1a2927
MT
62###############################################################################
63
64$(patsubst %,$(DIR_CHK)/%,$(objects)) :
65 @$(CHECK)
66
67$(patsubst %,$(DIR_DL)/%,$(objects)) :
68 @$(LOAD)
69
9a7e4d85
PM
70$(subst %,%_BLAKE2,$(objects)) :
71 @$(B2SUM)
cd1a2927
MT
72
73###############################################################################
74# Installation Details
75###############################################################################
76
77$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
78 @$(PREBUILD)
032d9402 79 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
01a7ba6e 80
03f64a00 81 cd $(DIR_APP) && CROSS_PREFIX=$(CROSS_PREFIX) ./configure --prefix=$(PREFIX) --shared
9b0ff0a0 82 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927 83 cd $(DIR_APP) && make install
032d9402 84
54d54148 85ifneq "$(TOOLCHAIN)" "1"
032d9402
MT
86 mv -v /usr/lib/libz.so.$(VER) /lib/libz.so.$(VER)
87 ln -svf libz.so.$(VER) /lib/libz.so.1
d4621fa0 88 ln -svf libz.so.$(VER) /lib/libz.so
032d9402 89 rm -vf /usr/lib/libz.so.1
d4621fa0 90 rm -vf /usr/lib/libz.so
54d54148 91endif
032d9402 92
cd1a2927
MT
93 @rm -rf $(DIR_APP)
94 @$(POSTBUILD)