5111cefed0
don't build the non-english directories if the variable ENGLISH_ONLY=YES is set.
16 lines
258 B
Makefile
16 lines
258 B
Makefile
# $FreeBSD: www/Makefile,v 1.17 2001/02/25 12:00:45 alex Exp $
|
|
|
|
WEB_PREFIX= ${.CURDIR}
|
|
|
|
SUBDIR= en
|
|
|
|
.if !defined(ENGLISH_ONLY) || empty(ENGLISH_ONLY)
|
|
.if make(obj)
|
|
SUBDIR+= ja es ru zh de
|
|
.endif
|
|
.endif
|
|
|
|
links:
|
|
|
|
.include <bsd.obj.mk>
|
|
.include <bsd.subdir.mk>
|