aboutsummaryrefslogtreecommitdiff
path: root/fr_FR.ISO8859-1/htdocs/relnotes/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'fr_FR.ISO8859-1/htdocs/relnotes/Makefile')
-rw-r--r--fr_FR.ISO8859-1/htdocs/relnotes/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/fr_FR.ISO8859-1/htdocs/relnotes/Makefile b/fr_FR.ISO8859-1/htdocs/relnotes/Makefile
new file mode 100644
index 0000000000..eb7fdb6fc4
--- /dev/null
+++ b/fr_FR.ISO8859-1/htdocs/relnotes/Makefile
@@ -0,0 +1,33 @@
+#
+# Web site build hooks for the release notes. Also see the README file.
+#
+# The variable RELNOTES (I couldn't think of a better name) is a poor
+# man's list. Its semantics are very similar to that of MLINKS (see
+# bsd.man.mk). The first word is the directory under which that set
+# of relnotes should appear on the web site. The second word is the
+# path to that relnotes set.
+#
+# $FreeBSD$
+# Original Revision: 1.5
+#
+
+RELNOTES?= CURRENT ${.CURDIR}/../../../relnotes/doc/fr_FR.ISO8859-1 \
+ 4-STABLE ${.CURDIR}/../../../relnotes4/doc/fr_FR.ISO8859-1
+
+all install clean obj:
+ @set ${RELNOTES}; \
+ while :; do \
+ case $$# in \
+ 0) break;; \
+ 1) ${ECHO_CMD} "bad \$$RELNOTES value"; false; break;; \
+ esac; \
+ webname=$$1; shift; realpath=$$1; shift; \
+ (unset DESTDIR || true; \
+ cd $$realpath && ${MAKE} \
+ FORMATS=html\ html-split \
+ DOCDIR=${DESTDIR}/data/fr/${.CURDIR:T}/$$webname \
+ DOC_PREFIX=${.CURDIR}/../../../doc \
+ DIRPRFX=${.CURDIR:T}/$$webname/ \
+ NO_LANGCODE_IN_DESTDIR=true \
+ ${.TARGET}); \
+ done;