20daff5657
- MFen Makefile->1.5
33 lines
567 B
Makefile
33 lines
567 B
Makefile
#
|
|
# The FreeBSD Documentation Project
|
|
# The FreeBSD French Documentation Project
|
|
#
|
|
# $FreeBSD$
|
|
# Original revision: 1.5
|
|
# Article: FreeBSD PXE Jumpstart Guide
|
|
#
|
|
DOC?= article
|
|
|
|
FORMATS?= html
|
|
|
|
INSTALL_COMPRESSED?=gz
|
|
INSTALL_ONLY_COMPRESSED?=
|
|
|
|
EXTRAS= dhcpd.conf
|
|
EXTRAS+= install.cfg
|
|
EXTRAS+= loader.rc
|
|
EXTRAS+= pkgmaker.sh
|
|
EXTRAS+= post
|
|
EXTRAS+= pre
|
|
|
|
SRCS= article.sgml
|
|
|
|
afterinstall:
|
|
.for entry in ${EXTRAS}
|
|
${INSTALL_DOCS} ${.CURDIR}/${entry} ${DESTDIR}
|
|
.endfor
|
|
|
|
|
|
DOC_PREFIX?= ${.CURDIR}/../../..
|
|
|
|
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|