summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--Makefile.mak8
-rwxr-xr-xallDemos.py4
3 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index e438913b66d..1613688a503 100644
--- a/Makefile
+++ b/Makefile
@@ -7,10 +7,10 @@
#
# **********************************************************************
-SUBDIRS = cpp java cs py rb php
-CLEAN_SUBDIRS = java cs py rb php cpp
+SUBDIRS = cpp java cs py rb php js
+CLEAN_SUBDIRS = js java cs py rb php cpp
DEPEND_SUBDIRS = cpp cs py rb php
-INSTALL_SUBDIRS = cpp java cs py rb php
+INSTALL_SUBDIRS = cpp java cs py rb php js
all::
@for subdir in $(SUBDIRS); \
diff --git a/Makefile.mak b/Makefile.mak
index ddb11f58989..995f921e271 100644
--- a/Makefile.mak
+++ b/Makefile.mak
@@ -10,11 +10,11 @@
top_srcdir = cpp
!include cpp/config/Make.rules.mak
-SUBDIRS = cpp java py
-CLEAN_SUBDIRS = java py cpp
+SUBDIRS = cpp java py js
+CLEAN_SUBDIRS = js java py cpp
DEPEND_SUBDIRS = cpp py
-INSTALL_SUBDIRS = cpp java py
-TEST_SUBDIRS = cpp java py
+INSTALL_SUBDIRS = cpp java py js
+TEST_SUBDIRS = cpp java py js
!if "$(CPP_COMPILER)" == "VC90"
SUBDIRS = $(SUBDIRS) php
diff --git a/allDemos.py b/allDemos.py
index 986d598b156..073057a85b9 100755
--- a/allDemos.py
+++ b/allDemos.py
@@ -16,9 +16,9 @@ from demoscript import *
demoGroups = []
if os.path.isdir("cpp"):
- subdirs = [ "cpp", "java", "cs", "py", "rb"]
+ subdirs = [ "cpp", "java", "cs", "py", "rb", "js"]
else:
- subdirs = [ "demo", "demoj", "democs", "demopy", "demorb"]
+ subdirs = [ "demo", "demoj", "democs", "demopy", "demorb", "demojs"]
for d in subdirs: