diff options
author | Roland McGrath <roland@gnu.org> | 2008-01-30 00:24:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2008-01-30 00:24:16 +0000 |
commit | 16cd816fd04bd3982c5333c2df76c88e39031522 (patch) | |
tree | b5f21deb153bc5f4e60aa1bc235b9d123d121543 /Makeconfig | |
parent | f641ffccd8cdad83f403fe44e14ab0748c8bb39a (diff) | |
download | glibc-16cd816fd04bd3982c5333c2df76c88e39031522.zip glibc-16cd816fd04bd3982c5333c2df76c88e39031522.tar.gz glibc-16cd816fd04bd3982c5333c2df76c88e39031522.tar.bz2 |
* Makeconfig (sysd-rules-patterns): New variable.
* Makerules ($(common-objpfx)sysd-rules): Drive the loop from that.
(check-inhibit-asm): New canned sequence, replaces ...
(open-check-inhibit-asm, close-check-inhibit-asm): ... these, removed.
* elf/rtld-Rules ($(objpfx)rtld-%.os): Use $(rtld-CPPFLAGS) in commands.
(rtld-CPPFLAGS): Renamed from CPPFLAGS-rtld.
(CFLAGS-rtld): Variable removed.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,5 @@ -# Copyright (C) 1991-2003,2004,2005,2006,2007 Free Software Foundation, Inc. +# Copyright (C) 1991-2003,2004,2005,2006,2007,2008 +# Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -931,6 +932,12 @@ $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk \ $(all-Depend-files): ; endif +# This gives partial TARGET:SOURCE pattern pairs to have rules +# emitted into sysd-rules. A sysdeps Makeconfig fragment can +# add its own special object file prefix to this list with e.g. foo-%:% +# to have foo-*.? compiled from *.? using $(foo-CPPFLAGS). +sysd-rules-patterns := %:% rtld-%:% m_%:s_% + # Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here. sysdep-makeconfigs := $(wildcard $(+sysdep_dirs:=/Makeconfig)) ifneq (,$(sysdep-makeconfigs)) |