Add the new variable ENGLISH_ONLY. If set and not empty, the
non-english web pages are not build. This is basically a debug option. Most committers does not touch the japanese documentation, so they don't need to test the japanese files.
This commit is contained in:
parent
5a33aeaf18
commit
98dd89ecc1
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=2691
2 changed files with 10 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.27 1998-04-16 10:39:00 wosch Exp $
|
||||
# $Id: Makefile,v 1.28 1998-04-16 12:51:43 wosch Exp $
|
||||
|
||||
.if exists(Makefile.conf)
|
||||
.include "Makefile.conf"
|
||||
|
@ -59,7 +59,10 @@ pgallery.inc: gallery.db gengallery.pl
|
|||
|
||||
# Subdirectories
|
||||
|
||||
SUBDIR= cgi commercial docproj gifs ports releases tutorials ja_JP.EUC
|
||||
SUBDIR= cgi commercial docproj gifs ports releases tutorials
|
||||
.if !defined(ENGLISH_ONLY) || empty(ENGLISH_ONLY)
|
||||
SUBDIR+= ja_JP.EUC
|
||||
.endif
|
||||
|
||||
# Subdirectories that have linuxdoc docs and makefiles that use
|
||||
# <bsd.sgml.mk>.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.27 1998-04-16 10:39:00 wosch Exp $
|
||||
# $Id: Makefile,v 1.28 1998-04-16 12:51:43 wosch Exp $
|
||||
|
||||
.if exists(Makefile.conf)
|
||||
.include "Makefile.conf"
|
||||
|
@ -59,7 +59,10 @@ pgallery.inc: gallery.db gengallery.pl
|
|||
|
||||
# Subdirectories
|
||||
|
||||
SUBDIR= cgi commercial docproj gifs ports releases tutorials ja_JP.EUC
|
||||
SUBDIR= cgi commercial docproj gifs ports releases tutorials
|
||||
.if !defined(ENGLISH_ONLY) || empty(ENGLISH_ONLY)
|
||||
SUBDIR+= ja_JP.EUC
|
||||
.endif
|
||||
|
||||
# Subdirectories that have linuxdoc docs and makefiles that use
|
||||
# <bsd.sgml.mk>.
|
||||
|
|
Loading…
Reference in a new issue