]>
Commit | Line | Data |
---|---|---|
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 | ||
25 | include Config | |
26 | ||
27 | VER = 2.6.12.0 | |
28 | ||
29 | THISAPP = linux-libc-headers-$(VER) | |
30 | DL_FILE = $(THISAPP).tar.bz2 | |
31 | DL_FROM = $(URL_IPFIRE) | |
32 | DIR_APP = $(DIR_SRC)/$(THISAPP) | |
33 | ||
34 | ifeq "$(ROOT)" "" | |
bc9f0c12 MT |
35 | ifeq "$(LFS_PASS)" "install" |
36 | TARGET = $(DIR_INFO)/$(THISAPP)-install | |
37 | else | |
dd714b8a | 38 | TARGET = $(DIR_INFO)/$(THISAPP) |
bc9f0c12 | 39 | endif |
dd714b8a MT |
40 | else |
41 | TARGET = $(DIR_INFO)/$(THISAPP)-tools1 | |
42 | endif | |
43 | ||
44 | ############################################################################### | |
45 | # Top-level Rules | |
46 | ############################################################################### | |
47 | objects = $(DL_FILE) | |
48 | ||
49 | $(DL_FILE) = $(DL_FROM)/$(DL_FILE) | |
50 | ||
51 | $(DL_FILE)_MD5 = eae2f562afe224ad50f65a6acfb4252c | |
52 | ||
53 | install : $(TARGET) | |
54 | ||
55 | check : $(patsubst %,$(DIR_CHK)/%,$(objects)) | |
56 | ||
57 | download :$(patsubst %,$(DIR_DL)/%,$(objects)) | |
58 | ||
59 | md5 : $(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) | |
81 | ifeq "$(ROOT)" "" | |
bc9f0c12 MT |
82 | ifeq "$(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 {} \; | |
91 | else | |
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 | 99 | endif |
dd714b8a MT |
100 | else |
101 | cd $(DIR_APP) && cp -Rv include/asm-i386 /tools/include/asm | |
102 | cd $(DIR_APP) && cp -Rv include/linux /tools/include | |
103 | endif | |
104 | @rm -rf $(DIR_APP) | |
105 | @$(POSTBUILD) |