mirror of git://gcc.gnu.org/git/gcc.git
Makefile.in (SHELL): Set to @SHELL@.
* Makefile.in (SHELL): Set to @SHELL@. (WARN_CFLAGS): New. (ALL_CFLAGS): Add $(WARN_CFLAGS). From-SVN: r53662
This commit is contained in:
parent
500abaa854
commit
9aa338ece2
|
@ -1,3 +1,9 @@
|
||||||
|
2002-05-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
|
* Makefile.in (SHELL): Set to @SHELL@.
|
||||||
|
(WARN_CFLAGS): New.
|
||||||
|
(ALL_CFLAGS): Add $(WARN_CFLAGS).
|
||||||
|
|
||||||
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
* aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
|
* aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#Makefile.in files. Some of this stuff may be unnecessary and
|
#Makefile.in files. Some of this stuff may be unnecessary and
|
||||||
#worthless.
|
#worthless.
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = @SHELL@
|
||||||
MAKEOVERRIDES=
|
MAKEOVERRIDES=
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
@ -67,8 +67,9 @@ RANLIB = @RANLIB@
|
||||||
|
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
|
WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes
|
||||||
GTHREAD_FLAGS=@GTHREAD_FLAGS@
|
GTHREAD_FLAGS=@GTHREAD_FLAGS@
|
||||||
ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) \
|
ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \
|
||||||
$(GTHREAD_FLAGS) -DIN_GCC -DIN_TARGET_LIBS
|
$(GTHREAD_FLAGS) -DIN_GCC -DIN_TARGET_LIBS
|
||||||
|
|
||||||
# Libtool
|
# Libtool
|
||||||
|
|
Loading…
Reference in New Issue