diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-12 04:32:57 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-12 04:32:57 +0000 |
commit | 080f6324d6f26240db989a3f53c30a1ff2912c8e (patch) | |
tree | c6c05950562fb9208b605eb367012c1b32d95896 /bfd/Makefile.in | |
parent | b773e0e582eca98a54dfc24741084a64406f3fb0 (diff) | |
download | gdb-080f6324d6f26240db989a3f53c30a1ff2912c8e.zip gdb-080f6324d6f26240db989a3f53c30a1ff2912c8e.tar.gz gdb-080f6324d6f26240db989a3f53c30a1ff2912c8e.tar.bz2 |
Mon Nov 11 20:30:18 1991 Steve Chamberlain (sac at cygnus.com)
* Makefile.in: standardize on MINUS_G to disable debugging
* coff-m88k.c: create coff armaps instead of bsd ones.
* opncls.c (bfd_close_all_done), (bfd_close): Mask out random bits
when calling chmod.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 08e715d..ae3f44c 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -21,8 +21,8 @@ # $Id$ srcdir = . -destdir = /usr/local -libdir = $(destdir)/H-$(host_alias)/T-independent/lib +ddestdir = /usr/local +libdir = $(ddestdir)/lib docdir = $(srcdir)/doc RANLIB = ranlib @@ -31,13 +31,14 @@ AR_FLAGS = clq INCDIR = $(srcdir)/../include CSEARCH = -I. -I$(srcdir) -I$(INCDIR) DEP = mkdep +MINUS_G=-g #### host and target dependent Makefile fragments come in here. ### TARGETLIB = libbfd.a -CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION +CFLAGS = $(MINUS_G) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \ |