diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | Makefile.mak | 8 | ||||
-rwxr-xr-x | allDemos.py | 4 |
3 files changed, 9 insertions, 9 deletions
@@ -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: |