2002-08-14 00:07:31 +04:00
|
|
|
# $NetBSD: Makefile,v 1.9 2002/08/13 20:07:31 pooka Exp $
|
1998-01-09 07:11:49 +03:00
|
|
|
# from: @(#)Makefile 8.2 (Berkeley) 5/23/94
|
1993-11-09 06:36:33 +03:00
|
|
|
|
|
|
|
DIR= psd/19.curses
|
|
|
|
SRCS= Master
|
|
|
|
MACROS= -me
|
1999-01-27 01:45:02 +03:00
|
|
|
OTHER= appen.A appen.B appen.C doc.I doc.II doc.III doc.IV fns.doc \
|
|
|
|
intro.0 intro.1 intro.3 intro.4 intro.5 intro.6 \
|
|
|
|
macros c_macros
|
|
|
|
CEXAMPLES= ex1.gr ex2.gr life.gr twinkle1.gr twinkle2.gr win_st.gr
|
|
|
|
TBLFILES= intro.2.tbl
|
|
|
|
EXTRA= ${OTHER} ${CEXAMPLES:R:S/$/.c/g} ${TBLFILES:R}
|
1993-11-09 06:36:33 +03:00
|
|
|
|
1999-01-27 01:45:02 +03:00
|
|
|
CLEANFILES+= ${CEXAMPLES} ${TBLFILES}
|
1993-11-09 06:36:33 +03:00
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .gr
|
|
|
|
|
|
|
|
#
|
|
|
|
# this section formats C input source into nice troffable (or nroffable)
|
|
|
|
# versions. It uses the capabilites of "vgrind", which sets keywords in
|
|
|
|
# bold font, and comments in italics.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Don't re-run vgrind unless you want to patch the output files.
|
|
|
|
VFONT= /usr/libexec/vfontedpr
|
|
|
|
.c.gr:
|
1997-12-21 17:43:31 +03:00
|
|
|
${VFONT} ${.IMPSRC} | grep -v "^'wh" > ${.TARGET}
|
1993-11-09 06:36:33 +03:00
|
|
|
|
1999-01-27 01:45:02 +03:00
|
|
|
paper.ps: ${SRCS} ${OTHER} ${CEXAMPLES} ${TBLFILES}
|
2002-08-14 00:07:31 +04:00
|
|
|
${SOELIM} -I${.CURDIR} Master | ${ROFF} ${MACROS} > ${.TARGET}
|
1993-11-09 06:36:33 +03:00
|
|
|
|
1999-01-27 01:45:02 +03:00
|
|
|
# Unfortunately our make doesn't handle single-suffix rules.
|
1993-11-09 06:36:33 +03:00
|
|
|
intro.2.tbl: intro.2
|
1999-01-27 01:45:02 +03:00
|
|
|
${TBL} ${.ALLSRC} > ${.TARGET}
|
1993-11-09 06:36:33 +03:00
|
|
|
|
|
|
|
.include <bsd.doc.mk>
|