aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1991-11-11 17:51:21 +0000
committerSteve Chamberlain <sac@cygnus>1991-11-11 17:51:21 +0000
commitf79edb02abf0e2f5c5b4d3aa4314127dd34f55b8 (patch)
treefedbda12268a933f95147bb2b1012e22d362ee14 /binutils
parentfb6604097b9837e0e07cb3ec3237fa43eaffc573 (diff)
downloadfsf-binutils-gdb-f79edb02abf0e2f5c5b4d3aa4314127dd34f55b8.zip
fsf-binutils-gdb-f79edb02abf0e2f5c5b4d3aa4314127dd34f55b8.tar.gz
fsf-binutils-gdb-f79edb02abf0e2f5c5b4d3aa4314127dd34f55b8.tar.bz2
Added the $(MINUS_G) flag so that debugging can be turned off
Diffstat (limited to 'binutils')
-rw-r--r--binutils/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in
index 316ce81..9c1a4fa 100644
--- a/binutils/Makefile.in
+++ b/binutils/Makefile.in
@@ -65,12 +65,13 @@ STAGESTUFF = $(PROGS) *.o
BASEDIR = $(srcdir)/..
LIBDIR = $(unsubdir)/../bfd$(subdir)
+MINUS_G = -g
#### host and target dependant Makefile fragments come in here.
###
INCDIR = $(BASEDIR)/include
-CFLAGS = -g -I. -I$(srcdir) -I$(INCDIR) $(HDEFINES) $(TDEFINES)
+CFLAGS = $(MINUS_G) -I. -I$(srcdir) -I$(INCDIR) $(HDEFINES) $(TDEFINES)
# When adding .o files, to make VPATH work in Sun Make, you have to
# also add a foo.o: foo.c line at the bottom of the file.