blob: 6045b2260094bec5a0e1c2814679119085049fc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# @(#)Makefile 8.1 (Berkeley) 6/8/93
# The following modules do not build/install:
# 10.gdb, 13.rcs
BINDIR= /usr/share/doc/psd
FILES= 00.contents Makefile Title
SUBDIR= 01.cacm 02.implement 03.iosys 04.uprog 05.sysman 06.Clang \
07.pascal 08.f77 09.f77io 11.adb 12.make 14.sccs 15.yacc \
16.lex 17.m4 18.gprof 19.curses 20.ipctut 21.ipc
Title.ps: ${FILES}
groff Title > ${.TARGET}
contents.ps: ${FILES}
groff -ms 00.contents > ${.TARGET}
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
${DESTDIR}${BINDIR}
.include <bsd.subdir.mk>
|