diff options
author | K. Richard Pixley <rich@cygnus> | 1991-04-17 01:58:08 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-04-17 01:58:08 +0000 |
commit | 9bba77849185628b38d21f095f389e0397cab616 (patch) | |
tree | 9a6e844f2526a188ae833cdbbc6dddea9eb6dc0a /binutils | |
parent | 04dc1a624658fec9497b26b86058d040b743ff44 (diff) | |
download | gdb-9bba77849185628b38d21f095f389e0397cab616.zip gdb-9bba77849185628b38d21f095f389e0397cab616.tar.gz gdb-9bba77849185628b38d21f095f389e0397cab616.tar.bz2 |
Now uses getopt from ../getopt.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/Makefile.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 9a15521..f4e7f98 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -60,9 +60,9 @@ LIBDIR = $(srcdir)/../bfd$(subdir) #### host and target dependant Makefile fragments come in here. ### -INCDIR = $(BASEDIR)/include-cygnus +INCDIR = $(BASEDIR)/include -CFLAGS = -g -I$(INCDIR) $(DEFINES) $(CDEFINES) +CFLAGS = -g -I$(srcdir)/../include-cygnus -I$(INCDIR) $(DEFINES) $(CDEFINES) bindir=$(BASEDIR)/bin @@ -84,11 +84,8 @@ DISASMS = m68k-pinsn.o i960-pinsn.o sparc-pinsn.o # Use the GNU getopt unless you have problems with it. # The IRIS version could probably benefit from being assembled with # libmalloc rather than the ordinary malloc. -GNU_GETOPT = getopt.o $(ALLOCA) -GNU_GETOPT_LONG = getopt1.o $(GNU_GETOPT) - - - +#GNU_GETOPT = $(srcdir)/../getopt$(subdir)/libgetopt.a +GNU_GETOPT_LONG = $(srcdir)/../getopt$(subdir)/libgetopt.a # Code shared by all the binutils. BULIBS = bucomm.o version.o filemode.o |