1.43 -> 1.44 Makefile 1.52 -> 1.54 about.sgml 1.5 -> 1.6 bylaws.sgml 1.4 -> 1.5 core-vote.sgml 1.33 -> 1.35 developer.sgml 1.6 -> 1.7 doceng.sgml 1.1 -> 1.2 expire-bits.sgml new -> 1.2 fortunes.sgml 1.6 -> 1.7 homepage.sgml 1.29 -> 1.30 internal.sgml 1.55 -> 1.62 machines.sgml 1.16 -> 1.20 mirror.sgml 1.10 -> 1.15 new-account.sgml 1.24 -> 1.25 photos.sgml 1.2 -> 1.4 policies.sgml 1.7 -> 1.8 releng.sgml 1.5 -> 1.6 rtp.sgml 1.17 -> 1.18 statistic.sgml Obtained from: The FreeBSD Russian Documentation Project
54 lines
1.2 KiB
Makefile
54 lines
1.2 KiB
Makefile
#
|
|
# The FreeBSD Russian Documentation Project
|
|
#
|
|
# $FreeBSD$
|
|
# $FreeBSDru: frdp/www/ru/internal/Makefile,v 1.11 2006/02/10 12:57:39 marck Exp $
|
|
#
|
|
# Original revision: 1.44
|
|
#
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DOCS= photos.sgml
|
|
DOCS+= internal.sgml
|
|
DOCS+= about.sgml
|
|
DOCS+= machines.sgml
|
|
DOCS+= mirror.sgml
|
|
DOCS+= new-account.sgml
|
|
DOCS+= statistic.sgml
|
|
DOCS+= developer.sgml
|
|
DOCS+= bylaws.sgml
|
|
DOCS+= releng.sgml
|
|
DOCS+= expire-bits.sgml
|
|
DOCS+= core-vote.sgml
|
|
DOCS+= doceng.sgml
|
|
DOCS+= rtp.sgml
|
|
DOCS+= policies.sgml
|
|
DOCS+= fortunes.sgml
|
|
|
|
INDEXLINK= internal.html
|
|
|
|
# build the list of personal homepages of FreeBSD developers only
|
|
# on the main FreeBSD machines
|
|
hostname!= hostname
|
|
.if ${hostname} == "hub.freebsd.org" || ${hostname} == "freefall.freebsd.org" || ${hostname} == "www.freebsd.org"
|
|
DOCS+= homepage.sgml
|
|
|
|
.if !make(install)
|
|
.PHONY: homepage.inc
|
|
.endif
|
|
homepage.inc: ${WEB_PREFIX}/en/internal/homepage.pl
|
|
${PERL} ${WEB_PREFIX}/en/internal/homepage.pl > ${.TARGET}
|
|
|
|
homepage.html: homepage.inc
|
|
CLEANFILES+= homepage.inc
|
|
.endif
|
|
|
|
DATA+= README.mirror
|
|
|
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|