]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/linux-libc-header
cryptodev: Update kernel module.
[people/pmueller/ipfire-2.x.git] / lfs / linux-libc-header
CommitLineData
dd714b8a 1###############################################################################
dd714b8a 2# #
70df8302
MT
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
dd714b8a 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 #
dd714b8a
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
dd714b8a
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/>. #
dd714b8a
MT
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27VER = 2.6.12.0
28
29THISAPP = linux-libc-headers-$(VER)
30DL_FILE = $(THISAPP).tar.bz2
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34ifeq "$(ROOT)" ""
bc9f0c12
MT
35ifeq "$(LFS_PASS)" "install"
36 TARGET = $(DIR_INFO)/$(THISAPP)-install
37else
dd714b8a 38 TARGET = $(DIR_INFO)/$(THISAPP)
bc9f0c12 39endif
dd714b8a
MT
40else
41 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
42endif
43
44###############################################################################
45# Top-level Rules
46###############################################################################
47objects = $(DL_FILE)
48
49$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50
51$(DL_FILE)_MD5 = eae2f562afe224ad50f65a6acfb4252c
52
53install : $(TARGET)
54
55check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59md5 : $(subst %,%_MD5,$(objects))
60
61###############################################################################
62# Downloading, checking, md5sum
63###############################################################################
64
65$(patsubst %,$(DIR_CHK)/%,$(objects)) :
66 @$(CHECK)
67
68$(patsubst %,$(DIR_DL)/%,$(objects)) :
69 @$(LOAD)
70
71$(subst %,%_MD5,$(objects)) :
72 @$(MD5)
73
74###############################################################################
75# Installation Details
76###############################################################################
77
78$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
79 @$(PREBUILD)
80 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
81ifeq "$(ROOT)" ""
bc9f0c12
MT
82ifeq "$(LFS_PASS)" "install"
83 -mkdir -p /opt/$(MACHINE)-uClibc
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-inotify-3.patch
85 cd $(DIR_APP) && install -dv /opt/$(MACHINE)-uClibc/usr/include/asm
86 cd $(DIR_APP) && cp -Rv include/asm-i386/* /opt/$(MACHINE)-uClibc/usr/include/asm
87 cd $(DIR_APP) && cp -Rv include/linux /opt/$(MACHINE)-uClibc/usr/include
88 cd $(DIR_APP) && chown -Rv root:root /opt/$(MACHINE)-uClibc/usr/include/{asm,linux}
89 cd $(DIR_APP) && find /opt/$(MACHINE)-uClibc/usr/include/{asm,linux} -type d -exec chmod -v 755 {} \;
90 cd $(DIR_APP) && find /opt/$(MACHINE)-uClibc/usr/include/{asm,linux} -type f -exec chmod -v 644 {} \;
91else
9b0ff0a0
MT
92 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-inotify-3.patch
93 cd $(DIR_APP) && install -dv /usr/include/asm
94 cd $(DIR_APP) && cp -Rv include/asm-i386/* /usr/include/asm
95 cd $(DIR_APP) && cp -Rv include/linux /usr/include
96 cd $(DIR_APP) && chown -Rv root:root /usr/include/{asm,linux}
97 cd $(DIR_APP) && find /usr/include/{asm,linux} -type d -exec chmod -v 755 {} \;
98 cd $(DIR_APP) && find /usr/include/{asm,linux} -type f -exec chmod -v 644 {} \;
bc9f0c12 99endif
dd714b8a
MT
100else
101 cd $(DIR_APP) && cp -Rv include/asm-i386 /tools/include/asm
102 cd $(DIR_APP) && cp -Rv include/linux /tools/include
103endif
104 @rm -rf $(DIR_APP)
105 @$(POSTBUILD)