Re-arrange java/ Makefiles to keep general www/ style.

Remove WEBBASE assignment from all Makefiles. It's located in Makefile.inc now.
This commit is contained in:
Alexey Zelkin 2000-03-02 15:55:53 +00:00
parent 5cd3b7959a
commit 830ac665a1
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=6645
5 changed files with 31 additions and 13 deletions

View file

@ -1,13 +1,14 @@
# $FreeBSD$
# $FreeBSD: www/en/java/Makefile,v 1.1 2000/01/29 14:16:53 wosch Exp $
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
SUBDIR= dists docs links
SUBDIR = dists
SUBDIR+= docs
SUBDIR+= links
DOCS = index.sgml
DOCS+= advocacy.sgml
DOCS = advocacy.sgml
DOCS+= howhelp.sgml
DOCS+= index.sgml
DOCS+= install.sgml
@ -16,4 +17,4 @@ DOCS+= press.sgml
DATA= j2j.gif
.include <../web.mk>
.include "../web.mk"

3
en/java/Makefile.inc Normal file
View file

@ -0,0 +1,3 @@
# $FreeBSD$
WEBBASE?= /data/java

View file

@ -1,5 +1,9 @@
DOCS= 10.sgml 11.sgml 12.sgml 13.sgml index.sgml
# $FreeBSD$
WEBBASE= /data/java
DOCS = 10.sgml
DOCS+= 11.sgml
DOCS+= 12.sgml
DOCS+= 13.sgml
DOCS+= index.sgml
.include "../../web.mk"

View file

@ -1,5 +1,8 @@
DOCS= faq.sgml howtoports.sgml newbies.sgml tutorials.sgml
# $FreeBSD$
WEBBASE= /data/java
DOCS = faq.sgml
DOCS+= howtoports.sgml
DOCS+= newbies.sgml
DOCS+= tutorials.sgml
.include "../../web.mk"

View file

@ -1,7 +1,14 @@
DOCS= freebsd.sgml tools.sgml api.sgml index.sgml
DOCS+= tutorials.sgml development.sgml resources.sgml
DOCS+= vendor.sgml documentation.sgml servlets.sgml
# $FreeBSD$
WEBBASE= /data/java
DOCS = freebsd.sgml
DOCS+= tools.sgml
DOCS+= api.sgml
DOCS+= index.sgml
DOCS+= tutorials.sgml
DOCS+= development.sgml
DOCS+= resources.sgml
DOCS+= vendor.sgml
DOCS+= documentation.sgml
DOCS+= servlets.sgml
.include "../../web.mk"