Fetch the handbook and FAQ from the cvs repository before trying to
build them.
This commit is contained in:
parent
0e5565f258
commit
b7e2624132
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=548
5 changed files with 49 additions and 15 deletions
|
@ -1,3 +1,7 @@
|
|||
# $Id: Makefile,v 1.2 1996-09-25 16:00:29 jfieber Exp $
|
||||
|
||||
# These are turned into validated, normalized HTML files.
|
||||
|
||||
DOCS= about.sgml commercial.sgml daemon.sgml docproj.sgml docs.sgml
|
||||
DOCS+= gallery.sgml index-site.sgml index.sgml license.sgml
|
||||
DOCS+= mailto.sgml newsflash.sgml searchhints.sgml support.sgml
|
||||
|
@ -20,8 +24,21 @@ stats-img.html: /home/www/server/logs/access_log
|
|||
(cd /usr/local/www/server/logs;zcat access_log.*.gz;cat access_log) | \
|
||||
/usr/local/www/bin/analog +i0 +R500 -o > ${.TARGET}
|
||||
|
||||
# Subdirectories
|
||||
|
||||
SUBDIR= cgi gifs ports releases tutorials
|
||||
|
||||
# Subdirectories that have linuxdoc docs and makefiles that use
|
||||
# <bsd.sgml.mk>.
|
||||
|
||||
DOCSUBDIR= FAQ handbook
|
||||
|
||||
# Directories that need to be checked out from the
|
||||
# CVS repository.
|
||||
|
||||
CVSDIR= FAQ handbook
|
||||
|
||||
WEBDIR= data
|
||||
|
||||
.include "web.mk"
|
||||
|
||||
|
|
10
data/web.mk
10
data/web.mk
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $Id: web.mk,v 1.2 1996-09-24 18:56:00 jfieber Exp $
|
||||
# $Id: web.mk,v 1.3 1996-09-25 16:00:32 jfieber Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -119,7 +119,7 @@ ORPHANS:= ${ORPHANS:N*.m4}
|
|||
#
|
||||
# Build most everything
|
||||
#
|
||||
all: ${COOKIE} orphans cvsdirs ${GENDOCS} ${DATA} ${LOCAL} ${CGI} _PROGSUBDIR
|
||||
all: ${COOKIE} orphans cvsdir ${GENDOCS} ${DATA} ${LOCAL} ${CGI} _PROGSUBDIR
|
||||
|
||||
#
|
||||
# Warn about anything in DOCS that has no translation
|
||||
|
@ -134,9 +134,9 @@ orphans:
|
|||
#
|
||||
# Check these things out from cvs
|
||||
#
|
||||
cvsdirs:
|
||||
.if defined{CVSDIRS} && !empty{CVSDIRS}
|
||||
for i in ${CVSDIRS}; do \
|
||||
cvsdir:
|
||||
.if defined(CVSDIR) && !empty(CVSDIR)
|
||||
for i in ${CVSDIR}; do \
|
||||
cvs co -P $$i; \
|
||||
done
|
||||
.endif
|
||||
|
|
17
en/Makefile
17
en/Makefile
|
@ -1,3 +1,7 @@
|
|||
# $Id: Makefile,v 1.2 1996-09-25 16:00:29 jfieber Exp $
|
||||
|
||||
# These are turned into validated, normalized HTML files.
|
||||
|
||||
DOCS= about.sgml commercial.sgml daemon.sgml docproj.sgml docs.sgml
|
||||
DOCS+= gallery.sgml index-site.sgml index.sgml license.sgml
|
||||
DOCS+= mailto.sgml newsflash.sgml searchhints.sgml support.sgml
|
||||
|
@ -20,8 +24,21 @@ stats-img.html: /home/www/server/logs/access_log
|
|||
(cd /usr/local/www/server/logs;zcat access_log.*.gz;cat access_log) | \
|
||||
/usr/local/www/bin/analog +i0 +R500 -o > ${.TARGET}
|
||||
|
||||
# Subdirectories
|
||||
|
||||
SUBDIR= cgi gifs ports releases tutorials
|
||||
|
||||
# Subdirectories that have linuxdoc docs and makefiles that use
|
||||
# <bsd.sgml.mk>.
|
||||
|
||||
DOCSUBDIR= FAQ handbook
|
||||
|
||||
# Directories that need to be checked out from the
|
||||
# CVS repository.
|
||||
|
||||
CVSDIR= FAQ handbook
|
||||
|
||||
WEBDIR= data
|
||||
|
||||
.include "web.mk"
|
||||
|
||||
|
|
10
en/web.mk
10
en/web.mk
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $Id: web.mk,v 1.2 1996-09-24 18:56:00 jfieber Exp $
|
||||
# $Id: web.mk,v 1.3 1996-09-25 16:00:32 jfieber Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -119,7 +119,7 @@ ORPHANS:= ${ORPHANS:N*.m4}
|
|||
#
|
||||
# Build most everything
|
||||
#
|
||||
all: ${COOKIE} orphans cvsdirs ${GENDOCS} ${DATA} ${LOCAL} ${CGI} _PROGSUBDIR
|
||||
all: ${COOKIE} orphans cvsdir ${GENDOCS} ${DATA} ${LOCAL} ${CGI} _PROGSUBDIR
|
||||
|
||||
#
|
||||
# Warn about anything in DOCS that has no translation
|
||||
|
@ -134,9 +134,9 @@ orphans:
|
|||
#
|
||||
# Check these things out from cvs
|
||||
#
|
||||
cvsdirs:
|
||||
.if defined{CVSDIRS} && !empty{CVSDIRS}
|
||||
for i in ${CVSDIRS}; do \
|
||||
cvsdir:
|
||||
.if defined(CVSDIR) && !empty(CVSDIR)
|
||||
for i in ${CVSDIR}; do \
|
||||
cvs co -P $$i; \
|
||||
done
|
||||
.endif
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $Id: web.site.mk,v 1.2 1996-09-24 18:56:00 jfieber Exp $
|
||||
# $Id: web.site.mk,v 1.3 1996-09-25 16:00:32 jfieber Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -119,7 +119,7 @@ ORPHANS:= ${ORPHANS:N*.m4}
|
|||
#
|
||||
# Build most everything
|
||||
#
|
||||
all: ${COOKIE} orphans cvsdirs ${GENDOCS} ${DATA} ${LOCAL} ${CGI} _PROGSUBDIR
|
||||
all: ${COOKIE} orphans cvsdir ${GENDOCS} ${DATA} ${LOCAL} ${CGI} _PROGSUBDIR
|
||||
|
||||
#
|
||||
# Warn about anything in DOCS that has no translation
|
||||
|
@ -134,9 +134,9 @@ orphans:
|
|||
#
|
||||
# Check these things out from cvs
|
||||
#
|
||||
cvsdirs:
|
||||
.if defined{CVSDIRS} && !empty{CVSDIRS}
|
||||
for i in ${CVSDIRS}; do \
|
||||
cvsdir:
|
||||
.if defined(CVSDIR) && !empty(CVSDIR)
|
||||
for i in ${CVSDIR}; do \
|
||||
cvs co -P $$i; \
|
||||
done
|
||||
.endif
|
||||
|
|
Loading…
Reference in a new issue