26 lines
700 B
Makefile
26 lines
700 B
Makefile
# from: @(#)Makefile 5.1.1.1 (Berkeley) 5/7/91
|
|
# $Id: Makefile,v 1.5 1993/09/30 23:31:23 jtc Exp $
|
|
|
|
#Missing: 01.begin 02.learn 03.shell 05.dc 06.bc 08.mh 12.edtut 13.edadv
|
|
# 17.jove 18.sed 19.awk 20.msmacros 24.troff 25.trofftut 26.eqn
|
|
# 27.eqnguide 28.tbl 29.refer 30.invert 31.bib 32.diction
|
|
#
|
|
#Broken: 11.notes
|
|
|
|
BINDIR= /usr/share/doc/usd
|
|
FILES= 00.contents Makefile Title
|
|
SUBDIR= 04.csh 07.Mail \
|
|
09.newsread 10.etiq 14.edit 15.vi \
|
|
16.ex 21.msdiffs 22.memacros \
|
|
23.meref \
|
|
33.rogue 34.trek
|
|
|
|
beforeinstall:
|
|
@install -d -o root -g wheel -m 755 ${DESTDIR}${BINDIR}
|
|
|
|
realinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
${DESTDIR}${BINDIR}
|
|
|
|
.include <bsd.subdir.mk>
|