From 651e3d05e434c737bfe00e529ed774fa311427e5 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 8 Apr 1987 08:56:34 +0000 Subject: [PATCH] don't use $?, it does not work properly (?) --- doc/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/Makefile b/doc/Makefile index 7ff05374b..b735a3b83 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,17 +22,17 @@ RESFILES= \ $(NROFF) $(MS) $< > $@ crefman.$(SUF): crefman.doc - $(EQN) $? | $(NROFF) $(MS) >$@ + $(EQN) crefman.doc | $(NROFF) $(MS) >$@ v7bugs.$(SUF): v7bugs.doc - $(NROFF) $? >$@ + $(NROFF) v7bugs.doc >$@ install.$(SUF): install.doc - $(TBL) $? | $(NROFF) $(MS) >$@ + $(TBL) install.doc | $(NROFF) $(MS) >$@ pcref.$(SUF): pcref.doc - $(NROFF) $? >$@ + $(NROFF) pcref.doc >$@ val.$(SUF): val.doc - $(NROFF) $? >$@ + $(NROFF) val.doc >$@ 6500.$(SUF): 6500.doc - $(TBL) $? | $(NROFF) $(MS) >$@ + $(TBL) 6500.doc | $(NROFF) $(MS) >$@ LLgen.doc: LLgen.X LLgen.X: cd LLgen; make "EQN="$(EQN) "TBL="$(TBL) "REFER="$(REFER) -- 2.34.1