Added Makefiles to each sub-directories
authorSatya Sudha K <sudha@mono-cvs.ximian.com>
Tue, 26 Apr 2005 05:48:01 +0000 (05:48 -0000)
committerSatya Sudha K <sudha@mono-cvs.ximian.com>
Tue, 26 Apr 2005 05:48:01 +0000 (05:48 -0000)
svn path=/trunk/mcs/; revision=43577

20 files changed:
mcs/mbas/Test/tests/ChangeLog
mcs/mbas/Test/tests/attributes/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/attributes/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/conversions/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/conversions/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/directives/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/directives/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/expressions/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/expressions/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/general/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/general/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/namespace/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/namespace/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/statements/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/statements/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/test-mbas.make
mcs/mbas/Test/tests/typemembers/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/typemembers/test-mbas.make [new file with mode: 0644]
mcs/mbas/Test/tests/types/Makefile [new file with mode: 0644]
mcs/mbas/Test/tests/types/test-mbas.make [new file with mode: 0644]

index 3417d4acf260934464c6277356d4933d04301f8f..9eb41744c75d12a64d6bd965a354a81df316d67f 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-26 Satya Sudha K <ksathyasudha@novell.com>
+          Sudharsan V <vsudharsan@novell.com>
+
+       Added Makefiles to each of the newly added subdirectories.
+
 2005-04-05 Ritvik Mayank <mritvik@novell.com>
        * test-mbas.make : Minor change .
 
diff --git a/mcs/mbas/Test/tests/attributes/Makefile b/mcs/mbas/Test/tests/attributes/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/attributes/test-mbas.make b/mcs/mbas/Test/tests/attributes/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/conversions/Makefile b/mcs/mbas/Test/tests/conversions/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/conversions/test-mbas.make b/mcs/mbas/Test/tests/conversions/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/directives/Makefile b/mcs/mbas/Test/tests/directives/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/directives/test-mbas.make b/mcs/mbas/Test/tests/directives/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/expressions/Makefile b/mcs/mbas/Test/tests/expressions/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/expressions/test-mbas.make b/mcs/mbas/Test/tests/expressions/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/general/Makefile b/mcs/mbas/Test/tests/general/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/general/test-mbas.make b/mcs/mbas/Test/tests/general/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/namespace/Makefile b/mcs/mbas/Test/tests/namespace/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/namespace/test-mbas.make b/mcs/mbas/Test/tests/namespace/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/statements/Makefile b/mcs/mbas/Test/tests/statements/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/statements/test-mbas.make b/mcs/mbas/Test/tests/statements/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
index 0ab76dc4cd85783f4fad8bfc289db0a40a211a01..c2a6b696904a447fdd010ed1da00f111da7f16a4 100644 (file)
@@ -3,7 +3,7 @@ COMPILER = $(BASCOMPILE)
 endif
 
 ifndef PATTERN
-PATTERN = ./*/*.vb
+PATTERN = *.vb
 endif
 
 COMPILER_FLAGS = /libpath:../../../../class/lib/default /imports:System
@@ -12,14 +12,14 @@ DISTFILES = $(wildcard README.tests) $(wildcard ./*/*.vb) $(wildcard *.make) $(w
 
 run-test-local: 
        $(MAKE) clean-local
-       ./test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+       ./test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='./*/$(PATTERN)' --runtime='$(TEST_RUNTIME)'
 
 run-test-ondotnet-local:
        $(MAKE) clean-local
-       ./test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+       ./test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='./*/$(PATTERN)' --runtime=
 
 clean-local:
-       rm -f *.exe *.log *.results
+       rm -f ./*/*.exe ./*/*.log ./*/*.results *.log
 
 all-local test-local install-local uninstall-local:
        @:
diff --git a/mcs/mbas/Test/tests/typemembers/Makefile b/mcs/mbas/Test/tests/typemembers/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/typemembers/test-mbas.make b/mcs/mbas/Test/tests/typemembers/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default
diff --git a/mcs/mbas/Test/tests/types/Makefile b/mcs/mbas/Test/tests/types/Makefile
new file mode 100644 (file)
index 0000000..4c2a718
--- /dev/null
@@ -0,0 +1,4 @@
+thisdir = mbas/Test/tests/*
+include ../../../../build/rules.make
+
+include ./test-mbas.make
diff --git a/mcs/mbas/Test/tests/types/test-mbas.make b/mcs/mbas/Test/tests/types/test-mbas.make
new file mode 100644 (file)
index 0000000..d82f16e
--- /dev/null
@@ -0,0 +1,27 @@
+ifndef COMPILER
+COMPILER = $(BASCOMPILE)
+endif
+
+ifndef PATTERN
+PATTERN = *.vb
+endif
+
+COMPILER_FLAGS = /libpath:../../../../../class/lib/default /imports:System
+LIBRARY_OPT = /target:library
+DISTFILES = $(wildcard README.tests) $(wildcard *.vb) $(wildcard *.make) $(widlcard *.pl)
+
+run-test-local: 
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime='$(TEST_RUNTIME)'
+
+run-test-ondotnet-local:
+       $(MAKE) clean-local
+       ../test-mbas.pl --compiler='$(COMPILER)' --compilerflags='$(COMPILER_FLAGS)' --pattern='$(PATTERN)' --runtime=
+
+clean-local:
+       rm -f *.exe *.log *.results
+
+all-local test-local install-local uninstall-local:
+       @:
+
+dist-local: dist-default