8e73cebbbc
(new) Makefile (new) -> 1.4 fbsd-from-scratch/Makefile (new) -> 1.1 fbsd-from-scratch/article.sgml (new) -> 1.1 fbsd-from-scratch/stage_1.sh (new) -> 1.1 fbsd-from-scratch/stage_2.sh (new) -> 1.1 fbsd-from-scratch/stage_3.mk
26 lines
459 B
Makefile
26 lines
459 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Article: FreeBSD From Scratch
|
|
#
|
|
# Original revision: 1.4
|
|
|
|
DOC?= article
|
|
|
|
FORMATS?= html
|
|
|
|
MAINTAINER= schweikh@FreeBSD.org
|
|
|
|
INSTALL_COMPRESSED?= gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
# SGML content
|
|
SRCS= article.sgml stage_1.sh stage_2.sh stage_3.mk
|
|
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
|
|
afterinstall:
|
|
${INSTALL_DOCS} ${.CURDIR}/stage_1.sh ${.CURDIR}/stage_2.sh \
|
|
${.CURDIR}/stage_3.mk ${DESTDIR}
|
|
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|