aboutsummaryrefslogtreecommitdiff
path: root/gdb/Makefile.in
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-05-21 14:42:14 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-05-21 14:42:14 +0000
commitc41e08c472c86564b1583429f9c228e2a504c44c (patch)
tree550d9e817d6da5ce66ea42c678f2ea81490ccc6a /gdb/Makefile.in
parent7326242025e8f2044ecd483f0b5cc0b85851110c (diff)
downloadgdb-c41e08c472c86564b1583429f9c228e2a504c44c.zip
gdb-c41e08c472c86564b1583429f9c228e2a504c44c.tar.gz
gdb-c41e08c472c86564b1583429f9c228e2a504c44c.tar.bz2
* Makefile.in: Add rule for xcoffexec.o like that for paread.o.
* xcoffread.c (process_xcoff_symbol, case C_LSYM): Use define_symbol.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r--gdb/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 85bbff3..db65ef9 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -599,7 +599,6 @@ depend: $(SOURCES) Makefile.in
-e 'g' \
-e '/:.*\.tab\.c/d' \
-e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \
- -e 's;$${srcdir}/xcoffexec.c;-I$${BFD_DIR} &;' \
-e 's;$${srcdir}/xcoffread.c;-I$${BFD_DIR} &;' \
-e 's;$${srcdir}/stabsread.c;-I$${BFD_DIR} &;' \
-e 's;$${srcdir}/dwarfread.c;-I$${BFD_DIR} &;' \
@@ -871,6 +870,11 @@ m2-exp.tab.c: $(srcdir)/m2-exp.y $(srcdir)/Makefile.in
# output of dependency information. For now, just punt. (FIXME)
paread.o: ${srcdir}/paread.c
${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/paread.c
+# Used on RS6000 native.
+# This rule fails to get automatically generated in depend if
+# sys/ldr.h does not exist. (FIXME)
+xcoffexec.o: ${srcdir}/xcoffexec.c
+ ${CC} -c ${INTERNAL_CFLAGS} -I${BFD_DIR} ${srcdir}/xcoffexec.c
lint: $(LINTFILES)
$(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \