35732dda77
Added forgotten share/doc/psd/05.sysman and share/zoneinfo/America/Indiana. bsd.doc.mk: Nuked mkdir -p and wrong fixups of the leaf directory's ownerships and permissions. The doc tree should be well enough established for this to be safe. Installs to directories should use a trailing slash on the directory name so installs to non-drectories are fatal, but I didn't start changing them. bsd.man.mk: Nuked mkdir -p and wrong fixups of the leaf directory's ownerships and permissions. They were overkill to create just /usr/share/info. zoneinfo/Makefile: No changes yet. zic creates directories with ordinary 755 permissions. Why do we use 555 permissions for directories in /usr/share/zoninfo. Why not for zoneinfo itself? /proc and /dev/fd are the only other directories in the system with 555 permissions.
65 lines
1.4 KiB
Makefile
65 lines
1.4 KiB
Makefile
# $Id: bsd.info.mk,v 1.18 1996/06/24 04:23:58 jkh Exp $
|
|
|
|
BINMODE= 444
|
|
BINDIR?= /usr/share/info
|
|
MAKEINFO?= makeinfo
|
|
MAKEINFOFLAGS+= --no-split # simplify some things, e.g., compression
|
|
|
|
.MAIN: all
|
|
|
|
.SUFFIXES: .gz .info .texi .texinfo
|
|
.texi.info:
|
|
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} ${.IMPSRC} -o ${.TARGET}
|
|
.texinfo.info:
|
|
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} ${.IMPSRC} -o ${.TARGET}
|
|
|
|
.PATH: ${.CURDIR}
|
|
|
|
.if !defined(NOINFOCOMPRESS)
|
|
IFILES= ${INFO:S/$/.info.gz/g}
|
|
all: ${IFILES} _SUBDIR
|
|
.else
|
|
IFILES= ${INFO:S/$/.info/g}
|
|
all: ${IFILES} _SUBDIR
|
|
.endif
|
|
|
|
GZIPCMD?= gzip
|
|
|
|
.for x in ${INFO:S/$/.info/g}
|
|
${x:S/$/.gz/}: ${x}
|
|
${GZIPCMD} -c ${.ALLSRC} > ${.TARGET}
|
|
.endfor
|
|
|
|
# The default is "info" and it can never be "bin"
|
|
DISTRIBUTION?= info
|
|
.if ${DISTRIBUTION} == "bin"
|
|
DISTRIBUTION= info
|
|
.endif
|
|
|
|
.if !target(distribute)
|
|
distribute: _SUBDIR
|
|
cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${DISTRIBUTION} SHARED=copies
|
|
.endif
|
|
|
|
.if defined(SRCS)
|
|
${INFO}.info: ${SRCS}
|
|
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} ${SRCS:S/^/${.CURDIR}\//g} -o ${INFO}.info
|
|
.endif
|
|
|
|
depend: _SUBDIR
|
|
@echo -n
|
|
|
|
clean: _SUBDIR
|
|
rm -f ${INFO:S/$/.info*/g} Errs errs mklog ${CLEANFILES}
|
|
|
|
install: _SUBDIR
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${IFILES} ${DESTDIR}${BINDIR}
|
|
|
|
.if !target(maninstall)
|
|
maninstall: _SUBDIR
|
|
.endif
|
|
|
|
.include <bsd.dep.mk>
|
|
.include <bsd.obj.mk>
|