From 85ef2f5a10c36484464410da86b1a99549a400dc Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Wed, 7 Aug 1996 22:38:13 +0000 Subject: [PATCH] Added prod rule. --- src/bpt/Makefile.Unix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/bpt/Makefile.Unix b/src/bpt/Makefile.Unix index f4aadbcc5..775576a06 100644 --- a/src/bpt/Makefile.Unix +++ b/src/bpt/Makefile.Unix @@ -3,9 +3,13 @@ include $(TOP)/config/CONFIG_BASE INC += cvtTable.h -SRCS.c = ../makeBpt -OBJS = makeBpt +SRCS.c = ../makeBpt.c +OBJS = makeBpt.o PROD = makeBpt include $(TOP)/config/RULES.Unix +$(PROD): $(OBJS) $(DEPLIBS) + $(RM) $@ + $(LINK.c) -o $@ ${OBJS} $(LDLIBS) +