summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-05-04 17:56:22 +0000
committerBruce Evans <bde@FreeBSD.org>1998-05-04 17:56:22 +0000
commite4e61e7b974528a7a638b489a67176218120cbb9 (patch)
treed3d24c0f0a16e16f1d892eb9fb383100d956d5ba /gnu/usr.bin/binutils
parente60606c0af82dde4827e63bf398fa40dc20c1f03 (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/binutils')
-rw-r--r--gnu/usr.bin/binutils/gdb/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/usr.bin/binutils/gdb/Makefile b/gnu/usr.bin/binutils/gdb/Makefile
index 5e0b755b8bed..9a90c02f8b63 100644
--- a/gnu/usr.bin/binutils/gdb/Makefile
+++ b/gnu/usr.bin/binutils/gdb/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.32 1998/04/30 08:03:49 dfr Exp $
+# $Id: Makefile,v 1.33 1998/05/01 14:44:00 bde Exp $
PROG = gdb
@@ -32,7 +32,7 @@ XSRCS = annotate.c blockframe.c breakpoint.c buildsym.c c-lang.c \
typeprint.c utils.c valarith.c valops.c \
valprint.c values.c version.c \
serial.c ser-unix.c ser-tcp.c mdebugread.c \
- c-exp.c f-exp.c m2-exp.c i387-tdep.c \
+ c-exp.y f-exp.y m2-exp.y i387-tdep.c \
kvm-fbsd.c bcache.c \
corefile.c ch-exp.c f-lang.c scm-exp.c scm-lang.c \
scm-valprint.c f-typeprint.c f-valprint.c nlmread.c \
@@ -45,8 +45,9 @@ CFLAGS+= -I$(.CURDIR) -I${DESTDIR}/usr/include/readline -I${BFDDIR}
CFLAGS+= -DNO_MMALLOC
# uncomment the next line if you want to debug gdb
#CFLAGS+= -g
+YFLAGS=
-CLEANFILES+= c-exp.c f-exp.c m2-exp.c init.c y.tab.h init.c-tmp
+CLEANFILES= init.c init.c-tmp
.if ${BINFORMAT} == elf
@@ -83,8 +84,6 @@ LDADD= ${LIBBFD} -lreadline -lgnuregex ${LIBIBERTY} -ltermcap
DPADD+= ${LIBIBERTY}
LDADD+= ${LIBIBERTY}
-.ORDER: c-exp.c f-exp.c m2-exp.c
-
# We do this by grepping through sources. If that turns out to be too slow,
# maybe we could just require every .o file to have an initialization routine
# of a given name (remote-udi.o -> _initialize_remote_udi, etc.).