1.36 -> 1.42 articles/Makefile 1.4 -> 1.6 articles/contributing/Makefile 1.6 -> 1.9 articles/contributors/Makefile 1.420 -> 1.434 articles/contributors/article.sgml 1.3 -> 1.5 articles/dialup-firewall/Makefile 1.39 -> 1.40 articles/dialup-firewall/article.sgml 1.7 -> 1.8 articles/diskless-x/Makefile 1.15 -> 1.16 articles/diskless-x/article.sgml 1.4 -> 1.6 articles/fbsd-from-scratch/Makefile 1.10 -> 1.12 articles/fonts/Makefile 1.24 -> 1.27 articles/fonts/article.sgml 1.4 -> 1.6 articles/ipsec-must/Makefile 1.12 -> 1.15 articles/ipsec-must/article.sgml 1.10 -> 1.12 articles/multi-os/Makefile 1.37 -> 1.39 articles/multi-os/article.sgml 1.4 -> 1.6 articles/problem-reports/Makefile 1.3 -> 1.4 articles/zip-drive/Makefile 1.12 -> 1.15 articles/zip-drive/article.sgml
32 lines
530 B
Makefile
32 lines
530 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Article: FreeBSD From Scratch
|
|
#
|
|
# Original revision: 1.6
|
|
|
|
DOC?= article
|
|
|
|
FORMATS?= html
|
|
|
|
MAINTAINER= schweikh@FreeBSD.org
|
|
|
|
INSTALL_COMPRESSED?= gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
#EXTRAS= stage_1.conf.default
|
|
EXTRAS+= stage_1.sh
|
|
#EXTRAS+= stage_2.conf.default
|
|
EXTRAS+= stage_2.sh
|
|
EXTRAS+= stage_3.mk
|
|
|
|
SRCS= article.sgml
|
|
SRCS+= ${EXTRAS}
|
|
|
|
afterinstall:
|
|
.for entry in ${EXTRAS}
|
|
${INSTALL_DOCS} ${.CURDIR}/${entry} ${DESTDIR}
|
|
.endfor
|
|
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|