diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2003-11-01 17:58:44 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-11-01 17:58:44 +0100 |
commit | 6377248ca02ac335ec847d74c4068ea0e9fe2b41 (patch) | |
tree | 3b2a575d7646904983bafe8d13ffabdf1124cf2f /gcc/Makefile.in | |
parent | f218d8208f9cd06262d20bb649cb1e3ceade9f00 (diff) | |
download | gcc-6377248ca02ac335ec847d74c4068ea0e9fe2b41.zip gcc-6377248ca02ac335ec847d74c4068ea0e9fe2b41.tar.gz gcc-6377248ca02ac335ec847d74c4068ea0e9fe2b41.tar.bz2 |
Makefile.in (GCC_CFLAGS): Add @WERROR@ for target files.
2003-11-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (GCC_CFLAGS): Add @WERROR@ for target files.
From-SVN: r73176
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0ecca9c..94627e2 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -287,7 +287,7 @@ GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isyste # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET. # It omits XCFLAGS, and specifies -B./. # It also specifies -isystem ./include to find, e.g., stddef.h. -GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) -isystem ./include $(TCFLAGS) +GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) @WERROR@ -isystem ./include $(TCFLAGS) # --------------------------------------------------- # Programs which produce files for the target machine |