]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/strip
QoS-Update - Komplette grafische Ueberarbeitung
[people/pmueller/ipfire-2.x.git] / lfs / strip
1 ###############################################################################
2 # This file is part of the IPCop Firewall. #
3 # #
4 # IPCop is free software; you can redistribute it and/or modify #
5 # it under the terms of the GNU General Public License as published by #
6 # the Free Software Foundation; either version 2 of the License, or #
7 # (at your option) any later version. #
8 # #
9 # IPCop is distributed in the hope that it will be useful, #
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12 # GNU General Public License for more details. #
13 # #
14 # You should have received a copy of the GNU General Public License #
15 # along with IPCop; if not, write to the Free Software #
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17 # #
18 # Makefiles are based on LFSMake, which is #
19 # Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20 # #
21 ###############################################################################
22
23 ###############################################################################
24 # Definitions
25 ###############################################################################
26
27 include Config
28
29 VER = ipfire
30
31 THISAPP = strip
32 TARGET = $(DIR_INFO)/$(THISAPP)
33
34 ###############################################################################
35 # Top-level Rules
36 ###############################################################################
37
38 install : $(TARGET)
39
40 check :
41
42 download :
43
44 md5 :
45
46 ###############################################################################
47 # Installation Details
48 ###############################################################################
49
50 $(TARGET) :
51
52 ifeq "$(LFS_PASS)" "toolchain"
53 -find $(TOOLS_DIR)/lib -type f -exec $(TOOLS_DIR)/bin/strip --strip-debug '{}' ';'
54 -find $(TOOLS_DIR)/{bin,sbin,libexec} -type f -exec $(TOOLS_DIR)/bin/strip --strip-all '{}' ';'
55 rm -rf $(TOOLS_DIR)/{,share/}{doc,info,man}
56 endif
57
58 ifeq "$(LFS_PASS)" "install"
59 # Add -ls before -exec if you want to verify what files are in the path to be stripped
60 # A running binary can't be stripped, so use the version from /tools
61 # It may fail (signal 11) under circonstance not identified by me (Gilles),
62 # to strip libc again so ignore the error now. Probably need a static strip for libc
63 # Don't use --strip-all on libraries, or they'll be destroyed. Don't use --strip-unneeded, either.
64 -/tools/bin/find /lib /usr/lib /usr/share/rrdtool-* /install/initrd/lib \
65 -type f \( -name '*.so' -o -name '*.so[\.0-9]*' \) \
66 -exec /tools/bin/strip --strip-debug {} \; 2>/dev/null
67
68 -/tools/bin/strip --strip-all /{,usr/}{,local/}{bin,sbin}/* /install/{initrd,misc}/bin/* 2>/dev/null
69 -/tools/bin/strip --strip-all /usr/lib/awk/{grcat,pwcat} 2>/dev/null
70 -/tools/bin/strip --strip-all /usr/lib/gcc/*-linux-gnu/4.0.3/{cc1*,collect2} 2>/dev/null
71 endif
72