aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.in
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-11-17 23:25:35 +0000
committerIan Lance Taylor <ian@airs.com>1993-11-17 23:25:35 +0000
commit9cc8106c4758ff0fe5d10046ec737018476c9bdc (patch)
tree668102207f3831072b1a535b4cab1c50b51e84d8 /gas/Makefile.in
parent55ff7aef7e1d4bf0ab94c4470d80b56ff44ce763 (diff)
downloadgdb-9cc8106c4758ff0fe5d10046ec737018476c9bdc.zip
gdb-9cc8106c4758ff0fe5d10046ec737018476c9bdc.tar.gz
gdb-9cc8106c4758ff0fe5d10046ec737018476c9bdc.tar.bz2
* Makefile.in (REAL_SOURCES): Added ecoff.c.
(REAL_HEADERS): Added ecoff.h. (OBJS): Added ecoff.o. (ecoff.o): New target.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r--gas/Makefile.in13
1 files changed, 11 insertions, 2 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in
index cf201f4..22fb620 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -50,7 +50,7 @@ infodir = $(prefix)/info
includedir = $(prefix)/include
docdir = $(datadir)/doc
-VERSION=2.1.4
+VERSION=cygnus-2.2.1
SHELL = /bin/sh
@@ -155,6 +155,7 @@ REAL_SOURCES = \
$(srcdir)/symbols.c \
$(srcdir)/write.c \
$(srcdir)/listing.c \
+ $(srcdir)/ecoff.c \
$(srcdir)/xmalloc.c
# in an expedient order
@@ -180,7 +181,8 @@ REAL_HEADERS = \
$(srcdir)/struc-symbol.h \
$(srcdir)/subsegs.h \
$(srcdir)/symbols.h \
- $(srcdir)/write.h
+ $(srcdir)/write.h \
+ $(srcdir)/ecoff.h
LINKED_HEADERS = \
a.out.gnu.h \
@@ -218,6 +220,7 @@ OBJS = \
symbols.o \
write.o \
listing.o \
+ ecoff.o \
xmalloc.o
#### host, target, and site specific Makefile frags come in here.
@@ -359,6 +362,12 @@ write.o : write.c as.h host.h targ-env.h obj-format.h \
targ-cpu.h struc-symbol.h \
write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
subsegs.h output-file.h
+ecoff.o : ecoff.c as.h host.h targ-env.h obj-format.h \
+ targ-cpu.h struc-symbol.h \
+ write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
+ ecoff.h $(srcdir)/../include/coff/internal.h \
+ $(srcdir)/../include/coff/sym.h $(srcdir)/../include/coff/ecoff.h \
+ $(srcdir)/../include/coff/symconst.h $(srcdir)/../include/aout/stab_gnu.h
xmalloc.o : xmalloc.c
atof-targ.o : atof-targ.c as.h host.h targ-env.h obj-format.h \
targ-cpu.h struc-symbol.h \