english sub directories: cgi, commercial, gallery, gifs which are redundant and will never be translated and the spanish sub directories: doc-es, docs-es Submitted by: "Jesus Rodriguez" <jesusr@ncsa.es> Fix Makefiles errors. `Make all install' runs fine. Currently, many the links to the sub directories cgi, commercial, gallery, gifs are broken. The links should point to the English orginal files.
33 lines
690 B
Makefile
33 lines
690 B
Makefile
# $Id: Makefile,v 1.1.1.1 1999-02-08 19:26:11 wosch Exp $
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
|
|
DOCS= photos.sgml
|
|
DOCS+= internal.sgml
|
|
DOCS+= about.sgml
|
|
DOCS+= machines.sgml
|
|
DOCS+= mirror.sgml
|
|
DOCS+= resignation.sgml
|
|
DOCS+= statistic.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"
|
|
DOCS+= homepage.sgml
|
|
.PHONY: homepage.inc
|
|
|
|
homepage.inc:
|
|
perl homepage.pl > ${.TARGET}
|
|
|
|
homepage.sgml: homepage.inc
|
|
CLEANFILES+= homepage.inc
|
|
.endif
|
|
|
|
DATA+= README.mirror
|
|
|
|
.include "../web.mk"
|