aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-08-02 14:07:27 +0000
committerBruce Evans <bde@FreeBSD.org>1998-08-02 14:07:27 +0000
commit616553da2a6ca103c14cf0dd15af5d5e3cb4ab75 (patch)
tree56942b89d386e136319e0331705c8fe560c7f92d
parent98426f5632785b81296b2a33c12c471c9a1ceb68 (diff)
downloadsrc-616553da2a6ca103c14cf0dd15af5d5e3cb4ab75.tar.gz
src-616553da2a6ca103c14cf0dd15af5d5e3cb4ab75.zip
Cleaned up. tmac.srefs was in both SRCS and EXTRAS. The
SRCDIR=${.OBDDIR} hack is now unnecessary. It was never necessary to use so many explicit paths to ${.OBJDIR} and ${.CURDIR}.
Notes
Notes: svn path=/head/; revision=38016
-rw-r--r--share/doc/papers/memfs/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/share/doc/papers/memfs/Makefile b/share/doc/papers/memfs/Makefile
index 82c3365ea40e..5f05c3e8a6a9 100644
--- a/share/doc/papers/memfs/Makefile
+++ b/share/doc/papers/memfs/Makefile
@@ -1,22 +1,22 @@
# From: @(#)Makefile 1.8 (Berkeley) 6/8/93
-# $Id$
+# $Id: Makefile,v 1.6 1997/02/22 13:03:48 peter Exp $
VOLUME= papers
DOC= memfs
SRCS= tmac.srefs paper.t
MACROS= -ms
-REFER= refer -n -e -l -s -p ${.CURDIR}/ref.bib
-EXTRA= ref.bib A.t tmac.srefs
-CLEANFILES=ref.bib.i A.gt paper.t
+CLEANFILES=A.gt paper.t ref.bib.i
SRCDIR= ${.OBJDIR} # ack!
-paper.t: 0.t 1.t ${.OBJDIR}/ref.bib.i ${.OBJDIR}/A.gt
- ${REFER} ${.CURDIR}/0.t ${.CURDIR}/1.t A.gt > ${.TARGET}
+A.gt: A.t
+ ${GRIND} < ${.ALLSRC} > ${.TARGET}
-${.OBJDIR}/ref.bib.i ref.bib.i: ${.CURDIR}/ref.bib
- ${INDXBIB} -c ${.CURDIR}/../../../../contrib/groff/indxbib/eign -o ref.bib ${.CURDIR}/ref.bib
+paper.t: 0.t 1.t ref.bib.i A.gt
+ ${REFER} -n -e -l -s -p ${.CURDIR}/ref.bib ${.ALLSRC:Nref.bib.i} \
+ > ${.TARGET}
-${.OBJDIR}/A.gt A.gt: ${.CURDIR}/A.t
- ${GRIND} < ${.CURDIR}/A.t > A.gt
+ref.bib.i: ref.bib
+ ${INDXBIB} -c ${.CURDIR}/../../../../contrib/groff/indxbib/eign \
+ -o ref.bib ${.ALLSRC}
.include <bsd.doc.mk>