summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-02-22 00:44:39 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-02-22 00:44:39 +0000
commitbd978a3cd2531b8b9199c83ee514bfc7a1b95854 (patch)
treeff9d20201c02fa122d4a1c614b77485489c67e6f
parentde2ca60c36adf86ab93dc4eab15cb44a8045453b (diff)
From NetBSD:
Added explicit dependencies on yacc generated files. From Luke Mewburn <lukem@supp.cpr.itg.telecom.com.au>. Fixes PR #2032.
-rw-r--r--usr.sbin/gspa/gspa/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/gspa/gspa/Makefile b/usr.sbin/gspa/gspa/Makefile
index 61ac04bd471..06eb031b761 100644
--- a/usr.sbin/gspa/gspa/Makefile
+++ b/usr.sbin/gspa/gspa/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 1995/11/17 10:05:23 thorpej Exp $
+# $NetBSD: Makefile,v 1.3 1996/02/06 18:30:58 jtc Exp $
PROG= gspa
CFLAGS+=-I. -I${.CURDIR}
@@ -8,4 +8,6 @@ SRCS= gsp_gram.c gspa.c gsp_out.c gsp_sym.c gsp_lex.c gsp_act.c \
NOMAN= noman
CLEANFILES+=gsp_gram.c y.tab.h
+gsp_eval.o gsp_lex.o gspa.o: gsp_gram.c
+
.include <bsd.prog.mk>