mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 02:20:51 +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.
162 lines
3.6 KiB
Makefile
162 lines
3.6 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# The include file <bsd.info.mk> handles installing GNU (tech)info files.
|
|
# Texinfo is a documentation system that uses a single source
|
|
# file to produce both on-line information and printed output.
|
|
# <bsd.info.mk> includes the files <bsd.dep.mk> and <bsd.obj.mk>.
|
|
#
|
|
#
|
|
# +++ variables +++
|
|
#
|
|
# CLEANFILES Additional files to remove for the clean and cleandir targets.
|
|
#
|
|
# DESTDIR Change the tree where the info files gets installed. [not set]
|
|
#
|
|
# DISTRIBUTION Name of distribution. [info]
|
|
#
|
|
# GZIPCMD Program to compress info files. Output is to
|
|
# stdout. [gzip -c]
|
|
#
|
|
# INFO ???
|
|
#
|
|
# INFODIR Base path for GNU's hypertext system
|
|
# called Info (see info(1)). [${SHAREDIR}/info]
|
|
#
|
|
# INFODIRFILE Top level node/index for info files. [dir]
|
|
#
|
|
# INFOGRP Info group. [${SHAREGRP}]
|
|
#
|
|
# INFOMODE Info mode. [${NOBINMODE}]
|
|
#
|
|
# INFOOWN Info owner. [${SHAREOWN}]
|
|
#
|
|
# INFOSECTION ??? [Miscellaneous]
|
|
#
|
|
# INFOTMPL ??? [/usr/share/info/dir-tmpl]
|
|
#
|
|
# INSTALLINFO ??? [install-info]
|
|
#
|
|
# INSTALLINFODIRS ???
|
|
#
|
|
# MAKEINFO A program for converting GNU Texinfo files into Info
|
|
# file. [makeinfo]
|
|
#
|
|
# MAKEINFOFLAGS Options for ${MAKEINFO} command. [--no-split]
|
|
#
|
|
# NOINFO Do not make or install info files. [not set]
|
|
#
|
|
# NOINFOCOMPRESS If you do not want info files be
|
|
# compressed when they are installed. [not set]
|
|
#
|
|
#
|
|
# +++ targets +++
|
|
#
|
|
# clean:
|
|
# remove *.info* Errs errs mklog ${CLEANFILES}
|
|
#
|
|
# depend:
|
|
# Dummy target, do nothing.
|
|
#
|
|
# distribute:
|
|
# This is a variant of install, which will
|
|
# put the stuff into the right "distribution".
|
|
#
|
|
# install:
|
|
# Install the info files.
|
|
#
|
|
# maninstall:
|
|
# Dummy target, do nothing.
|
|
#
|
|
#
|
|
# bsd.obj.mk: cleandir and obj
|
|
|
|
MAKEINFO?= makeinfo
|
|
MAKEINFOFLAGS+= --no-split # simplify some things, e.g., compression
|
|
SRCDIR?= ${.CURDIR}
|
|
INFODIRFILE?= dir
|
|
INFOTMPL?= /usr/share/info/dir-tmpl
|
|
INSTALLINFO?= install-info
|
|
INFOSECTION?= Miscellaneous
|
|
|
|
.MAIN: all
|
|
|
|
.SUFFIXES: .gz .info .texi .texinfo
|
|
.texi.info:
|
|
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} -o ${.TARGET}
|
|
.texinfo.info:
|
|
${MAKEINFO} ${MAKEINFOFLAGS} -I ${.CURDIR} -I ${SRCDIR} ${.IMPSRC} -o ${.TARGET}
|
|
|
|
.PATH: ${.CURDIR} ${SRCDIR}
|
|
|
|
IFILENS= ${INFO:S/$/.info/g}
|
|
|
|
.if !defined(NOINFO)
|
|
.if !defined(NOINFOCOMPRESS)
|
|
IFILES= ${INFO:S/$/.info.gz/g}
|
|
all: ${IFILES} _SUBDIR
|
|
.else
|
|
IFILES= ${IFILENS}
|
|
all: ${IFILES} _SUBDIR
|
|
.endif
|
|
.else
|
|
all:
|
|
.endif
|
|
|
|
GZIPCMD?= gzip
|
|
|
|
.for x in ${INFO:S/$/.info/g}
|
|
${x:S/$/.gz/}: ${x}
|
|
${GZIPCMD} -c ${.ALLSRC} > ${.TARGET}
|
|
.endfor
|
|
|
|
# What to do if there's no dir file there. This is really gross!!!
|
|
${DESTDIR}${INFODIR}/${INFODIRFILE}:
|
|
@(cd /usr/src/share/info; make install)
|
|
|
|
.for x in ${INFO}
|
|
INSTALLINFODIRS+= ${x:S/$/-install/}
|
|
${x:S/$/-install/}: ${DESTDIR}${INFODIR}/${INFODIRFILE}
|
|
${INSTALLINFO} --defsection=${INFOSECTION} \
|
|
--defentry=${INFOENTRY_${x}} \
|
|
${x}.info ${DESTDIR}${INFODIR}/${INFODIRFILE}
|
|
.endfor
|
|
|
|
.PHONY: ${INSTALLINFODIRS}
|
|
|
|
# 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} -I ${SRCDIR} ${SRCS:S/^/${SRCDIR}\//g} -o ${INFO}.info
|
|
.endif
|
|
|
|
depend: _SUBDIR
|
|
@echo -n
|
|
|
|
clean: _SUBDIR
|
|
rm -f ${INFO:S/$/.info*/g} Errs errs mklog ${CLEANFILES}
|
|
|
|
.if !defined(NOINFO) && defined(INFO)
|
|
install: ${INSTALLINFODIRS} _SUBDIR
|
|
${INSTALL} ${COPY} -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} \
|
|
${IFILES} ${DESTDIR}${INFODIR}
|
|
.else
|
|
install:
|
|
.endif
|
|
|
|
.if !target(maninstall)
|
|
maninstall: _SUBDIR
|
|
.endif
|
|
|
|
.include <bsd.dep.mk>
|
|
.include <bsd.obj.mk>
|