mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-30 23:48:09 +01:00
1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
23 lines
611 B
Makefile
23 lines
611 B
Makefile
# From: @(#)Makefile 1.8 (Berkeley) 6/8/93
|
|
# $FreeBSD$
|
|
|
|
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
|
|
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}
|
|
|
|
${.OBJDIR}/ref.bib.i ref.bib.i: ${.CURDIR}/ref.bib
|
|
${INDXBIB} -c ${.CURDIR}/../../../../contrib/groff/indxbib/eign -o ref.bib ${.CURDIR}/ref.bib
|
|
|
|
${.OBJDIR}/A.gt A.gt: ${.CURDIR}/A.t
|
|
${GRIND} < ${.CURDIR}/A.t > A.gt
|
|
|
|
.include <bsd.doc.mk>
|