From f79edb02abf0e2f5c5b4d3aa4314127dd34f55b8 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Mon, 11 Nov 1991 17:51:21 +0000 Subject: [PATCH] Added the $(MINUS_G) flag so that debugging can be turned off --- binutils/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 316ce81a1c..9c1a4fa218 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.