|
Lines 1-14
Link Here
|
| 1 |
# Copyright 1999-2004 Gentoo Foundation |
1 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/makeedit.eclass,v 1.11 2005/09/26 22:22:08 azarah Exp $ |
3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/makeedit.eclass,v 1.11 2005/09/26 22:22:08 azarah Exp $ |
| 4 |
# |
4 |
|
|
|
5 |
# @ECLASS: makeedit.eclass |
| 6 |
# @MAINTAINER: |
| 5 |
# Author: Spider |
7 |
# Author: Spider |
|
|
8 |
# @BLURB: An eclass to replace some flags in makefiles |
| 9 |
# @DESCRIPTION: |
| 6 |
# |
10 |
# |
|
|
11 |
# @CODE |
| 7 |
# To use this eclass, do 2 things: |
12 |
# To use this eclass, do 2 things: |
| 8 |
# 1. append-flags "$MAKEEDIT_FLAGS". If you filter-flags, make sure to do |
13 |
# 1. append-flags "$MAKEEDIT_FLAGS". If you filter-flags, make sure to do |
| 9 |
# the append-flags afterward, otherwise you'll lose them. |
14 |
# the append-flags afterward, otherwise you'll lose them. |
| 10 |
# 2. after running configure or econf, call edit_makefiles to remove |
15 |
# 2. after running configure or econf, call edit_makefiles to remove |
| 11 |
# extraneous CFLAGS from your Makefiles. |
16 |
# extraneous CFLAGS from your Makefiles. |
|
|
17 |
# @CODE |
| 12 |
# |
18 |
# |
| 13 |
# This combination should reduce the RAM requirements of your build, and maybe |
19 |
# This combination should reduce the RAM requirements of your build, and maybe |
| 14 |
# even speed it up a bit. |
20 |
# even speed it up a bit. |
|
Lines 16-21
Link Here
|
| 16 |
|
22 |
|
| 17 |
MAKEEDIT_FLAGS="-Wno-return-type -w" |
23 |
MAKEEDIT_FLAGS="-Wno-return-type -w" |
| 18 |
|
24 |
|
|
|
25 |
# @FUNCTION: edit_makefiles |
| 26 |
# @DESCRIPTION: |
| 27 |
# Removes some flags in makefiles |
| 19 |
edit_makefiles() { |
28 |
edit_makefiles() { |
| 20 |
# We already add "-Wno-return-type -w" to compiler flags, so |
29 |
# We already add "-Wno-return-type -w" to compiler flags, so |
| 21 |
# no need to replace "-Wall" and "-Wreturn-type" with them. |
30 |
# no need to replace "-Wall" and "-Wreturn-type" with them. |