diff options
author | peter <peter@FreeBSD.org> | 1997-03-29 10:33:13 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-29 10:33:13 +0000 |
commit | 2dffd9b51d0fde620672251fcbeb3116eed8686f (patch) | |
tree | 48766fedb2468b9c1e2e167f8c8d960a019318d6 /gnu/usr.bin | |
parent | 34b7382753533a50aa74c3a6e661f237e8824b82 (diff) | |
download | FreeBSD-src-2dffd9b51d0fde620672251fcbeb3116eed8686f.zip FreeBSD-src-2dffd9b51d0fde620672251fcbeb3116eed8686f.tar.gz |
generate c-exp.c, f-exp.c and m2-exp.c with yacc rather than using
the generated ones in the gdb dist.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/Makefile | 7 | ||||
-rw-r--r-- | gnu/usr.bin/gdb/gdb/Makefile | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/gnu/usr.bin/binutils/gdb/Makefile b/gnu/usr.bin/binutils/gdb/Makefile index 6f0be05..747219e 100644 --- a/gnu/usr.bin/binutils/gdb/Makefile +++ b/gnu/usr.bin/binutils/gdb/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 1997/03/12 22:34:07 gj Exp $ +# $Id: Makefile,v 1.19 1997/03/15 20:59:59 gj Exp $ PROG = gdb @@ -23,7 +23,7 @@ SRCS = annotate.c blockframe.c breakpoint.c buildsym.c c-lang.c \ symtab.c target.c thread.c top.c \ typeprint.c utils.c valarith.c valops.c \ valprint.c values.c version.c serial.c ser-unix.c mdebugread.c\ - c-exp.tab.c f-exp.tab.c m2-exp.tab.c i387-tdep.c \ + c-exp.c f-exp.c m2-exp.c 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 \ @@ -36,6 +36,9 @@ CFLAGS+= -DNO_MMALLOC # uncomment the next line if you want to debug gdb #CFLAGS+= -g +CLEANFILES+= c-exp.c f-exp.c m2-exp.c y.tab.h +beforedepend: c-exp.c f-exp.c m2-exp.c + .if exists(${.OBJDIR}/../bfd) LDADD+= -L${.OBJDIR}/../bfd -lbfd DPADD+= ${.OBJDIR}/../bfd/libbfd.a diff --git a/gnu/usr.bin/gdb/gdb/Makefile b/gnu/usr.bin/gdb/gdb/Makefile index 6f0be05..747219e 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile +++ b/gnu/usr.bin/gdb/gdb/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 1997/03/12 22:34:07 gj Exp $ +# $Id: Makefile,v 1.19 1997/03/15 20:59:59 gj Exp $ PROG = gdb @@ -23,7 +23,7 @@ SRCS = annotate.c blockframe.c breakpoint.c buildsym.c c-lang.c \ symtab.c target.c thread.c top.c \ typeprint.c utils.c valarith.c valops.c \ valprint.c values.c version.c serial.c ser-unix.c mdebugread.c\ - c-exp.tab.c f-exp.tab.c m2-exp.tab.c i387-tdep.c \ + c-exp.c f-exp.c m2-exp.c 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 \ @@ -36,6 +36,9 @@ CFLAGS+= -DNO_MMALLOC # uncomment the next line if you want to debug gdb #CFLAGS+= -g +CLEANFILES+= c-exp.c f-exp.c m2-exp.c y.tab.h +beforedepend: c-exp.c f-exp.c m2-exp.c + .if exists(${.OBJDIR}/../bfd) LDADD+= -L${.OBJDIR}/../bfd -lbfd DPADD+= ${.OBJDIR}/../bfd/libbfd.a |