summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-05-09 18:13:54 +0000
committerache <ache@FreeBSD.org>1994-05-09 18:13:54 +0000
commit4217405d7785d9d6a54c04061d75b4263a96fe8c (patch)
tree36150f3ad3f0b367eba9d49283f0f156f5e9bbbb /gnu/usr.bin
parent34618ed686c5bc3f1ac051039bb8248f133fa5a2 (diff)
downloadFreeBSD-src-4217405d7785d9d6a54c04061d75b4263a96fe8c.zip
FreeBSD-src-4217405d7785d9d6a54c04061d75b4263a96fe8c.tar.gz
Remove readline copy, now gdb use gnu lib tree libreadline
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/gdb/Makefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/gnu/usr.bin/gdb/Makefile b/gnu/usr.bin/gdb/Makefile
index 550ed07..897c510 100644
--- a/gnu/usr.bin/gdb/Makefile
+++ b/gnu/usr.bin/gdb/Makefile
@@ -8,13 +8,12 @@ GDBSRCS= blockframe.c breakpoint.c command.c copying.c core.c \
remote-sl.c source.c stack.c symmisc.c symtab.c \
utils.c valarith.c valops.c valprint.c values.c \
version.c
-READLINESRCS= funmap.c history.c keymaps.c readline.c
-SRCS= $(CONFIGSRCS) $(GDBSRCS) $(READLINESRCS) init.c
-CFLAGS+= -I. -I$(.CURDIR) -I$(.CURDIR)/config -I$(.CURDIR)/readline \
- -DHAVE_VPRINTF -DVI_MODE -DKERNELDEBUG -DNEWVM
-LDADD= -ltermcap
+SRCS= $(CONFIGSRCS) $(GDBSRCS) init.c
+CFLAGS+= -I. -I$(.CURDIR) -I$(.CURDIR)/config \
+ -DHAVE_VPRINTF -DKERNELDEBUG -DNEWVM
+LDADD= -lreadline -ltermcap
YFLAGS=
-.PATH: $(.CURDIR)/config $(.CURDIR)/readline
+.PATH: $(.CURDIR)/config
depend:
@@ -29,9 +28,7 @@ $(OBJS): param.h
init.c: $(CONFIGSRCS) $(GDBSRCS) $(READLINESRCS)
-((cd $(.CURDIR)/config; \
egrep -h '^_initialize_[^ ]* *\(\)' $(CONFIGSRCS)); \
- (cd $(.CURDIR); egrep -h '^_initialize_[^ ]* *\(\)' $(GDBSRCS)); \
- (cd $(.CURDIR)/readline; \
- egrep -h '^_initialize_[^ ]* *\(\)' $(READLINESRCS))) | \
+ (cd $(.CURDIR); egrep -h '^_initialize_[^ ]* *\(\)' $(GDBSRCS))) | \
(echo 'void initialize_all_files () {'; sed -e 's/$$/;/'; echo '}') \
> init.c
OpenPOWER on IntegriCloud