diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-17 02:11:06 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-17 02:11:06 +0000 |
commit | d99d7e264430e26e9070b4908a6e81103aa92747 (patch) | |
tree | a3d4fffbbf8472e9780804ce998a1de9efb01a58 /Makeconfig | |
parent | 7176f4e4b5ffc9765f3a43c53bc2f96cc3909700 (diff) | |
download | glibc-d99d7e264430e26e9070b4908a6e81103aa92747.tar.gz |
* gmon/Makefile (CFLAGS-mcount.c): New variable.
(mcount.po): New target.
* Makeconfig (CFLAGS): Append $(CFLAGS-$(<F)).
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makeconfig b/Makeconfig index 03df0d56dd..ce057c3a01 100644 --- a/Makeconfig +++ b/Makeconfig @@ -1,4 +1,4 @@ -# Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +# Copyright (C) 1991, 92, 93, 94, 95, 96 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 @@ -421,7 +421,8 @@ libio-include = -I$(..)libio # These are the variables that the implicit compilation rules use. CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \ $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) -override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) +override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) \ + $(CFLAGS-$(<F)) # This is the macro that the implicit linking rules use. |