Add param.h to SRCS so it will get built before depending.

Remove bogus empty depend target.
This commit is contained in:
mycroft 1993-07-30 03:13:07 +00:00
parent b6f2050461
commit 889dce8d1b
1 changed files with 3 additions and 4 deletions

View File

@ -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>