summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-07-30 03:13:07 +0000
committermycroft <mycroft@NetBSD.org>1993-07-30 03:13:07 +0000
commit889dce8d1b6de5b72e05353cea6444862b6a1c42 (patch)
tree5818ce2420a20c644e6a43676e151e807c7ccb0c /gnu
parentb6f205046194c0d9e3958faee8f4fc842ffb1f5e (diff)
Add param.h to SRCS so it will get built before depending.
Remove bogus empty depend target.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/gdb/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/usr.bin/gdb/Makefile b/gnu/usr.bin/gdb/Makefile
index 550ed07a757..62c950933e6 100644
--- a/gnu/usr.bin/gdb/Makefile
+++ b/gnu/usr.bin/gdb/Makefile
@@ -9,15 +9,14 @@ GDBSRCS= blockframe.c breakpoint.c command.c copying.c core.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
+SRCS= param.h $(CONFIGSRCS) $(GDBSRCS) $(READLINESRCS) init.c
CFLAGS+= -I. -I$(.CURDIR) -I$(.CURDIR)/config -I$(.CURDIR)/readline \
-DHAVE_VPRINTF -DVI_MODE -DKERNELDEBUG -DNEWVM
-LDADD= -ltermcap
+LDADD+= -ltermcap
+DPADD+= /usr/lib/libtermcap.a
YFLAGS=
.PATH: $(.CURDIR)/config $(.CURDIR)/readline
-depend:
-
.include "config/Makefile.$(MACHINE)"
.include <bsd.prog.mk>