summaryrefslogtreecommitdiffstats
path: root/config/webint.mk
blob: 5269b3215d031fb2fff4f141d2ca87c59a0b5db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# BEGIN COPYRIGHT BLOCK
# Copyright 2001 Sun Microsystems, Inc.
# Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
# All rights reserved.
# END COPYRIGHT BLOCK
#
ifdef WEBSERVER_LANGS
LANG_LOOP=							\
  @for d in $(WEBSERVER_LANGS); do				\
    if test ! -d $$d; then					\
      echo Directory $$d does not exist. Creating...;		\
      mkdir -p $$d;						\
    fi;								\
    echo cd $$d;						\
    cd $$d;							\
    echo $(MAKE) -f ../Makefile $(MAKEFLAGS) INT_SUBDIR=1;	\
    $(MAKE) -f ../Makefile $(MAKEFLAGS) INT_SUBDIR=1;		\
    cd ..;							\
  done
else
LANG_LOOP= @echo "No foreign languages in this build"
endif