diff options
author | Sylvestre Ledru <sylvestre.ledru@scilab.org> | 2010-05-19 11:50:36 +0200 |
---|---|---|
committer | Clément DAVID <clement.david@scilab.org> | 2010-05-19 15:29:39 +0200 |
commit | 6a3c35502c602bde383f624eaaf5aa04f86fedfc (patch) | |
tree | ef1c692afd1aaad2891809d40ab2afb0b3c4762b /scilab/modules | |
parent | aff2de48d0560cf7266f5788413b02ad1d3c22ad (diff) | |
download | scilab-6a3c35502c602bde383f624eaaf5aa04f86fedfc.zip scilab-6a3c35502c602bde383f624eaaf5aa04f86fedfc.tar.gz |
* Option --enable-compilation-tests added to the configure. With this option,
if TestNG has been found, tests will be launched at compilation time.
Change-Id: I426bfe2aaa263713a56ff8ece6893908d6e7deff
Diffstat (limited to 'scilab/modules')
69 files changed, 782 insertions, 151 deletions
diff --git a/scilab/modules/action_binding/Makefile.in b/scilab/modules/action_binding/Makefile.in index 2c20fc1..5ef3853 100644 --- a/scilab/modules/action_binding/Makefile.in +++ b/scilab/modules/action_binding/Makefile.in | |||
@@ -64,6 +64,9 @@ host_triplet = @host@ | |||
64 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 64 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
65 | $(top_srcdir)/Makefile.incl.am | 65 | $(top_srcdir)/Makefile.incl.am |
66 | @NEED_JAVA_TRUE@am__append_1 = java | 66 | @NEED_JAVA_TRUE@am__append_1 = java |
67 | |||
68 | # With --enable-compilation-tests, launch java unitary tests | ||
69 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
67 | subdir = modules/action_binding | 70 | subdir = modules/action_binding |
68 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
69 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -458,7 +461,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
458 | #### the procedure will be the same with Microsoft Windows (C) | 461 | #### the procedure will be the same with Microsoft Windows (C) |
459 | #### and Linux/Unix | 462 | #### and Linux/Unix |
460 | ####################################################################### | 463 | ####################################################################### |
461 | TARGETS_ALL = $(am__append_1) | 464 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
462 | 465 | ||
463 | ################ MACROS ###################### | 466 | ################ MACROS ###################### |
464 | # Rule to build a macro | 467 | # Rule to build a macro |
@@ -926,7 +929,7 @@ uninstall-am: uninstall-libsciaction_binding_la_etcDATA \ | |||
926 | 929 | ||
927 | 930 | ||
928 | # This target enables tests for Scilab | 931 | # This target enables tests for Scilab |
929 | check-local: $(top_builddir)/scilab-bin | 932 | check-local: $(top_builddir)/scilab-bin test |
930 | @COMMAND="test_run('$(modulename)');quit";\ | 933 | @COMMAND="test_run('$(modulename)');quit";\ |
931 | export LANG=C;\ | 934 | export LANG=C;\ |
932 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 935 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -993,6 +996,12 @@ clean-macros: | |||
993 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 996 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
994 | done | 997 | done |
995 | 998 | ||
999 | test: | ||
1000 | # More tests could be added here | ||
1001 | @if test -f build.xml; then \ | ||
1002 | $(ANT) test; \ | ||
1003 | fi | ||
1004 | |||
996 | all-local: $(TARGETS_ALL) | 1005 | all-local: $(TARGETS_ALL) |
997 | 1006 | ||
998 | .sci.bin: | 1007 | .sci.bin: |
diff --git a/scilab/modules/api_scilab/Makefile.in b/scilab/modules/api_scilab/Makefile.in index 6b58268..caa17e8 100644 --- a/scilab/modules/api_scilab/Makefile.in +++ b/scilab/modules/api_scilab/Makefile.in | |||
@@ -63,6 +63,9 @@ DIST_COMMON = $(libsciapi_scilab_la_include_HEADERS) \ | |||
63 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 63 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
64 | $(top_srcdir)/Makefile.incl.am | 64 | $(top_srcdir)/Makefile.incl.am |
65 | @NEED_JAVA_TRUE@am__append_1 = java | 65 | @NEED_JAVA_TRUE@am__append_1 = java |
66 | |||
67 | # With --enable-compilation-tests, launch java unitary tests | ||
68 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
66 | subdir = modules/api_scilab | 69 | subdir = modules/api_scilab |
67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -466,7 +469,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
466 | #### the procedure will be the same with Microsoft Windows (C) | 469 | #### the procedure will be the same with Microsoft Windows (C) |
467 | #### and Linux/Unix | 470 | #### and Linux/Unix |
468 | ####################################################################### | 471 | ####################################################################### |
469 | TARGETS_ALL = $(am__append_1) | 472 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
470 | 473 | ||
471 | ################ MACROS ###################### | 474 | ################ MACROS ###################### |
472 | # Rule to build a macro | 475 | # Rule to build a macro |
@@ -985,7 +988,7 @@ uninstall-am: uninstall-libsciapi_scilab_la_etcDATA \ | |||
985 | 988 | ||
986 | 989 | ||
987 | # This target enables tests for Scilab | 990 | # This target enables tests for Scilab |
988 | check-local: $(top_builddir)/scilab-bin | 991 | check-local: $(top_builddir)/scilab-bin test |
989 | @COMMAND="test_run('$(modulename)');quit";\ | 992 | @COMMAND="test_run('$(modulename)');quit";\ |
990 | export LANG=C;\ | 993 | export LANG=C;\ |
991 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 994 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1052,6 +1055,12 @@ clean-macros: | |||
1052 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1055 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1053 | done | 1056 | done |
1054 | 1057 | ||
1058 | test: | ||
1059 | # More tests could be added here | ||
1060 | @if test -f build.xml; then \ | ||
1061 | $(ANT) test; \ | ||
1062 | fi | ||
1063 | |||
1055 | all-local: $(TARGETS_ALL) | 1064 | all-local: $(TARGETS_ALL) |
1056 | 1065 | ||
1057 | .sci.bin: | 1066 | .sci.bin: |
diff --git a/scilab/modules/arnoldi/Makefile.in b/scilab/modules/arnoldi/Makefile.in index f535442..0eaec30 100644 --- a/scilab/modules/arnoldi/Makefile.in +++ b/scilab/modules/arnoldi/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/arnoldi | 65 | subdir = modules/arnoldi |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -512,7 +515,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
512 | #### the procedure will be the same with Microsoft Windows (C) | 515 | #### the procedure will be the same with Microsoft Windows (C) |
513 | #### and Linux/Unix | 516 | #### and Linux/Unix |
514 | ####################################################################### | 517 | ####################################################################### |
515 | TARGETS_ALL = $(am__append_1) | 518 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
516 | 519 | ||
517 | ################ MACROS ###################### | 520 | ################ MACROS ###################### |
518 | # Rule to build a macro | 521 | # Rule to build a macro |
@@ -1157,7 +1160,7 @@ uninstall-am: uninstall-libsciarnoldi_la_etcDATA \ | |||
1157 | 1160 | ||
1158 | 1161 | ||
1159 | # This target enables tests for Scilab | 1162 | # This target enables tests for Scilab |
1160 | check-local: $(top_builddir)/scilab-bin | 1163 | check-local: $(top_builddir)/scilab-bin test |
1161 | @COMMAND="test_run('$(modulename)');quit";\ | 1164 | @COMMAND="test_run('$(modulename)');quit";\ |
1162 | export LANG=C;\ | 1165 | export LANG=C;\ |
1163 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1166 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1224,6 +1227,12 @@ clean-macros: | |||
1224 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1227 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1225 | done | 1228 | done |
1226 | 1229 | ||
1230 | test: | ||
1231 | # More tests could be added here | ||
1232 | @if test -f build.xml; then \ | ||
1233 | $(ANT) test; \ | ||
1234 | fi | ||
1235 | |||
1227 | all-local: $(TARGETS_ALL) | 1236 | all-local: $(TARGETS_ALL) |
1228 | 1237 | ||
1229 | .sci.bin: | 1238 | .sci.bin: |
diff --git a/scilab/modules/atoms/Makefile.in b/scilab/modules/atoms/Makefile.in index 4359d01..3721c77 100644 --- a/scilab/modules/atoms/Makefile.in +++ b/scilab/modules/atoms/Makefile.in | |||
@@ -62,6 +62,9 @@ host_triplet = @host@ | |||
62 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 62 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
63 | $(top_srcdir)/Makefile.incl.am | 63 | $(top_srcdir)/Makefile.incl.am |
64 | @NEED_JAVA_TRUE@am__append_1 = java | 64 | @NEED_JAVA_TRUE@am__append_1 = java |
65 | |||
66 | # With --enable-compilation-tests, launch java unitary tests | ||
67 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
65 | subdir = modules/atoms | 68 | subdir = modules/atoms |
66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -385,7 +388,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
385 | #### the procedure will be the same with Microsoft Windows (C) | 388 | #### the procedure will be the same with Microsoft Windows (C) |
386 | #### and Linux/Unix | 389 | #### and Linux/Unix |
387 | ####################################################################### | 390 | ####################################################################### |
388 | TARGETS_ALL = $(am__append_1) | 391 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
389 | 392 | ||
390 | ################ MACROS ###################### | 393 | ################ MACROS ###################### |
391 | # Rule to build a macro | 394 | # Rule to build a macro |
@@ -701,7 +704,7 @@ uninstall-am: uninstall-libsciatoms_la_etcDATA \ | |||
701 | 704 | ||
702 | 705 | ||
703 | # This target enables tests for Scilab | 706 | # This target enables tests for Scilab |
704 | check-local: $(top_builddir)/scilab-bin | 707 | check-local: $(top_builddir)/scilab-bin test |
705 | @COMMAND="test_run('$(modulename)');quit";\ | 708 | @COMMAND="test_run('$(modulename)');quit";\ |
706 | export LANG=C;\ | 709 | export LANG=C;\ |
707 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 710 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -768,6 +771,12 @@ clean-macros: | |||
768 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 771 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
769 | done | 772 | done |
770 | 773 | ||
774 | test: | ||
775 | # More tests could be added here | ||
776 | @if test -f build.xml; then \ | ||
777 | $(ANT) test; \ | ||
778 | fi | ||
779 | |||
771 | all-local: $(TARGETS_ALL) | 780 | all-local: $(TARGETS_ALL) |
772 | 781 | ||
773 | .sci.bin: | 782 | .sci.bin: |
diff --git a/scilab/modules/boolean/Makefile.in b/scilab/modules/boolean/Makefile.in index 1510ef0..4d0f85a 100644 --- a/scilab/modules/boolean/Makefile.in +++ b/scilab/modules/boolean/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/boolean | 65 | subdir = modules/boolean |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -447,7 +450,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
447 | #### the procedure will be the same with Microsoft Windows (C) | 450 | #### the procedure will be the same with Microsoft Windows (C) |
448 | #### and Linux/Unix | 451 | #### and Linux/Unix |
449 | ####################################################################### | 452 | ####################################################################### |
450 | TARGETS_ALL = $(am__append_1) | 453 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
451 | 454 | ||
452 | ################ MACROS ###################### | 455 | ################ MACROS ###################### |
453 | # Rule to build a macro | 456 | # Rule to build a macro |
@@ -962,7 +965,7 @@ uninstall-am: uninstall-libsciboolean_la_etcDATA \ | |||
962 | 965 | ||
963 | 966 | ||
964 | # This target enables tests for Scilab | 967 | # This target enables tests for Scilab |
965 | check-local: $(top_builddir)/scilab-bin | 968 | check-local: $(top_builddir)/scilab-bin test |
966 | @COMMAND="test_run('$(modulename)');quit";\ | 969 | @COMMAND="test_run('$(modulename)');quit";\ |
967 | export LANG=C;\ | 970 | export LANG=C;\ |
968 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 971 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1029,6 +1032,12 @@ clean-macros: | |||
1029 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1032 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1030 | done | 1033 | done |
1031 | 1034 | ||
1035 | test: | ||
1036 | # More tests could be added here | ||
1037 | @if test -f build.xml; then \ | ||
1038 | $(ANT) test; \ | ||
1039 | fi | ||
1040 | |||
1032 | all-local: $(TARGETS_ALL) | 1041 | all-local: $(TARGETS_ALL) |
1033 | 1042 | ||
1034 | .sci.bin: | 1043 | .sci.bin: |
diff --git a/scilab/modules/cacsd/Makefile.in b/scilab/modules/cacsd/Makefile.in index 7d2ee6c..fc690662 100644 --- a/scilab/modules/cacsd/Makefile.in +++ b/scilab/modules/cacsd/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/cacsd | 65 | subdir = modules/cacsd |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -722,7 +725,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
722 | #### the procedure will be the same with Microsoft Windows (C) | 725 | #### the procedure will be the same with Microsoft Windows (C) |
723 | #### and Linux/Unix | 726 | #### and Linux/Unix |
724 | ####################################################################### | 727 | ####################################################################### |
725 | TARGETS_ALL = $(am__append_1) | 728 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
726 | 729 | ||
727 | ################ MACROS ###################### | 730 | ################ MACROS ###################### |
728 | # Rule to build a macro | 731 | # Rule to build a macro |
@@ -1825,7 +1828,7 @@ uninstall-am: uninstall-libscicacsd_la_etcDATA \ | |||
1825 | 1828 | ||
1826 | 1829 | ||
1827 | # This target enables tests for Scilab | 1830 | # This target enables tests for Scilab |
1828 | check-local: $(top_builddir)/scilab-bin | 1831 | check-local: $(top_builddir)/scilab-bin test |
1829 | @COMMAND="test_run('$(modulename)');quit";\ | 1832 | @COMMAND="test_run('$(modulename)');quit";\ |
1830 | export LANG=C;\ | 1833 | export LANG=C;\ |
1831 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1834 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1892,6 +1895,12 @@ clean-macros: | |||
1892 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1895 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1893 | done | 1896 | done |
1894 | 1897 | ||
1898 | test: | ||
1899 | # More tests could be added here | ||
1900 | @if test -f build.xml; then \ | ||
1901 | $(ANT) test; \ | ||
1902 | fi | ||
1903 | |||
1895 | all-local: $(TARGETS_ALL) | 1904 | all-local: $(TARGETS_ALL) |
1896 | 1905 | ||
1897 | .sci.bin: | 1906 | .sci.bin: |
diff --git a/scilab/modules/call_scilab/Makefile.in b/scilab/modules/call_scilab/Makefile.in index ad639d3..cee9a13 100644 --- a/scilab/modules/call_scilab/Makefile.in +++ b/scilab/modules/call_scilab/Makefile.in | |||
@@ -61,6 +61,9 @@ DIST_COMMON = $(libscicall_scilab_la_include_HEADERS) \ | |||
61 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 61 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
62 | $(top_srcdir)/Makefile.incl.am | 62 | $(top_srcdir)/Makefile.incl.am |
63 | @NEED_JAVA_TRUE@am__append_1 = java | 63 | @NEED_JAVA_TRUE@am__append_1 = java |
64 | |||
65 | # With --enable-compilation-tests, launch java unitary tests | ||
66 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
64 | subdir = modules/call_scilab | 67 | subdir = modules/call_scilab |
65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 68 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 69 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -449,7 +452,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
449 | #### the procedure will be the same with Microsoft Windows (C) | 452 | #### the procedure will be the same with Microsoft Windows (C) |
450 | #### and Linux/Unix | 453 | #### and Linux/Unix |
451 | ####################################################################### | 454 | ####################################################################### |
452 | TARGETS_ALL = $(am__append_1) | 455 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
453 | 456 | ||
454 | ################ MACROS ###################### | 457 | ################ MACROS ###################### |
455 | # Rule to build a macro | 458 | # Rule to build a macro |
@@ -961,7 +964,7 @@ uninstall-am: uninstall-libscicall_scilab_la_etcDATA \ | |||
961 | 964 | ||
962 | 965 | ||
963 | # This target enables tests for Scilab | 966 | # This target enables tests for Scilab |
964 | check-local: $(top_builddir)/scilab-bin | 967 | check-local: $(top_builddir)/scilab-bin test |
965 | @COMMAND="test_run('$(modulename)');quit";\ | 968 | @COMMAND="test_run('$(modulename)');quit";\ |
966 | export LANG=C;\ | 969 | export LANG=C;\ |
967 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 970 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1028,6 +1031,12 @@ clean-macros: | |||
1028 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1031 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1029 | done | 1032 | done |
1030 | 1033 | ||
1034 | test: | ||
1035 | # More tests could be added here | ||
1036 | @if test -f build.xml; then \ | ||
1037 | $(ANT) test; \ | ||
1038 | fi | ||
1039 | |||
1031 | all-local: $(TARGETS_ALL) | 1040 | all-local: $(TARGETS_ALL) |
1032 | 1041 | ||
1033 | .sci.bin: | 1042 | .sci.bin: |
diff --git a/scilab/modules/compatibility_functions/Makefile.in b/scilab/modules/compatibility_functions/Makefile.in index 95747a4..d36ce9c 100644 --- a/scilab/modules/compatibility_functions/Makefile.in +++ b/scilab/modules/compatibility_functions/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/compatibility_functions | 65 | subdir = modules/compatibility_functions |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -362,7 +365,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
362 | #### the procedure will be the same with Microsoft Windows (C) | 365 | #### the procedure will be the same with Microsoft Windows (C) |
363 | #### and Linux/Unix | 366 | #### and Linux/Unix |
364 | ####################################################################### | 367 | ####################################################################### |
365 | TARGETS_ALL = $(am__append_1) | 368 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
366 | 369 | ||
367 | ################ MACROS ###################### | 370 | ################ MACROS ###################### |
368 | # Rule to build a macro | 371 | # Rule to build a macro |
@@ -665,7 +668,7 @@ uninstall-am: uninstall-libscicompatibility_functions_la_etcDATA \ | |||
665 | 668 | ||
666 | 669 | ||
667 | # This target enables tests for Scilab | 670 | # This target enables tests for Scilab |
668 | check-local: $(top_builddir)/scilab-bin | 671 | check-local: $(top_builddir)/scilab-bin test |
669 | @COMMAND="test_run('$(modulename)');quit";\ | 672 | @COMMAND="test_run('$(modulename)');quit";\ |
670 | export LANG=C;\ | 673 | export LANG=C;\ |
671 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 674 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -732,6 +735,12 @@ clean-macros: | |||
732 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 735 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
733 | done | 736 | done |
734 | 737 | ||
738 | test: | ||
739 | # More tests could be added here | ||
740 | @if test -f build.xml; then \ | ||
741 | $(ANT) test; \ | ||
742 | fi | ||
743 | |||
735 | all-local: $(TARGETS_ALL) | 744 | all-local: $(TARGETS_ALL) |
736 | 745 | ||
737 | .sci.bin: | 746 | .sci.bin: |
diff --git a/scilab/modules/completion/Makefile.in b/scilab/modules/completion/Makefile.in index d14ce51..7e2734a1 100644 --- a/scilab/modules/completion/Makefile.in +++ b/scilab/modules/completion/Makefile.in | |||
@@ -65,6 +65,9 @@ DIST_COMMON = $(libscicompletion_la_include_HEADERS) \ | |||
65 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | |||
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
68 | subdir = modules/completion | 71 | subdir = modules/completion |
69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 72 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 73 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -510,7 +513,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
510 | #### the procedure will be the same with Microsoft Windows (C) | 513 | #### the procedure will be the same with Microsoft Windows (C) |
511 | #### and Linux/Unix | 514 | #### and Linux/Unix |
512 | ####################################################################### | 515 | ####################################################################### |
513 | TARGETS_ALL = $(am__append_1) | 516 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
514 | 517 | ||
515 | ################ MACROS ###################### | 518 | ################ MACROS ###################### |
516 | # Rule to build a macro | 519 | # Rule to build a macro |
@@ -1106,7 +1109,7 @@ uninstall-am: uninstall-libscicompletion_la_etcDATA \ | |||
1106 | 1109 | ||
1107 | 1110 | ||
1108 | # This target enables tests for Scilab | 1111 | # This target enables tests for Scilab |
1109 | check-local: $(top_builddir)/scilab-bin | 1112 | check-local: $(top_builddir)/scilab-bin test |
1110 | @COMMAND="test_run('$(modulename)');quit";\ | 1113 | @COMMAND="test_run('$(modulename)');quit";\ |
1111 | export LANG=C;\ | 1114 | export LANG=C;\ |
1112 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1115 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1173,6 +1176,12 @@ clean-macros: | |||
1173 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1176 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1174 | done | 1177 | done |
1175 | 1178 | ||
1179 | test: | ||
1180 | # More tests could be added here | ||
1181 | @if test -f build.xml; then \ | ||
1182 | $(ANT) test; \ | ||
1183 | fi | ||
1184 | |||
1176 | all-local: $(TARGETS_ALL) | 1185 | all-local: $(TARGETS_ALL) |
1177 | 1186 | ||
1178 | .sci.bin: | 1187 | .sci.bin: |
diff --git a/scilab/modules/console/Makefile.in b/scilab/modules/console/Makefile.in index c294836..25d6051 100644 --- a/scilab/modules/console/Makefile.in +++ b/scilab/modules/console/Makefile.in | |||
@@ -71,6 +71,9 @@ host_triplet = @host@ | |||
71 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 71 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
72 | $(top_srcdir)/Makefile.incl.am | 72 | $(top_srcdir)/Makefile.incl.am |
73 | @NEED_JAVA_TRUE@am__append_4 = java | 73 | @NEED_JAVA_TRUE@am__append_4 = java |
74 | |||
75 | # With --enable-compilation-tests, launch java unitary tests | ||
76 | @COMPILATION_TESTS_TRUE@am__append_5 = test | ||
74 | subdir = modules/console | 77 | subdir = modules/console |
75 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 78 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
76 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 79 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -510,7 +513,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
510 | #### the procedure will be the same with Microsoft Windows (C) | 513 | #### the procedure will be the same with Microsoft Windows (C) |
511 | #### and Linux/Unix | 514 | #### and Linux/Unix |
512 | ####################################################################### | 515 | ####################################################################### |
513 | TARGETS_ALL = $(am__append_4) | 516 | TARGETS_ALL = $(am__append_4) $(am__append_5) |
514 | 517 | ||
515 | ################ MACROS ###################### | 518 | ################ MACROS ###################### |
516 | # Rule to build a macro | 519 | # Rule to build a macro |
@@ -1079,7 +1082,7 @@ uninstall-am: uninstall-libsciconsole_la_etcDATA \ | |||
1079 | 1082 | ||
1080 | 1083 | ||
1081 | # This target enables tests for Scilab | 1084 | # This target enables tests for Scilab |
1082 | check-local: $(top_builddir)/scilab-bin | 1085 | check-local: $(top_builddir)/scilab-bin test |
1083 | @COMMAND="test_run('$(modulename)');quit";\ | 1086 | @COMMAND="test_run('$(modulename)');quit";\ |
1084 | export LANG=C;\ | 1087 | export LANG=C;\ |
1085 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1088 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1146,6 +1149,12 @@ clean-macros: | |||
1146 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1149 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1147 | done | 1150 | done |
1148 | 1151 | ||
1152 | test: | ||
1153 | # More tests could be added here | ||
1154 | @if test -f build.xml; then \ | ||
1155 | $(ANT) test; \ | ||
1156 | fi | ||
1157 | |||
1149 | all-local: $(TARGETS_ALL) | 1158 | all-local: $(TARGETS_ALL) |
1150 | 1159 | ||
1151 | .sci.bin: | 1160 | .sci.bin: |
diff --git a/scilab/modules/core/Makefile.in b/scilab/modules/core/Makefile.in index 3cc7ebb..5a3baf5 100644 --- a/scilab/modules/core/Makefile.in +++ b/scilab/modules/core/Makefile.in | |||
@@ -71,6 +71,9 @@ host_triplet = @host@ | |||
71 | DIST_COMMON = $(libscicore_la_include_HEADERS) $(srcdir)/Makefile.am \ | 71 | DIST_COMMON = $(libscicore_la_include_HEADERS) $(srcdir)/Makefile.am \ |
72 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am | 72 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am |
73 | @NEED_JAVA_TRUE@am__append_4 = java | 73 | @NEED_JAVA_TRUE@am__append_4 = java |
74 | |||
75 | # With --enable-compilation-tests, launch java unitary tests | ||
76 | @COMPILATION_TESTS_TRUE@am__append_5 = test | ||
74 | subdir = modules/core | 77 | subdir = modules/core |
75 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 78 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
76 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 79 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -875,7 +878,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
875 | #### the procedure will be the same with Microsoft Windows (C) | 878 | #### the procedure will be the same with Microsoft Windows (C) |
876 | #### and Linux/Unix | 879 | #### and Linux/Unix |
877 | ####################################################################### | 880 | ####################################################################### |
878 | TARGETS_ALL = $(am__append_4) | 881 | TARGETS_ALL = $(am__append_4) $(am__append_5) |
879 | 882 | ||
880 | ################ MACROS ###################### | 883 | ################ MACROS ###################### |
881 | # Rule to build a macro | 884 | # Rule to build a macro |
@@ -2847,7 +2850,7 @@ uninstall-am: uninstall-libscicore_la_etcDATA \ | |||
2847 | 2850 | ||
2848 | 2851 | ||
2849 | # This target enables tests for Scilab | 2852 | # This target enables tests for Scilab |
2850 | check-local: $(top_builddir)/scilab-bin | 2853 | check-local: $(top_builddir)/scilab-bin test |
2851 | @COMMAND="test_run('$(modulename)');quit";\ | 2854 | @COMMAND="test_run('$(modulename)');quit";\ |
2852 | export LANG=C;\ | 2855 | export LANG=C;\ |
2853 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 2856 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -2914,6 +2917,12 @@ clean-macros: | |||
2914 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 2917 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
2915 | done | 2918 | done |
2916 | 2919 | ||
2920 | test: | ||
2921 | # More tests could be added here | ||
2922 | @if test -f build.xml; then \ | ||
2923 | $(ANT) test; \ | ||
2924 | fi | ||
2925 | |||
2917 | all-local: $(TARGETS_ALL) | 2926 | all-local: $(TARGETS_ALL) |
2918 | 2927 | ||
2919 | .sci.bin: | 2928 | .sci.bin: |
diff --git a/scilab/modules/data_structures/Makefile.in b/scilab/modules/data_structures/Makefile.in index e4deba9..5f27e37 100644 --- a/scilab/modules/data_structures/Makefile.in +++ b/scilab/modules/data_structures/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/data_structures | 65 | subdir = modules/data_structures |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -505,7 +508,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
505 | #### the procedure will be the same with Microsoft Windows (C) | 508 | #### the procedure will be the same with Microsoft Windows (C) |
506 | #### and Linux/Unix | 509 | #### and Linux/Unix |
507 | ####################################################################### | 510 | ####################################################################### |
508 | TARGETS_ALL = $(am__append_1) | 511 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
509 | 512 | ||
510 | ################ MACROS ###################### | 513 | ################ MACROS ###################### |
511 | # Rule to build a macro | 514 | # Rule to build a macro |
@@ -1131,7 +1134,7 @@ libdummy_data_structures_la-intl_e.lo: src/fortran/intl_e.f | |||
1131 | $(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_data_structures_la_FFLAGS) -c -o libdummy_data_structures_la-intl_e.lo `test -f 'src/fortran/intl_e.f' || echo '$(srcdir)/'`src/fortran/intl_e.f | 1134 | $(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_data_structures_la_FFLAGS) -c -o libdummy_data_structures_la-intl_e.lo `test -f 'src/fortran/intl_e.f' || echo '$(srcdir)/'`src/fortran/intl_e.f |
1132 | 1135 | ||
1133 | # This target enables tests for Scilab | 1136 | # This target enables tests for Scilab |
1134 | check-local: $(top_builddir)/scilab-bin | 1137 | check-local: $(top_builddir)/scilab-bin test |
1135 | @COMMAND="test_run('$(modulename)');quit";\ | 1138 | @COMMAND="test_run('$(modulename)');quit";\ |
1136 | export LANG=C;\ | 1139 | export LANG=C;\ |
1137 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1140 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1198,6 +1201,12 @@ clean-macros: | |||
1198 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1201 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1199 | done | 1202 | done |
1200 | 1203 | ||
1204 | test: | ||
1205 | # More tests could be added here | ||
1206 | @if test -f build.xml; then \ | ||
1207 | $(ANT) test; \ | ||
1208 | fi | ||
1209 | |||
1201 | all-local: $(TARGETS_ALL) | 1210 | all-local: $(TARGETS_ALL) |
1202 | 1211 | ||
1203 | .sci.bin: | 1212 | .sci.bin: |
diff --git a/scilab/modules/demo_tools/Makefile.in b/scilab/modules/demo_tools/Makefile.in index 367235d..7d42a86 100644 --- a/scilab/modules/demo_tools/Makefile.in +++ b/scilab/modules/demo_tools/Makefile.in | |||
@@ -58,6 +58,9 @@ host_triplet = @host@ | |||
58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
59 | $(top_srcdir)/Makefile.incl.am | 59 | $(top_srcdir)/Makefile.incl.am |
60 | @NEED_JAVA_TRUE@am__append_1 = java | 60 | @NEED_JAVA_TRUE@am__append_1 = java |
61 | |||
62 | # With --enable-compilation-tests, launch java unitary tests | ||
63 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
61 | subdir = modules/demo_tools | 64 | subdir = modules/demo_tools |
62 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
63 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -376,7 +379,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
376 | #### the procedure will be the same with Microsoft Windows (C) | 379 | #### the procedure will be the same with Microsoft Windows (C) |
377 | #### and Linux/Unix | 380 | #### and Linux/Unix |
378 | ####################################################################### | 381 | ####################################################################### |
379 | TARGETS_ALL = $(am__append_1) | 382 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
380 | 383 | ||
381 | ################ MACROS ###################### | 384 | ################ MACROS ###################### |
382 | # Rule to build a macro | 385 | # Rule to build a macro |
@@ -689,7 +692,7 @@ uninstall-am: uninstall-libdemo_tools_la_etcDATA \ | |||
689 | 692 | ||
690 | 693 | ||
691 | # This target enables tests for Scilab | 694 | # This target enables tests for Scilab |
692 | check-local: $(top_builddir)/scilab-bin | 695 | check-local: $(top_builddir)/scilab-bin test |
693 | @COMMAND="test_run('$(modulename)');quit";\ | 696 | @COMMAND="test_run('$(modulename)');quit";\ |
694 | export LANG=C;\ | 697 | export LANG=C;\ |
695 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 698 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -756,6 +759,12 @@ clean-macros: | |||
756 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 759 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
757 | done | 760 | done |
758 | 761 | ||
762 | test: | ||
763 | # More tests could be added here | ||
764 | @if test -f build.xml; then \ | ||
765 | $(ANT) test; \ | ||
766 | fi | ||
767 | |||
759 | all-local: $(TARGETS_ALL) | 768 | all-local: $(TARGETS_ALL) |
760 | 769 | ||
761 | .sci.bin: | 770 | .sci.bin: |
diff --git a/scilab/modules/development_tools/Makefile.in b/scilab/modules/development_tools/Makefile.in index 4a544a1..cc1e69e 100644 --- a/scilab/modules/development_tools/Makefile.in +++ b/scilab/modules/development_tools/Makefile.in | |||
@@ -58,6 +58,9 @@ host_triplet = @host@ | |||
58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
59 | $(top_srcdir)/Makefile.incl.am | 59 | $(top_srcdir)/Makefile.incl.am |
60 | @NEED_JAVA_TRUE@am__append_1 = java | 60 | @NEED_JAVA_TRUE@am__append_1 = java |
61 | |||
62 | # With --enable-compilation-tests, launch java unitary tests | ||
63 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
61 | subdir = modules/development_tools | 64 | subdir = modules/development_tools |
62 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
63 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -370,7 +373,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
370 | #### the procedure will be the same with Microsoft Windows (C) | 373 | #### the procedure will be the same with Microsoft Windows (C) |
371 | #### and Linux/Unix | 374 | #### and Linux/Unix |
372 | ####################################################################### | 375 | ####################################################################### |
373 | TARGETS_ALL = $(am__append_1) | 376 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
374 | 377 | ||
375 | ################ MACROS ###################### | 378 | ################ MACROS ###################### |
376 | # Rule to build a macro | 379 | # Rule to build a macro |
@@ -661,7 +664,7 @@ uninstall-am: uninstall-libdevelopment_tools_la_etcDATA \ | |||
661 | 664 | ||
662 | 665 | ||
663 | # This target enables tests for Scilab | 666 | # This target enables tests for Scilab |
664 | check-local: $(top_builddir)/scilab-bin | 667 | check-local: $(top_builddir)/scilab-bin test |
665 | @COMMAND="test_run('$(modulename)');quit";\ | 668 | @COMMAND="test_run('$(modulename)');quit";\ |
666 | export LANG=C;\ | 669 | export LANG=C;\ |
667 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 670 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -728,6 +731,12 @@ clean-macros: | |||
728 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 731 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
729 | done | 732 | done |
730 | 733 | ||
734 | test: | ||
735 | # More tests could be added here | ||
736 | @if test -f build.xml; then \ | ||
737 | $(ANT) test; \ | ||
738 | fi | ||
739 | |||
731 | all-local: $(TARGETS_ALL) | 740 | all-local: $(TARGETS_ALL) |
732 | 741 | ||
733 | .sci.bin: | 742 | .sci.bin: |
diff --git a/scilab/modules/differential_equations/Makefile.in b/scilab/modules/differential_equations/Makefile.in index db8c320..884c227 100644 --- a/scilab/modules/differential_equations/Makefile.in +++ b/scilab/modules/differential_equations/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/differential_equations | 65 | subdir = modules/differential_equations |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -594,7 +597,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
594 | #### the procedure will be the same with Microsoft Windows (C) | 597 | #### the procedure will be the same with Microsoft Windows (C) |
595 | #### and Linux/Unix | 598 | #### and Linux/Unix |
596 | ####################################################################### | 599 | ####################################################################### |
597 | TARGETS_ALL = $(am__append_1) | 600 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
598 | 601 | ||
599 | ################ MACROS ###################### | 602 | ################ MACROS ###################### |
600 | # Rule to build a macro | 603 | # Rule to build a macro |
@@ -1508,7 +1511,7 @@ uninstall-am: uninstall-libscidifferential_equations_la_etcDATA \ | |||
1508 | 1511 | ||
1509 | 1512 | ||
1510 | # This target enables tests for Scilab | 1513 | # This target enables tests for Scilab |
1511 | check-local: $(top_builddir)/scilab-bin | 1514 | check-local: $(top_builddir)/scilab-bin test |
1512 | @COMMAND="test_run('$(modulename)');quit";\ | 1515 | @COMMAND="test_run('$(modulename)');quit";\ |
1513 | export LANG=C;\ | 1516 | export LANG=C;\ |
1514 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1517 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1575,6 +1578,12 @@ clean-macros: | |||
1575 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1578 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1576 | done | 1579 | done |
1577 | 1580 | ||
1581 | test: | ||
1582 | # More tests could be added here | ||
1583 | @if test -f build.xml; then \ | ||
1584 | $(ANT) test; \ | ||
1585 | fi | ||
1586 | |||
1578 | all-local: $(TARGETS_ALL) | 1587 | all-local: $(TARGETS_ALL) |
1579 | 1588 | ||
1580 | .sci.bin: | 1589 | .sci.bin: |
diff --git a/scilab/modules/double/Makefile.in b/scilab/modules/double/Makefile.in index 27b33e5..f47ace3 100644 --- a/scilab/modules/double/Makefile.in +++ b/scilab/modules/double/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/double | 65 | subdir = modules/double |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -447,7 +450,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
447 | #### the procedure will be the same with Microsoft Windows (C) | 450 | #### the procedure will be the same with Microsoft Windows (C) |
448 | #### and Linux/Unix | 451 | #### and Linux/Unix |
449 | ####################################################################### | 452 | ####################################################################### |
450 | TARGETS_ALL = $(am__append_1) | 453 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
451 | 454 | ||
452 | ################ MACROS ###################### | 455 | ################ MACROS ###################### |
453 | # Rule to build a macro | 456 | # Rule to build a macro |
@@ -931,7 +934,7 @@ uninstall-am: uninstall-libscidouble_la_etcDATA \ | |||
931 | 934 | ||
932 | 935 | ||
933 | # This target enables tests for Scilab | 936 | # This target enables tests for Scilab |
934 | check-local: $(top_builddir)/scilab-bin | 937 | check-local: $(top_builddir)/scilab-bin test |
935 | @COMMAND="test_run('$(modulename)');quit";\ | 938 | @COMMAND="test_run('$(modulename)');quit";\ |
936 | export LANG=C;\ | 939 | export LANG=C;\ |
937 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 940 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -998,6 +1001,12 @@ clean-macros: | |||
998 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1001 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
999 | done | 1002 | done |
1000 | 1003 | ||
1004 | test: | ||
1005 | # More tests could be added here | ||
1006 | @if test -f build.xml; then \ | ||
1007 | $(ANT) test; \ | ||
1008 | fi | ||
1009 | |||
1001 | all-local: $(TARGETS_ALL) | 1010 | all-local: $(TARGETS_ALL) |
1002 | 1011 | ||
1003 | .sci.bin: | 1012 | .sci.bin: |
diff --git a/scilab/modules/dynamic_link/Makefile.in b/scilab/modules/dynamic_link/Makefile.in index 17424e0..e9128c1 100644 --- a/scilab/modules/dynamic_link/Makefile.in +++ b/scilab/modules/dynamic_link/Makefile.in | |||
@@ -60,6 +60,9 @@ host_triplet = @host@ | |||
60 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 60 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
61 | $(top_srcdir)/Makefile.incl.am | 61 | $(top_srcdir)/Makefile.incl.am |
62 | @NEED_JAVA_TRUE@am__append_1 = java | 62 | @NEED_JAVA_TRUE@am__append_1 = java |
63 | |||
64 | # With --enable-compilation-tests, launch java unitary tests | ||
65 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
63 | subdir = modules/dynamic_link | 66 | subdir = modules/dynamic_link |
64 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
65 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -491,7 +494,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
491 | #### the procedure will be the same with Microsoft Windows (C) | 494 | #### the procedure will be the same with Microsoft Windows (C) |
492 | #### and Linux/Unix | 495 | #### and Linux/Unix |
493 | ####################################################################### | 496 | ####################################################################### |
494 | TARGETS_ALL = $(am__append_1) | 497 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
495 | 498 | ||
496 | ################ MACROS ###################### | 499 | ################ MACROS ###################### |
497 | # Rule to build a macro | 500 | # Rule to build a macro |
@@ -1102,7 +1105,7 @@ uninstall-am: uninstall-libscidynamic_link_la_etcDATA \ | |||
1102 | 1105 | ||
1103 | 1106 | ||
1104 | # This target enables tests for Scilab | 1107 | # This target enables tests for Scilab |
1105 | check-local: $(top_builddir)/scilab-bin | 1108 | check-local: $(top_builddir)/scilab-bin test |
1106 | @COMMAND="test_run('$(modulename)');quit";\ | 1109 | @COMMAND="test_run('$(modulename)');quit";\ |
1107 | export LANG=C;\ | 1110 | export LANG=C;\ |
1108 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1111 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1169,6 +1172,12 @@ clean-macros: | |||
1169 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1172 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1170 | done | 1173 | done |
1171 | 1174 | ||
1175 | test: | ||
1176 | # More tests could be added here | ||
1177 | @if test -f build.xml; then \ | ||
1178 | $(ANT) test; \ | ||
1179 | fi | ||
1180 | |||
1172 | all-local: $(TARGETS_ALL) | 1181 | all-local: $(TARGETS_ALL) |
1173 | 1182 | ||
1174 | .sci.bin: | 1183 | .sci.bin: |
diff --git a/scilab/modules/elementary_functions/Makefile.in b/scilab/modules/elementary_functions/Makefile.in index 73b0641..59a6c4d 100644 --- a/scilab/modules/elementary_functions/Makefile.in +++ b/scilab/modules/elementary_functions/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/elementary_functions | 65 | subdir = modules/elementary_functions |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -1188,7 +1191,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
1188 | #### the procedure will be the same with Microsoft Windows (C) | 1191 | #### the procedure will be the same with Microsoft Windows (C) |
1189 | #### and Linux/Unix | 1192 | #### and Linux/Unix |
1190 | ####################################################################### | 1193 | ####################################################################### |
1191 | TARGETS_ALL = $(am__append_1) | 1194 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
1192 | 1195 | ||
1193 | ################ MACROS ###################### | 1196 | ################ MACROS ###################### |
1194 | # Rule to build a macro | 1197 | # Rule to build a macro |
@@ -3067,7 +3070,7 @@ libdummy_elementary_functions_la-icopy.lo: src/fortran/linpack/icopy.f | |||
3067 | $(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_elementary_functions_la_FFLAGS) -c -o libdummy_elementary_functions_la-icopy.lo `test -f 'src/fortran/linpack/icopy.f' || echo '$(srcdir)/'`src/fortran/linpack/icopy.f | 3070 | $(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_elementary_functions_la_FFLAGS) -c -o libdummy_elementary_functions_la-icopy.lo `test -f 'src/fortran/linpack/icopy.f' || echo '$(srcdir)/'`src/fortran/linpack/icopy.f |
3068 | 3071 | ||
3069 | # This target enables tests for Scilab | 3072 | # This target enables tests for Scilab |
3070 | check-local: $(top_builddir)/scilab-bin | 3073 | check-local: $(top_builddir)/scilab-bin test |
3071 | @COMMAND="test_run('$(modulename)');quit";\ | 3074 | @COMMAND="test_run('$(modulename)');quit";\ |
3072 | export LANG=C;\ | 3075 | export LANG=C;\ |
3073 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 3076 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -3134,6 +3137,12 @@ clean-macros: | |||
3134 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 3137 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
3135 | done | 3138 | done |
3136 | 3139 | ||
3140 | test: | ||
3141 | # More tests could be added here | ||
3142 | @if test -f build.xml; then \ | ||
3143 | $(ANT) test; \ | ||
3144 | fi | ||
3145 | |||
3137 | all-local: $(TARGETS_ALL) | 3146 | all-local: $(TARGETS_ALL) |
3138 | 3147 | ||
3139 | .sci.bin: | 3148 | .sci.bin: |
diff --git a/scilab/modules/fftw/Makefile.in b/scilab/modules/fftw/Makefile.in index ac1ae77..4d26325 100644 --- a/scilab/modules/fftw/Makefile.in +++ b/scilab/modules/fftw/Makefile.in | |||
@@ -64,6 +64,9 @@ host_triplet = @host@ | |||
64 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 64 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
65 | $(top_srcdir)/Makefile.incl.am | 65 | $(top_srcdir)/Makefile.incl.am |
66 | @NEED_JAVA_TRUE@am__append_1 = java | 66 | @NEED_JAVA_TRUE@am__append_1 = java |
67 | |||
68 | # With --enable-compilation-tests, launch java unitary tests | ||
69 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
67 | subdir = modules/fftw | 70 | subdir = modules/fftw |
68 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
69 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -474,7 +477,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
474 | #### the procedure will be the same with Microsoft Windows (C) | 477 | #### the procedure will be the same with Microsoft Windows (C) |
475 | #### and Linux/Unix | 478 | #### and Linux/Unix |
476 | ####################################################################### | 479 | ####################################################################### |
477 | TARGETS_ALL = $(am__append_1) | 480 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
478 | 481 | ||
479 | ################ MACROS ###################### | 482 | ################ MACROS ###################### |
480 | # Rule to build a macro | 483 | # Rule to build a macro |
@@ -1015,7 +1018,7 @@ uninstall-am: uninstall-libscifftw_la_etcDATA \ | |||
1015 | 1018 | ||
1016 | 1019 | ||
1017 | # This target enables tests for Scilab | 1020 | # This target enables tests for Scilab |
1018 | check-local: $(top_builddir)/scilab-bin | 1021 | check-local: $(top_builddir)/scilab-bin test |
1019 | @COMMAND="test_run('$(modulename)');quit";\ | 1022 | @COMMAND="test_run('$(modulename)');quit";\ |
1020 | export LANG=C;\ | 1023 | export LANG=C;\ |
1021 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1024 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1082,6 +1085,12 @@ clean-macros: | |||
1082 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1085 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1083 | done | 1086 | done |
1084 | 1087 | ||
1088 | test: | ||
1089 | # More tests could be added here | ||
1090 | @if test -f build.xml; then \ | ||
1091 | $(ANT) test; \ | ||
1092 | fi | ||
1093 | |||
1085 | all-local: $(TARGETS_ALL) | 1094 | all-local: $(TARGETS_ALL) |
1086 | 1095 | ||
1087 | .sci.bin: | 1096 | .sci.bin: |
diff --git a/scilab/modules/fileio/Makefile.in b/scilab/modules/fileio/Makefile.in index 1ecb957..a92d752 100644 --- a/scilab/modules/fileio/Makefile.in +++ b/scilab/modules/fileio/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/fileio | 65 | subdir = modules/fileio |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -592,7 +595,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
592 | #### the procedure will be the same with Microsoft Windows (C) | 595 | #### the procedure will be the same with Microsoft Windows (C) |
593 | #### and Linux/Unix | 596 | #### and Linux/Unix |
594 | ####################################################################### | 597 | ####################################################################### |
595 | TARGETS_ALL = $(am__append_1) | 598 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
596 | 599 | ||
597 | ################ MACROS ###################### | 600 | ################ MACROS ###################### |
598 | # Rule to build a macro | 601 | # Rule to build a macro |
@@ -1758,7 +1761,7 @@ uninstall-am: uninstall-libscifileio_la_etcDATA \ | |||
1758 | 1761 | ||
1759 | 1762 | ||
1760 | # This target enables tests for Scilab | 1763 | # This target enables tests for Scilab |
1761 | check-local: $(top_builddir)/scilab-bin | 1764 | check-local: $(top_builddir)/scilab-bin test |
1762 | @COMMAND="test_run('$(modulename)');quit";\ | 1765 | @COMMAND="test_run('$(modulename)');quit";\ |
1763 | export LANG=C;\ | 1766 | export LANG=C;\ |
1764 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1767 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1825,6 +1828,12 @@ clean-macros: | |||
1825 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1828 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1826 | done | 1829 | done |
1827 | 1830 | ||
1831 | test: | ||
1832 | # More tests could be added here | ||
1833 | @if test -f build.xml; then \ | ||
1834 | $(ANT) test; \ | ||
1835 | fi | ||
1836 | |||
1828 | all-local: $(TARGETS_ALL) | 1837 | all-local: $(TARGETS_ALL) |
1829 | 1838 | ||
1830 | .sci.bin: | 1839 | .sci.bin: |
diff --git a/scilab/modules/functions/Makefile.in b/scilab/modules/functions/Makefile.in index 32b85a4..f00b28c 100644 --- a/scilab/modules/functions/Makefile.in +++ b/scilab/modules/functions/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/functions | 65 | subdir = modules/functions |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -470,7 +473,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
470 | #### the procedure will be the same with Microsoft Windows (C) | 473 | #### the procedure will be the same with Microsoft Windows (C) |
471 | #### and Linux/Unix | 474 | #### and Linux/Unix |
472 | ####################################################################### | 475 | ####################################################################### |
473 | TARGETS_ALL = $(am__append_1) | 476 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
474 | 477 | ||
475 | ################ MACROS ###################### | 478 | ################ MACROS ###################### |
476 | # Rule to build a macro | 479 | # Rule to build a macro |
@@ -1021,7 +1024,7 @@ uninstall-am: uninstall-libscifunctions_la_etcDATA \ | |||
1021 | 1024 | ||
1022 | 1025 | ||
1023 | # This target enables tests for Scilab | 1026 | # This target enables tests for Scilab |
1024 | check-local: $(top_builddir)/scilab-bin | 1027 | check-local: $(top_builddir)/scilab-bin test |
1025 | @COMMAND="test_run('$(modulename)');quit";\ | 1028 | @COMMAND="test_run('$(modulename)');quit";\ |
1026 | export LANG=C;\ | 1029 | export LANG=C;\ |
1027 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1030 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1088,6 +1091,12 @@ clean-macros: | |||
1088 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1091 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1089 | done | 1092 | done |
1090 | 1093 | ||
1094 | test: | ||
1095 | # More tests could be added here | ||
1096 | @if test -f build.xml; then \ | ||
1097 | $(ANT) test; \ | ||
1098 | fi | ||
1099 | |||
1091 | all-local: $(TARGETS_ALL) | 1100 | all-local: $(TARGETS_ALL) |
1092 | 1101 | ||
1093 | .sci.bin: | 1102 | .sci.bin: |
diff --git a/scilab/modules/genetic_algorithms/Makefile.in b/scilab/modules/genetic_algorithms/Makefile.in index 70d69fc..7eff724 100644 --- a/scilab/modules/genetic_algorithms/Makefile.in +++ b/scilab/modules/genetic_algorithms/Makefile.in | |||
@@ -62,6 +62,9 @@ host_triplet = @host@ | |||
62 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 62 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
63 | $(top_srcdir)/Makefile.incl.am | 63 | $(top_srcdir)/Makefile.incl.am |
64 | @NEED_JAVA_TRUE@am__append_1 = java | 64 | @NEED_JAVA_TRUE@am__append_1 = java |
65 | |||
66 | # With --enable-compilation-tests, launch java unitary tests | ||
67 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
65 | subdir = modules/genetic_algorithms | 68 | subdir = modules/genetic_algorithms |
66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -375,7 +378,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
375 | #### the procedure will be the same with Microsoft Windows (C) | 378 | #### the procedure will be the same with Microsoft Windows (C) |
376 | #### and Linux/Unix | 379 | #### and Linux/Unix |
377 | ####################################################################### | 380 | ####################################################################### |
378 | TARGETS_ALL = $(am__append_1) | 381 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
379 | 382 | ||
380 | ################ MACROS ###################### | 383 | ################ MACROS ###################### |
381 | # Rule to build a macro | 384 | # Rule to build a macro |
@@ -666,7 +669,7 @@ uninstall-am: uninstall-libgenetic_algorithms_la_etcDATA \ | |||
666 | 669 | ||
667 | 670 | ||
668 | # This target enables tests for Scilab | 671 | # This target enables tests for Scilab |
669 | check-local: $(top_builddir)/scilab-bin | 672 | check-local: $(top_builddir)/scilab-bin test |
670 | @COMMAND="test_run('$(modulename)');quit";\ | 673 | @COMMAND="test_run('$(modulename)');quit";\ |
671 | export LANG=C;\ | 674 | export LANG=C;\ |
672 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 675 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -733,6 +736,12 @@ clean-macros: | |||
733 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 736 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
734 | done | 737 | done |
735 | 738 | ||
739 | test: | ||
740 | # More tests could be added here | ||
741 | @if test -f build.xml; then \ | ||
742 | $(ANT) test; \ | ||
743 | fi | ||
744 | |||
736 | all-local: $(TARGETS_ALL) | 745 | all-local: $(TARGETS_ALL) |
737 | 746 | ||
738 | .sci.bin: | 747 | .sci.bin: |
diff --git a/scilab/modules/graph/Makefile.in b/scilab/modules/graph/Makefile.in index f1690d0..e1618d0 100644 --- a/scilab/modules/graph/Makefile.in +++ b/scilab/modules/graph/Makefile.in | |||
@@ -65,7 +65,10 @@ host_triplet = @host@ | |||
65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | @GUI_TRUE@am__append_2 = libscigraph.la | 68 | |
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
71 | @GUI_TRUE@am__append_3 = libscigraph.la | ||
69 | subdir = modules/graph | 72 | subdir = modules/graph |
70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -414,7 +417,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
414 | #### the procedure will be the same with Microsoft Windows (C) | 417 | #### the procedure will be the same with Microsoft Windows (C) |
415 | #### and Linux/Unix | 418 | #### and Linux/Unix |
416 | ####################################################################### | 419 | ####################################################################### |
417 | TARGETS_ALL = $(am__append_1) | 420 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
418 | 421 | ||
419 | ################ MACROS ###################### | 422 | ################ MACROS ###################### |
420 | # Rule to build a macro | 423 | # Rule to build a macro |
@@ -481,7 +484,7 @@ libscigraph_disable_la_CFLAGS = | |||
481 | GRAPH_DISABLE_C_SOURCES = | 484 | GRAPH_DISABLE_C_SOURCES = |
482 | libscigraph_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) | 485 | libscigraph_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) |
483 | libscigraph_disable_la_SOURCES = $(GRAPH_DISABLE_C_SOURCES) | 486 | libscigraph_disable_la_SOURCES = $(GRAPH_DISABLE_C_SOURCES) |
484 | pkglib_LTLIBRARIES = libscigraph-disable.la $(am__append_2) | 487 | pkglib_LTLIBRARIES = libscigraph-disable.la $(am__append_3) |
485 | libscigraph_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) | 488 | libscigraph_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) |
486 | libscigraph_la_SOURCES = $(GRAPH_C_SOURCES) $(GRAPH_JNI_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(GRAPH_CPP_SOURCES) | 489 | libscigraph_la_SOURCES = $(GRAPH_C_SOURCES) $(GRAPH_JNI_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(GRAPH_CPP_SOURCES) |
487 | 490 | ||
@@ -814,7 +817,7 @@ uninstall-am: uninstall-libscigraph_la_etcDATA \ | |||
814 | 817 | ||
815 | 818 | ||
816 | # This target enables tests for Scilab | 819 | # This target enables tests for Scilab |
817 | check-local: $(top_builddir)/scilab-bin | 820 | check-local: $(top_builddir)/scilab-bin test |
818 | @COMMAND="test_run('$(modulename)');quit";\ | 821 | @COMMAND="test_run('$(modulename)');quit";\ |
819 | export LANG=C;\ | 822 | export LANG=C;\ |
820 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 823 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -881,6 +884,12 @@ clean-macros: | |||
881 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 884 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
882 | done | 885 | done |
883 | 886 | ||
887 | test: | ||
888 | # More tests could be added here | ||
889 | @if test -f build.xml; then \ | ||
890 | $(ANT) test; \ | ||
891 | fi | ||
892 | |||
884 | all-local: $(TARGETS_ALL) | 893 | all-local: $(TARGETS_ALL) |
885 | 894 | ||
886 | .sci.bin: | 895 | .sci.bin: |
diff --git a/scilab/modules/graphic_export/Makefile.in b/scilab/modules/graphic_export/Makefile.in index 029a4e3..7409aa5 100644 --- a/scilab/modules/graphic_export/Makefile.in +++ b/scilab/modules/graphic_export/Makefile.in | |||
@@ -67,6 +67,9 @@ host_triplet = @host@ | |||
67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
68 | $(top_srcdir)/Makefile.incl.am | 68 | $(top_srcdir)/Makefile.incl.am |
69 | @NEED_JAVA_TRUE@am__append_2 = java | 69 | @NEED_JAVA_TRUE@am__append_2 = java |
70 | |||
71 | # With --enable-compilation-tests, launch java unitary tests | ||
72 | @COMPILATION_TESTS_TRUE@am__append_3 = test | ||
70 | subdir = modules/graphic_export | 73 | subdir = modules/graphic_export |
71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 74 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 75 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -530,7 +533,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
530 | #### the procedure will be the same with Microsoft Windows (C) | 533 | #### the procedure will be the same with Microsoft Windows (C) |
531 | #### and Linux/Unix | 534 | #### and Linux/Unix |
532 | ####################################################################### | 535 | ####################################################################### |
533 | TARGETS_ALL = $(am__append_2) | 536 | TARGETS_ALL = $(am__append_2) $(am__append_3) |
534 | 537 | ||
535 | ################ MACROS ###################### | 538 | ################ MACROS ###################### |
536 | # Rule to build a macro | 539 | # Rule to build a macro |
@@ -1173,7 +1176,7 @@ uninstall-am: uninstall-libscigraphic_export_la_etcDATA \ | |||
1173 | 1176 | ||
1174 | 1177 | ||
1175 | # This target enables tests for Scilab | 1178 | # This target enables tests for Scilab |
1176 | check-local: $(top_builddir)/scilab-bin | 1179 | check-local: $(top_builddir)/scilab-bin test |
1177 | @COMMAND="test_run('$(modulename)');quit";\ | 1180 | @COMMAND="test_run('$(modulename)');quit";\ |
1178 | export LANG=C;\ | 1181 | export LANG=C;\ |
1179 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1182 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1240,6 +1243,12 @@ clean-macros: | |||
1240 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1243 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1241 | done | 1244 | done |
1242 | 1245 | ||
1246 | test: | ||
1247 | # More tests could be added here | ||
1248 | @if test -f build.xml; then \ | ||
1249 | $(ANT) test; \ | ||
1250 | fi | ||
1251 | |||
1243 | all-local: $(TARGETS_ALL) | 1252 | all-local: $(TARGETS_ALL) |
1244 | 1253 | ||
1245 | .sci.bin: | 1254 | .sci.bin: |
diff --git a/scilab/modules/graphics/Makefile.in b/scilab/modules/graphics/Makefile.in index f8a42bb..838c4aa 100644 --- a/scilab/modules/graphics/Makefile.in +++ b/scilab/modules/graphics/Makefile.in | |||
@@ -67,6 +67,9 @@ host_triplet = @host@ | |||
67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
68 | $(top_srcdir)/Makefile.incl.am | 68 | $(top_srcdir)/Makefile.incl.am |
69 | @NEED_JAVA_TRUE@am__append_2 = java | 69 | @NEED_JAVA_TRUE@am__append_2 = java |
70 | |||
71 | # With --enable-compilation-tests, launch java unitary tests | ||
72 | @COMPILATION_TESTS_TRUE@am__append_3 = test | ||
70 | subdir = modules/graphics | 73 | subdir = modules/graphics |
71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 74 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 75 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -1258,7 +1261,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
1258 | #### the procedure will be the same with Microsoft Windows (C) | 1261 | #### the procedure will be the same with Microsoft Windows (C) |
1259 | #### and Linux/Unix | 1262 | #### and Linux/Unix |
1260 | ####################################################################### | 1263 | ####################################################################### |
1261 | TARGETS_ALL = $(am__append_2) | 1264 | TARGETS_ALL = $(am__append_2) $(am__append_3) |
1262 | 1265 | ||
1263 | ################ MACROS ###################### | 1266 | ################ MACROS ###################### |
1264 | # Rule to build a macro | 1267 | # Rule to build a macro |
@@ -4717,7 +4720,7 @@ uninstall-am: uninstall-libscigraphics_la_etcDATA \ | |||
4717 | 4720 | ||
4718 | 4721 | ||
4719 | # This target enables tests for Scilab | 4722 | # This target enables tests for Scilab |
4720 | check-local: $(top_builddir)/scilab-bin | 4723 | check-local: $(top_builddir)/scilab-bin test |
4721 | @COMMAND="test_run('$(modulename)');quit";\ | 4724 | @COMMAND="test_run('$(modulename)');quit";\ |
4722 | export LANG=C;\ | 4725 | export LANG=C;\ |
4723 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 4726 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -4784,6 +4787,12 @@ clean-macros: | |||
4784 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 4787 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
4785 | done | 4788 | done |
4786 | 4789 | ||
4790 | test: | ||
4791 | # More tests could be added here | ||
4792 | @if test -f build.xml; then \ | ||
4793 | $(ANT) test; \ | ||
4794 | fi | ||
4795 | |||
4787 | all-local: $(TARGETS_ALL) | 4796 | all-local: $(TARGETS_ALL) |
4788 | 4797 | ||
4789 | .sci.bin: | 4798 | .sci.bin: |
diff --git a/scilab/modules/gui/Makefile.in b/scilab/modules/gui/Makefile.in index d494357..0791aeb 100644 --- a/scilab/modules/gui/Makefile.in +++ b/scilab/modules/gui/Makefile.in | |||
@@ -69,7 +69,10 @@ host_triplet = @host@ | |||
69 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 69 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
70 | $(top_srcdir)/Makefile.incl.am | 70 | $(top_srcdir)/Makefile.incl.am |
71 | @NEED_JAVA_TRUE@am__append_1 = java | 71 | @NEED_JAVA_TRUE@am__append_1 = java |
72 | @GUI_TRUE@am__append_2 = libscigui.la | 72 | |
73 | # With --enable-compilation-tests, launch java unitary tests | ||
74 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
75 | @GUI_TRUE@am__append_3 = libscigui.la | ||
73 | subdir = modules/gui | 76 | subdir = modules/gui |
74 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 77 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
75 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 78 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -549,7 +552,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
549 | #### the procedure will be the same with Microsoft Windows (C) | 552 | #### the procedure will be the same with Microsoft Windows (C) |
550 | #### and Linux/Unix | 553 | #### and Linux/Unix |
551 | ####################################################################### | 554 | ####################################################################### |
552 | TARGETS_ALL = $(am__append_1) | 555 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
553 | 556 | ||
554 | ################ MACROS ###################### | 557 | ################ MACROS ###################### |
555 | # Rule to build a macro | 558 | # Rule to build a macro |
@@ -806,7 +809,7 @@ libscigui_disable_la_CFLAGS = -Iincludes/ \ | |||
806 | GUI_DISABLE_C_SOURCES = src/nogui/nogui.c | 809 | GUI_DISABLE_C_SOURCES = src/nogui/nogui.c |
807 | libscigui_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) | 810 | libscigui_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) |
808 | libscigui_disable_la_SOURCES = $(GUI_DISABLE_C_SOURCES) | 811 | libscigui_disable_la_SOURCES = $(GUI_DISABLE_C_SOURCES) |
809 | pkglib_LTLIBRARIES = libscigui-disable.la $(am__append_2) | 812 | pkglib_LTLIBRARIES = libscigui-disable.la $(am__append_3) |
810 | libscigui_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) | 813 | libscigui_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) |
811 | libscigui_la_SOURCES = $(GUI_C_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(GATEWAY_FORTRAN_SOURCES) $(GUI_CPP_SOURCES) | 814 | libscigui_la_SOURCES = $(GUI_C_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(GATEWAY_FORTRAN_SOURCES) $(GUI_CPP_SOURCES) |
812 | 815 | ||
@@ -2415,7 +2418,7 @@ uninstall-am: uninstall-libscigui_la_etcDATA \ | |||
2415 | 2418 | ||
2416 | 2419 | ||
2417 | # This target enables tests for Scilab | 2420 | # This target enables tests for Scilab |
2418 | check-local: $(top_builddir)/scilab-bin | 2421 | check-local: $(top_builddir)/scilab-bin test |
2419 | @COMMAND="test_run('$(modulename)');quit";\ | 2422 | @COMMAND="test_run('$(modulename)');quit";\ |
2420 | export LANG=C;\ | 2423 | export LANG=C;\ |
2421 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 2424 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -2482,6 +2485,12 @@ clean-macros: | |||
2482 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 2485 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
2483 | done | 2486 | done |
2484 | 2487 | ||
2488 | test: | ||
2489 | # More tests could be added here | ||
2490 | @if test -f build.xml; then \ | ||
2491 | $(ANT) test; \ | ||
2492 | fi | ||
2493 | |||
2485 | all-local: $(TARGETS_ALL) | 2494 | all-local: $(TARGETS_ALL) |
2486 | 2495 | ||
2487 | .sci.bin: | 2496 | .sci.bin: |
diff --git a/scilab/modules/hdf5/Makefile.in b/scilab/modules/hdf5/Makefile.in index af01c03..3d2644b 100644 --- a/scilab/modules/hdf5/Makefile.in +++ b/scilab/modules/hdf5/Makefile.in | |||
@@ -67,6 +67,9 @@ host_triplet = @host@ | |||
67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
68 | $(top_srcdir)/Makefile.incl.am | 68 | $(top_srcdir)/Makefile.incl.am |
69 | @NEED_JAVA_TRUE@am__append_3 = java | 69 | @NEED_JAVA_TRUE@am__append_3 = java |
70 | |||
71 | # With --enable-compilation-tests, launch java unitary tests | ||
72 | @COMPILATION_TESTS_TRUE@am__append_4 = test | ||
70 | subdir = modules/hdf5 | 73 | subdir = modules/hdf5 |
71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 74 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 75 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -542,7 +545,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
542 | #### the procedure will be the same with Microsoft Windows (C) | 545 | #### the procedure will be the same with Microsoft Windows (C) |
543 | #### and Linux/Unix | 546 | #### and Linux/Unix |
544 | ####################################################################### | 547 | ####################################################################### |
545 | TARGETS_ALL = $(am__append_3) | 548 | TARGETS_ALL = $(am__append_3) $(am__append_4) |
546 | 549 | ||
547 | ################ MACROS ###################### | 550 | ################ MACROS ###################### |
548 | # Rule to build a macro | 551 | # Rule to build a macro |
@@ -1088,7 +1091,7 @@ uninstall-am: uninstall-libscihdf5_la_etcDATA \ | |||
1088 | 1091 | ||
1089 | 1092 | ||
1090 | # This target enables tests for Scilab | 1093 | # This target enables tests for Scilab |
1091 | check-local: $(top_builddir)/scilab-bin | 1094 | check-local: $(top_builddir)/scilab-bin test |
1092 | @COMMAND="test_run('$(modulename)');quit";\ | 1095 | @COMMAND="test_run('$(modulename)');quit";\ |
1093 | export LANG=C;\ | 1096 | export LANG=C;\ |
1094 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1097 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1155,6 +1158,12 @@ clean-macros: | |||
1155 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1158 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1156 | done | 1159 | done |
1157 | 1160 | ||
1161 | test: | ||
1162 | # More tests could be added here | ||
1163 | @if test -f build.xml; then \ | ||
1164 | $(ANT) test; \ | ||
1165 | fi | ||
1166 | |||
1158 | all-local: $(TARGETS_ALL) | 1167 | all-local: $(TARGETS_ALL) |
1159 | 1168 | ||
1160 | .sci.bin: | 1169 | .sci.bin: |
diff --git a/scilab/modules/helptools/Makefile.in b/scilab/modules/helptools/Makefile.in index fb6125f..f321c3c 100644 --- a/scilab/modules/helptools/Makefile.in +++ b/scilab/modules/helptools/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/helptools | 65 | subdir = modules/helptools |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -548,7 +551,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
548 | #### the procedure will be the same with Microsoft Windows (C) | 551 | #### the procedure will be the same with Microsoft Windows (C) |
549 | #### and Linux/Unix | 552 | #### and Linux/Unix |
550 | ####################################################################### | 553 | ####################################################################### |
551 | TARGETS_ALL = $(am__append_1) | 554 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
552 | 555 | ||
553 | ################ MACROS ###################### | 556 | ################ MACROS ###################### |
554 | # Rule to build a macro | 557 | # Rule to build a macro |
@@ -1283,7 +1286,7 @@ uninstall-am: uninstall-libscihelptools_la_binDATA \ | |||
1283 | 1286 | ||
1284 | 1287 | ||
1285 | # This target enables tests for Scilab | 1288 | # This target enables tests for Scilab |
1286 | check-local: $(top_builddir)/scilab-bin | 1289 | check-local: $(top_builddir)/scilab-bin test |
1287 | @COMMAND="test_run('$(modulename)');quit";\ | 1290 | @COMMAND="test_run('$(modulename)');quit";\ |
1288 | export LANG=C;\ | 1291 | export LANG=C;\ |
1289 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1292 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1350,6 +1353,12 @@ clean-macros: | |||
1350 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1353 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1351 | done | 1354 | done |
1352 | 1355 | ||
1356 | test: | ||
1357 | # More tests could be added here | ||
1358 | @if test -f build.xml; then \ | ||
1359 | $(ANT) test; \ | ||
1360 | fi | ||
1361 | |||
1353 | all-local: $(TARGETS_ALL) | 1362 | all-local: $(TARGETS_ALL) |
1354 | 1363 | ||
1355 | .sci.bin: | 1364 | .sci.bin: |
diff --git a/scilab/modules/history_manager/Makefile.in b/scilab/modules/history_manager/Makefile.in index 5cf4cbc..18979f0 100644 --- a/scilab/modules/history_manager/Makefile.in +++ b/scilab/modules/history_manager/Makefile.in | |||
@@ -64,6 +64,9 @@ DIST_COMMON = $(libscihistory_manager_la_include_HEADERS) \ | |||
64 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 64 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
65 | $(top_srcdir)/Makefile.incl.am | 65 | $(top_srcdir)/Makefile.incl.am |
66 | @NEED_JAVA_TRUE@am__append_2 = java | 66 | @NEED_JAVA_TRUE@am__append_2 = java |
67 | |||
68 | # With --enable-compilation-tests, launch java unitary tests | ||
69 | @COMPILATION_TESTS_TRUE@am__append_3 = test | ||
67 | subdir = modules/history_manager | 70 | subdir = modules/history_manager |
68 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
69 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -541,7 +544,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
541 | #### the procedure will be the same with Microsoft Windows (C) | 544 | #### the procedure will be the same with Microsoft Windows (C) |
542 | #### and Linux/Unix | 545 | #### and Linux/Unix |
543 | ####################################################################### | 546 | ####################################################################### |
544 | TARGETS_ALL = $(am__append_2) | 547 | TARGETS_ALL = $(am__append_2) $(am__append_3) |
545 | 548 | ||
546 | ################ MACROS ###################### | 549 | ################ MACROS ###################### |
547 | # Rule to build a macro | 550 | # Rule to build a macro |
@@ -1182,7 +1185,7 @@ uninstall-am: uninstall-libscihistory_manager_la_etcDATA \ | |||
1182 | 1185 | ||
1183 | 1186 | ||
1184 | # This target enables tests for Scilab | 1187 | # This target enables tests for Scilab |
1185 | check-local: $(top_builddir)/scilab-bin | 1188 | check-local: $(top_builddir)/scilab-bin test |
1186 | @COMMAND="test_run('$(modulename)');quit";\ | 1189 | @COMMAND="test_run('$(modulename)');quit";\ |
1187 | export LANG=C;\ | 1190 | export LANG=C;\ |
1188 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1191 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1249,6 +1252,12 @@ clean-macros: | |||
1249 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1252 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1250 | done | 1253 | done |
1251 | 1254 | ||
1255 | test: | ||
1256 | # More tests could be added here | ||
1257 | @if test -f build.xml; then \ | ||
1258 | $(ANT) test; \ | ||
1259 | fi | ||
1260 | |||
1252 | all-local: $(TARGETS_ALL) | 1261 | all-local: $(TARGETS_ALL) |
1253 | 1262 | ||
1254 | .sci.bin: | 1263 | .sci.bin: |
diff --git a/scilab/modules/integer/Makefile.in b/scilab/modules/integer/Makefile.in index 3cbf307..ac64c26 100644 --- a/scilab/modules/integer/Makefile.in +++ b/scilab/modules/integer/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/integer | 65 | subdir = modules/integer |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -576,7 +579,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
576 | #### the procedure will be the same with Microsoft Windows (C) | 579 | #### the procedure will be the same with Microsoft Windows (C) |
577 | #### and Linux/Unix | 580 | #### and Linux/Unix |
578 | ####################################################################### | 581 | ####################################################################### |
579 | TARGETS_ALL = $(am__append_1) | 582 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
580 | 583 | ||
581 | ################ MACROS ###################### | 584 | ################ MACROS ###################### |
582 | # Rule to build a macro | 585 | # Rule to build a macro |
@@ -1556,7 +1559,7 @@ uninstall-am: uninstall-libsciinteger_la_etcDATA \ | |||
1556 | 1559 | ||
1557 | 1560 | ||
1558 | # This target enables tests for Scilab | 1561 | # This target enables tests for Scilab |
1559 | check-local: $(top_builddir)/scilab-bin | 1562 | check-local: $(top_builddir)/scilab-bin test |
1560 | @COMMAND="test_run('$(modulename)');quit";\ | 1563 | @COMMAND="test_run('$(modulename)');quit";\ |
1561 | export LANG=C;\ | 1564 | export LANG=C;\ |
1562 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1565 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1623,6 +1626,12 @@ clean-macros: | |||
1623 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1626 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1624 | done | 1627 | done |
1625 | 1628 | ||
1629 | test: | ||
1630 | # More tests could be added here | ||
1631 | @if test -f build.xml; then \ | ||
1632 | $(ANT) test; \ | ||
1633 | fi | ||
1634 | |||
1626 | all-local: $(TARGETS_ALL) | 1635 | all-local: $(TARGETS_ALL) |
1627 | 1636 | ||
1628 | .sci.bin: | 1637 | .sci.bin: |
diff --git a/scilab/modules/interpolation/Makefile.in b/scilab/modules/interpolation/Makefile.in index f6c48d4..037284d 100644 --- a/scilab/modules/interpolation/Makefile.in +++ b/scilab/modules/interpolation/Makefile.in | |||
@@ -63,6 +63,9 @@ host_triplet = @host@ | |||
63 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 63 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
64 | $(top_srcdir)/Makefile.incl.am | 64 | $(top_srcdir)/Makefile.incl.am |
65 | @NEED_JAVA_TRUE@am__append_1 = java | 65 | @NEED_JAVA_TRUE@am__append_1 = java |
66 | |||
67 | # With --enable-compilation-tests, launch java unitary tests | ||
68 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
66 | subdir = modules/interpolation | 69 | subdir = modules/interpolation |
67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -474,7 +477,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
474 | #### the procedure will be the same with Microsoft Windows (C) | 477 | #### the procedure will be the same with Microsoft Windows (C) |
475 | #### and Linux/Unix | 478 | #### and Linux/Unix |
476 | ####################################################################### | 479 | ####################################################################### |
477 | TARGETS_ALL = $(am__append_1) | 480 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
478 | 481 | ||
479 | ################ MACROS ###################### | 482 | ################ MACROS ###################### |
480 | # Rule to build a macro | 483 | # Rule to build a macro |
@@ -1036,7 +1039,7 @@ uninstall-am: uninstall-libsciinterpolation_la_etcDATA \ | |||
1036 | 1039 | ||
1037 | 1040 | ||
1038 | # This target enables tests for Scilab | 1041 | # This target enables tests for Scilab |
1039 | check-local: $(top_builddir)/scilab-bin | 1042 | check-local: $(top_builddir)/scilab-bin test |
1040 | @COMMAND="test_run('$(modulename)');quit";\ | 1043 | @COMMAND="test_run('$(modulename)');quit";\ |
1041 | export LANG=C;\ | 1044 | export LANG=C;\ |
1042 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1045 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1103,6 +1106,12 @@ clean-macros: | |||
1103 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1106 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1104 | done | 1107 | done |
1105 | 1108 | ||
1109 | test: | ||
1110 | # More tests could be added here | ||
1111 | @if test -f build.xml; then \ | ||
1112 | $(ANT) test; \ | ||
1113 | fi | ||
1114 | |||
1106 | all-local: $(TARGETS_ALL) | 1115 | all-local: $(TARGETS_ALL) |
1107 | 1116 | ||
1108 | .sci.bin: | 1117 | .sci.bin: |
diff --git a/scilab/modules/intersci/Makefile.in b/scilab/modules/intersci/Makefile.in index 9795384..7bb481a 100644 --- a/scilab/modules/intersci/Makefile.in +++ b/scilab/modules/intersci/Makefile.in | |||
@@ -63,6 +63,9 @@ DIST_COMMON = $(libsciintersci_la_include_HEADERS) \ | |||
63 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 63 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
64 | $(top_srcdir)/Makefile.incl.am | 64 | $(top_srcdir)/Makefile.incl.am |
65 | @NEED_JAVA_TRUE@am__append_1 = java | 65 | @NEED_JAVA_TRUE@am__append_1 = java |
66 | |||
67 | # With --enable-compilation-tests, launch java unitary tests | ||
68 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
66 | subdir = modules/intersci | 69 | subdir = modules/intersci |
67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -450,7 +453,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
450 | #### the procedure will be the same with Microsoft Windows (C) | 453 | #### the procedure will be the same with Microsoft Windows (C) |
451 | #### and Linux/Unix | 454 | #### and Linux/Unix |
452 | ####################################################################### | 455 | ####################################################################### |
453 | TARGETS_ALL = $(am__append_1) | 456 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
454 | 457 | ||
455 | ################ MACROS ###################### | 458 | ################ MACROS ###################### |
456 | # Rule to build a macro | 459 | # Rule to build a macro |
@@ -1110,7 +1113,7 @@ uninstall-am: uninstall-binPROGRAMS \ | |||
1110 | 1113 | ||
1111 | 1114 | ||
1112 | # This target enables tests for Scilab | 1115 | # This target enables tests for Scilab |
1113 | check-local: $(top_builddir)/scilab-bin | 1116 | check-local: $(top_builddir)/scilab-bin test |
1114 | @COMMAND="test_run('$(modulename)');quit";\ | 1117 | @COMMAND="test_run('$(modulename)');quit";\ |
1115 | export LANG=C;\ | 1118 | export LANG=C;\ |
1116 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1119 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1177,6 +1180,12 @@ clean-macros: | |||
1177 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1180 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1178 | done | 1181 | done |
1179 | 1182 | ||
1183 | test: | ||
1184 | # More tests could be added here | ||
1185 | @if test -f build.xml; then \ | ||
1186 | $(ANT) test; \ | ||
1187 | fi | ||
1188 | |||
1180 | all-local: $(TARGETS_ALL) | 1189 | all-local: $(TARGETS_ALL) |
1181 | 1190 | ||
1182 | .sci.bin: | 1191 | .sci.bin: |
diff --git a/scilab/modules/io/Makefile.in b/scilab/modules/io/Makefile.in index 3667fc3..0dacd5f 100644 --- a/scilab/modules/io/Makefile.in +++ b/scilab/modules/io/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/io | 65 | subdir = modules/io |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -490,7 +493,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
490 | #### the procedure will be the same with Microsoft Windows (C) | 493 | #### the procedure will be the same with Microsoft Windows (C) |
491 | #### and Linux/Unix | 494 | #### and Linux/Unix |
492 | ####################################################################### | 495 | ####################################################################### |
493 | TARGETS_ALL = $(am__append_1) | 496 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
494 | 497 | ||
495 | ################ MACROS ###################### | 498 | ################ MACROS ###################### |
496 | # Rule to build a macro | 499 | # Rule to build a macro |
@@ -1148,7 +1151,7 @@ uninstall-am: uninstall-libsciio_la_etcDATA \ | |||
1148 | 1151 | ||
1149 | 1152 | ||
1150 | # This target enables tests for Scilab | 1153 | # This target enables tests for Scilab |
1151 | check-local: $(top_builddir)/scilab-bin | 1154 | check-local: $(top_builddir)/scilab-bin test |
1152 | @COMMAND="test_run('$(modulename)');quit";\ | 1155 | @COMMAND="test_run('$(modulename)');quit";\ |
1153 | export LANG=C;\ | 1156 | export LANG=C;\ |
1154 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1157 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1215,6 +1218,12 @@ clean-macros: | |||
1215 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1218 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1216 | done | 1219 | done |
1217 | 1220 | ||
1221 | test: | ||
1222 | # More tests could be added here | ||
1223 | @if test -f build.xml; then \ | ||
1224 | $(ANT) test; \ | ||
1225 | fi | ||
1226 | |||
1218 | all-local: $(TARGETS_ALL) | 1227 | all-local: $(TARGETS_ALL) |
1219 | 1228 | ||
1220 | .sci.bin: | 1229 | .sci.bin: |
diff --git a/scilab/modules/javasci/Makefile.in b/scilab/modules/javasci/Makefile.in index c86a023..d60b854 100644 --- a/scilab/modules/javasci/Makefile.in +++ b/scilab/modules/javasci/Makefile.in | |||
@@ -66,6 +66,9 @@ host_triplet = @host@ | |||
66 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 66 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
67 | $(top_srcdir)/Makefile.incl.am | 67 | $(top_srcdir)/Makefile.incl.am |
68 | @JAVASCI_TRUE@@NEED_JAVA_TRUE@am__append_1 = java | 68 | @JAVASCI_TRUE@@NEED_JAVA_TRUE@am__append_1 = java |
69 | |||
70 | # With --enable-compilation-tests, launch java unitary tests | ||
71 | @COMPILATION_TESTS_TRUE@@JAVASCI_TRUE@am__append_2 = test | ||
69 | subdir = modules/javasci | 72 | subdir = modules/javasci |
70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -505,7 +508,7 @@ libjavasci_la_etc_DATA = etc/javasci.quit etc/javasci.start | |||
505 | #### the procedure will be the same with Microsoft Windows (C) | 508 | #### the procedure will be the same with Microsoft Windows (C) |
506 | #### and Linux/Unix | 509 | #### and Linux/Unix |
507 | ####################################################################### | 510 | ####################################################################### |
508 | @JAVASCI_TRUE@TARGETS_ALL = $(am__append_1) | 511 | @JAVASCI_TRUE@TARGETS_ALL = $(am__append_1) $(am__append_2) |
509 | 512 | ||
510 | ################ MACROS ###################### | 513 | ################ MACROS ###################### |
511 | # Rule to build a macro | 514 | # Rule to build a macro |
@@ -1044,7 +1047,7 @@ uninstall-am: uninstall-libjavasci_la_etcDATA \ | |||
1044 | 1047 | ||
1045 | 1048 | ||
1046 | # This target enables tests for Scilab | 1049 | # This target enables tests for Scilab |
1047 | @JAVASCI_TRUE@check-local: $(top_builddir)/scilab-bin | 1050 | @JAVASCI_TRUE@check-local: $(top_builddir)/scilab-bin test |
1048 | @JAVASCI_TRUE@ @COMMAND="test_run('$(modulename)');quit";\ | 1051 | @JAVASCI_TRUE@ @COMMAND="test_run('$(modulename)');quit";\ |
1049 | @JAVASCI_TRUE@ export LANG=C;\ | 1052 | @JAVASCI_TRUE@ export LANG=C;\ |
1050 | @JAVASCI_TRUE@ $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1053 | @JAVASCI_TRUE@ $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1111,6 +1114,12 @@ uninstall-am: uninstall-libjavasci_la_etcDATA \ | |||
1111 | @JAVASCI_TRUE@ rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1114 | @JAVASCI_TRUE@ rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1112 | @JAVASCI_TRUE@ done | 1115 | @JAVASCI_TRUE@ done |
1113 | 1116 | ||
1117 | @JAVASCI_TRUE@test: | ||
1118 | # More tests could be added here | ||
1119 | @JAVASCI_TRUE@ @if test -f build.xml; then \ | ||
1120 | @JAVASCI_TRUE@ $(ANT) test; \ | ||
1121 | @JAVASCI_TRUE@ fi | ||
1122 | |||
1114 | @JAVASCI_TRUE@all-local: $(TARGETS_ALL) | 1123 | @JAVASCI_TRUE@all-local: $(TARGETS_ALL) |
1115 | 1124 | ||
1116 | @JAVASCI_TRUE@.sci.bin: | 1125 | @JAVASCI_TRUE@.sci.bin: |
diff --git a/scilab/modules/jvm/Makefile.in b/scilab/modules/jvm/Makefile.in index c5f05cb..6276e06 100644 --- a/scilab/modules/jvm/Makefile.in +++ b/scilab/modules/jvm/Makefile.in | |||
@@ -69,6 +69,9 @@ host_triplet = @host@ | |||
69 | DIST_COMMON = $(libscijvm_la_include_HEADERS) $(srcdir)/Makefile.am \ | 69 | DIST_COMMON = $(libscijvm_la_include_HEADERS) $(srcdir)/Makefile.am \ |
70 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am | 70 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am |
71 | @NEED_JAVA_TRUE@am__append_3 = java | 71 | @NEED_JAVA_TRUE@am__append_3 = java |
72 | |||
73 | # With --enable-compilation-tests, launch java unitary tests | ||
74 | @COMPILATION_TESTS_TRUE@am__append_4 = test | ||
72 | subdir = modules/jvm | 75 | subdir = modules/jvm |
73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 76 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 77 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -514,7 +517,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
514 | #### the procedure will be the same with Microsoft Windows (C) | 517 | #### the procedure will be the same with Microsoft Windows (C) |
515 | #### and Linux/Unix | 518 | #### and Linux/Unix |
516 | ####################################################################### | 519 | ####################################################################### |
517 | TARGETS_ALL = $(am__append_3) | 520 | TARGETS_ALL = $(am__append_3) $(am__append_4) |
518 | 521 | ||
519 | ################ MACROS ###################### | 522 | ################ MACROS ###################### |
520 | # Rule to build a macro | 523 | # Rule to build a macro |
@@ -1192,7 +1195,7 @@ uninstall-am: uninstall-libscijvm_la_etcDATA \ | |||
1192 | 1195 | ||
1193 | 1196 | ||
1194 | # This target enables tests for Scilab | 1197 | # This target enables tests for Scilab |
1195 | check-local: $(top_builddir)/scilab-bin | 1198 | check-local: $(top_builddir)/scilab-bin test |
1196 | @COMMAND="test_run('$(modulename)');quit";\ | 1199 | @COMMAND="test_run('$(modulename)');quit";\ |
1197 | export LANG=C;\ | 1200 | export LANG=C;\ |
1198 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1201 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1259,6 +1262,12 @@ clean-macros: | |||
1259 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1262 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1260 | done | 1263 | done |
1261 | 1264 | ||
1265 | test: | ||
1266 | # More tests could be added here | ||
1267 | @if test -f build.xml; then \ | ||
1268 | $(ANT) test; \ | ||
1269 | fi | ||
1270 | |||
1262 | all-local: $(TARGETS_ALL) | 1271 | all-local: $(TARGETS_ALL) |
1263 | 1272 | ||
1264 | .sci.bin: | 1273 | .sci.bin: |
diff --git a/scilab/modules/linear_algebra/Makefile.in b/scilab/modules/linear_algebra/Makefile.in index 530767a..80fff7f 100644 --- a/scilab/modules/linear_algebra/Makefile.in +++ b/scilab/modules/linear_algebra/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/linear_algebra | 65 | subdir = modules/linear_algebra |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -551,7 +554,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
551 | #### the procedure will be the same with Microsoft Windows (C) | 554 | #### the procedure will be the same with Microsoft Windows (C) |
552 | #### and Linux/Unix | 555 | #### and Linux/Unix |
553 | ####################################################################### | 556 | ####################################################################### |
554 | TARGETS_ALL = $(am__append_1) | 557 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
555 | 558 | ||
556 | ################ MACROS ###################### | 559 | ################ MACROS ###################### |
557 | # Rule to build a macro | 560 | # Rule to build a macro |
@@ -1359,7 +1362,7 @@ uninstall-am: uninstall-libscilinear_algebra_la_etcDATA \ | |||
1359 | 1362 | ||
1360 | 1363 | ||
1361 | # This target enables tests for Scilab | 1364 | # This target enables tests for Scilab |
1362 | check-local: $(top_builddir)/scilab-bin | 1365 | check-local: $(top_builddir)/scilab-bin test |
1363 | @COMMAND="test_run('$(modulename)');quit";\ | 1366 | @COMMAND="test_run('$(modulename)');quit";\ |
1364 | export LANG=C;\ | 1367 | export LANG=C;\ |
1365 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1368 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1426,6 +1429,12 @@ clean-macros: | |||
1426 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1429 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1427 | done | 1430 | done |
1428 | 1431 | ||
1432 | test: | ||
1433 | # More tests could be added here | ||
1434 | @if test -f build.xml; then \ | ||
1435 | $(ANT) test; \ | ||
1436 | fi | ||
1437 | |||
1429 | all-local: $(TARGETS_ALL) | 1438 | all-local: $(TARGETS_ALL) |
1430 | 1439 | ||
1431 | .sci.bin: | 1440 | .sci.bin: |
diff --git a/scilab/modules/localization/Makefile.in b/scilab/modules/localization/Makefile.in index f44ac97..873b517 100644 --- a/scilab/modules/localization/Makefile.in +++ b/scilab/modules/localization/Makefile.in | |||
@@ -69,6 +69,9 @@ DIST_COMMON = $(libscilocalization_la_include_HEADERS) \ | |||
69 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 69 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
70 | $(top_srcdir)/Makefile.incl.am | 70 | $(top_srcdir)/Makefile.incl.am |
71 | @NEED_JAVA_TRUE@am__append_5 = java | 71 | @NEED_JAVA_TRUE@am__append_5 = java |
72 | |||
73 | # With --enable-compilation-tests, launch java unitary tests | ||
74 | @COMPILATION_TESTS_TRUE@am__append_6 = test | ||
72 | subdir = modules/localization | 75 | subdir = modules/localization |
73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 76 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 77 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -480,7 +483,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
480 | #### the procedure will be the same with Microsoft Windows (C) | 483 | #### the procedure will be the same with Microsoft Windows (C) |
481 | #### and Linux/Unix | 484 | #### and Linux/Unix |
482 | ####################################################################### | 485 | ####################################################################### |
483 | TARGETS_ALL = $(am__append_5) | 486 | TARGETS_ALL = $(am__append_5) $(am__append_6) |
484 | 487 | ||
485 | ################ MACROS ###################### | 488 | ################ MACROS ###################### |
486 | # Rule to build a macro | 489 | # Rule to build a macro |
@@ -1036,7 +1039,7 @@ uninstall-am: uninstall-libscilocalization_la_etcDATA \ | |||
1036 | 1039 | ||
1037 | 1040 | ||
1038 | # This target enables tests for Scilab | 1041 | # This target enables tests for Scilab |
1039 | check-local: $(top_builddir)/scilab-bin | 1042 | check-local: $(top_builddir)/scilab-bin test |
1040 | @COMMAND="test_run('$(modulename)');quit";\ | 1043 | @COMMAND="test_run('$(modulename)');quit";\ |
1041 | export LANG=C;\ | 1044 | export LANG=C;\ |
1042 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1045 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1103,6 +1106,12 @@ clean-macros: | |||
1103 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1106 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1104 | done | 1107 | done |
1105 | 1108 | ||
1109 | test: | ||
1110 | # More tests could be added here | ||
1111 | @if test -f build.xml; then \ | ||
1112 | $(ANT) test; \ | ||
1113 | fi | ||
1114 | |||
1106 | all-local: $(TARGETS_ALL) | 1115 | all-local: $(TARGETS_ALL) |
1107 | 1116 | ||
1108 | .sci.bin: | 1117 | .sci.bin: |
diff --git a/scilab/modules/m2sci/Makefile.in b/scilab/modules/m2sci/Makefile.in index f68b65e..e77bd19 100644 --- a/scilab/modules/m2sci/Makefile.in +++ b/scilab/modules/m2sci/Makefile.in | |||
@@ -58,6 +58,9 @@ host_triplet = @host@ | |||
58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
59 | $(top_srcdir)/Makefile.incl.am | 59 | $(top_srcdir)/Makefile.incl.am |
60 | @NEED_JAVA_TRUE@am__append_1 = java | 60 | @NEED_JAVA_TRUE@am__append_1 = java |
61 | |||
62 | # With --enable-compilation-tests, launch java unitary tests | ||
63 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
61 | subdir = modules/m2sci | 64 | subdir = modules/m2sci |
62 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
63 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -373,7 +376,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
373 | #### the procedure will be the same with Microsoft Windows (C) | 376 | #### the procedure will be the same with Microsoft Windows (C) |
374 | #### and Linux/Unix | 377 | #### and Linux/Unix |
375 | ####################################################################### | 378 | ####################################################################### |
376 | TARGETS_ALL = $(am__append_1) | 379 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
377 | 380 | ||
378 | ################ MACROS ###################### | 381 | ################ MACROS ###################### |
379 | # Rule to build a macro | 382 | # Rule to build a macro |
@@ -661,7 +664,7 @@ uninstall-am: uninstall-libm2sci_la_etcDATA \ | |||
661 | 664 | ||
662 | 665 | ||
663 | # This target enables tests for Scilab | 666 | # This target enables tests for Scilab |
664 | check-local: $(top_builddir)/scilab-bin | 667 | check-local: $(top_builddir)/scilab-bin test |
665 | @COMMAND="test_run('$(modulename)');quit";\ | 668 | @COMMAND="test_run('$(modulename)');quit";\ |
666 | export LANG=C;\ | 669 | export LANG=C;\ |
667 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 670 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -728,6 +731,12 @@ clean-macros: | |||
728 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 731 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
729 | done | 732 | done |
730 | 733 | ||
734 | test: | ||
735 | # More tests could be added here | ||
736 | @if test -f build.xml; then \ | ||
737 | $(ANT) test; \ | ||
738 | fi | ||
739 | |||
731 | all-local: $(TARGETS_ALL) | 740 | all-local: $(TARGETS_ALL) |
732 | 741 | ||
733 | .sci.bin: | 742 | .sci.bin: |
diff --git a/scilab/modules/maple2scilab/Makefile.in b/scilab/modules/maple2scilab/Makefile.in index 98d125d..06df179 100644 --- a/scilab/modules/maple2scilab/Makefile.in +++ b/scilab/modules/maple2scilab/Makefile.in | |||
@@ -58,6 +58,9 @@ host_triplet = @host@ | |||
58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
59 | $(top_srcdir)/Makefile.incl.am | 59 | $(top_srcdir)/Makefile.incl.am |
60 | @NEED_JAVA_TRUE@am__append_1 = java | 60 | @NEED_JAVA_TRUE@am__append_1 = java |
61 | |||
62 | # With --enable-compilation-tests, launch java unitary tests | ||
63 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
61 | subdir = modules/maple2scilab | 64 | subdir = modules/maple2scilab |
62 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
63 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -370,7 +373,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
370 | #### the procedure will be the same with Microsoft Windows (C) | 373 | #### the procedure will be the same with Microsoft Windows (C) |
371 | #### and Linux/Unix | 374 | #### and Linux/Unix |
372 | ####################################################################### | 375 | ####################################################################### |
373 | TARGETS_ALL = $(am__append_1) | 376 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
374 | 377 | ||
375 | ################ MACROS ###################### | 378 | ################ MACROS ###################### |
376 | # Rule to build a macro | 379 | # Rule to build a macro |
@@ -659,7 +662,7 @@ uninstall-am: uninstall-libmaple2scilab_la_etcDATA \ | |||
659 | 662 | ||
660 | 663 | ||
661 | # This target enables tests for Scilab | 664 | # This target enables tests for Scilab |
662 | check-local: $(top_builddir)/scilab-bin | 665 | check-local: $(top_builddir)/scilab-bin test |
663 | @COMMAND="test_run('$(modulename)');quit";\ | 666 | @COMMAND="test_run('$(modulename)');quit";\ |
664 | export LANG=C;\ | 667 | export LANG=C;\ |
665 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 668 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -726,6 +729,12 @@ clean-macros: | |||
726 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 729 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
727 | done | 730 | done |
728 | 731 | ||
732 | test: | ||
733 | # More tests could be added here | ||
734 | @if test -f build.xml; then \ | ||
735 | $(ANT) test; \ | ||
736 | fi | ||
737 | |||
729 | all-local: $(TARGETS_ALL) | 738 | all-local: $(TARGETS_ALL) |
730 | 739 | ||
731 | .sci.bin: | 740 | .sci.bin: |
diff --git a/scilab/modules/matio/Makefile.in b/scilab/modules/matio/Makefile.in index b62c612..1847819 100644 --- a/scilab/modules/matio/Makefile.in +++ b/scilab/modules/matio/Makefile.in | |||
@@ -60,6 +60,9 @@ host_triplet = @host@ | |||
60 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 60 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
61 | $(top_srcdir)/Makefile.incl.am | 61 | $(top_srcdir)/Makefile.incl.am |
62 | @NEED_JAVA_TRUE@am__append_1 = java | 62 | @NEED_JAVA_TRUE@am__append_1 = java |
63 | |||
64 | # With --enable-compilation-tests, launch java unitary tests | ||
65 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
63 | subdir = modules/matio | 66 | subdir = modules/matio |
64 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
65 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -426,7 +429,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
426 | #### the procedure will be the same with Microsoft Windows (C) | 429 | #### the procedure will be the same with Microsoft Windows (C) |
427 | #### and Linux/Unix | 430 | #### and Linux/Unix |
428 | ####################################################################### | 431 | ####################################################################### |
429 | TARGETS_ALL = $(am__append_1) | 432 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
430 | 433 | ||
431 | ################ MACROS ###################### | 434 | ################ MACROS ###################### |
432 | # Rule to build a macro | 435 | # Rule to build a macro |
@@ -1116,7 +1119,7 @@ uninstall-am: uninstall-libscimatio_la_etcDATA \ | |||
1116 | 1119 | ||
1117 | 1120 | ||
1118 | # This target enables tests for Scilab | 1121 | # This target enables tests for Scilab |
1119 | check-local: $(top_builddir)/scilab-bin | 1122 | check-local: $(top_builddir)/scilab-bin test |
1120 | @COMMAND="test_run('$(modulename)');quit";\ | 1123 | @COMMAND="test_run('$(modulename)');quit";\ |
1121 | export LANG=C;\ | 1124 | export LANG=C;\ |
1122 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1125 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1183,6 +1186,12 @@ clean-macros: | |||
1183 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1186 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1184 | done | 1187 | done |
1185 | 1188 | ||
1189 | test: | ||
1190 | # More tests could be added here | ||
1191 | @if test -f build.xml; then \ | ||
1192 | $(ANT) test; \ | ||
1193 | fi | ||
1194 | |||
1186 | all-local: $(TARGETS_ALL) | 1195 | all-local: $(TARGETS_ALL) |
1187 | 1196 | ||
1188 | .sci.bin: | 1197 | .sci.bin: |
diff --git a/scilab/modules/mexlib/Makefile.in b/scilab/modules/mexlib/Makefile.in index f3acade..e90c304 100644 --- a/scilab/modules/mexlib/Makefile.in +++ b/scilab/modules/mexlib/Makefile.in | |||
@@ -60,6 +60,9 @@ host_triplet = @host@ | |||
60 | DIST_COMMON = $(libmex_la_include_HEADERS) $(srcdir)/Makefile.am \ | 60 | DIST_COMMON = $(libmex_la_include_HEADERS) $(srcdir)/Makefile.am \ |
61 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am | 61 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am |
62 | @NEED_JAVA_TRUE@am__append_1 = java | 62 | @NEED_JAVA_TRUE@am__append_1 = java |
63 | |||
64 | # With --enable-compilation-tests, launch java unitary tests | ||
65 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
63 | subdir = modules/mexlib | 66 | subdir = modules/mexlib |
64 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
65 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -450,7 +453,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
450 | #### the procedure will be the same with Microsoft Windows (C) | 453 | #### the procedure will be the same with Microsoft Windows (C) |
451 | #### and Linux/Unix | 454 | #### and Linux/Unix |
452 | ####################################################################### | 455 | ####################################################################### |
453 | TARGETS_ALL = $(am__append_1) | 456 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
454 | 457 | ||
455 | ################ MACROS ###################### | 458 | ################ MACROS ###################### |
456 | # Rule to build a macro | 459 | # Rule to build a macro |
@@ -928,7 +931,7 @@ uninstall-am: uninstall-libmex_la_etcDATA \ | |||
928 | 931 | ||
929 | 932 | ||
930 | # This target enables tests for Scilab | 933 | # This target enables tests for Scilab |
931 | check-local: $(top_builddir)/scilab-bin | 934 | check-local: $(top_builddir)/scilab-bin test |
932 | @COMMAND="test_run('$(modulename)');quit";\ | 935 | @COMMAND="test_run('$(modulename)');quit";\ |
933 | export LANG=C;\ | 936 | export LANG=C;\ |
934 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 937 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -995,6 +998,12 @@ clean-macros: | |||
995 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 998 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
996 | done | 999 | done |
997 | 1000 | ||
1001 | test: | ||
1002 | # More tests could be added here | ||
1003 | @if test -f build.xml; then \ | ||
1004 | $(ANT) test; \ | ||
1005 | fi | ||
1006 | |||
998 | all-local: $(TARGETS_ALL) | 1007 | all-local: $(TARGETS_ALL) |
999 | 1008 | ||
1000 | .sci.bin: | 1009 | .sci.bin: |
diff --git a/scilab/modules/optimization/Makefile.in b/scilab/modules/optimization/Makefile.in index 7506d9d..c8fe543 100644 --- a/scilab/modules/optimization/Makefile.in +++ b/scilab/modules/optimization/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/optimization | 65 | subdir = modules/optimization |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -577,7 +580,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
577 | #### the procedure will be the same with Microsoft Windows (C) | 580 | #### the procedure will be the same with Microsoft Windows (C) |
578 | #### and Linux/Unix | 581 | #### and Linux/Unix |
579 | ####################################################################### | 582 | ####################################################################### |
580 | TARGETS_ALL = $(am__append_1) | 583 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
581 | 584 | ||
582 | ################ MACROS ###################### | 585 | ################ MACROS ###################### |
583 | # Rule to build a macro | 586 | # Rule to build a macro |
@@ -1411,7 +1414,7 @@ uninstall-am: uninstall-libscioptimization_la_etcDATA \ | |||
1411 | 1414 | ||
1412 | 1415 | ||
1413 | # This target enables tests for Scilab | 1416 | # This target enables tests for Scilab |
1414 | check-local: $(top_builddir)/scilab-bin | 1417 | check-local: $(top_builddir)/scilab-bin test |
1415 | @COMMAND="test_run('$(modulename)');quit";\ | 1418 | @COMMAND="test_run('$(modulename)');quit";\ |
1416 | export LANG=C;\ | 1419 | export LANG=C;\ |
1417 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1420 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1478,6 +1481,12 @@ clean-macros: | |||
1478 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1481 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1479 | done | 1482 | done |
1480 | 1483 | ||
1484 | test: | ||
1485 | # More tests could be added here | ||
1486 | @if test -f build.xml; then \ | ||
1487 | $(ANT) test; \ | ||
1488 | fi | ||
1489 | |||
1481 | all-local: $(TARGETS_ALL) | 1490 | all-local: $(TARGETS_ALL) |
1482 | 1491 | ||
1483 | .sci.bin: | 1492 | .sci.bin: |
diff --git a/scilab/modules/output_stream/Makefile.in b/scilab/modules/output_stream/Makefile.in index 61cd906..d1c35b6 100644 --- a/scilab/modules/output_stream/Makefile.in +++ b/scilab/modules/output_stream/Makefile.in | |||
@@ -65,6 +65,9 @@ DIST_COMMON = $(libscioutput_stream_la_include_HEADERS) \ | |||
65 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | |||
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
68 | subdir = modules/output_stream | 71 | subdir = modules/output_stream |
69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 72 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 73 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -539,7 +542,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
539 | #### the procedure will be the same with Microsoft Windows (C) | 542 | #### the procedure will be the same with Microsoft Windows (C) |
540 | #### and Linux/Unix | 543 | #### and Linux/Unix |
541 | ####################################################################### | 544 | ####################################################################### |
542 | TARGETS_ALL = $(am__append_1) | 545 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
543 | 546 | ||
544 | ################ MACROS ###################### | 547 | ################ MACROS ###################### |
545 | # Rule to build a macro | 548 | # Rule to build a macro |
@@ -1295,7 +1298,7 @@ uninstall-am: uninstall-libscioutput_stream_la_etcDATA \ | |||
1295 | 1298 | ||
1296 | 1299 | ||
1297 | # This target enables tests for Scilab | 1300 | # This target enables tests for Scilab |
1298 | check-local: $(top_builddir)/scilab-bin | 1301 | check-local: $(top_builddir)/scilab-bin test |
1299 | @COMMAND="test_run('$(modulename)');quit";\ | 1302 | @COMMAND="test_run('$(modulename)');quit";\ |
1300 | export LANG=C;\ | 1303 | export LANG=C;\ |
1301 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1304 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1362,6 +1365,12 @@ clean-macros: | |||
1362 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1365 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1363 | done | 1366 | done |
1364 | 1367 | ||
1368 | test: | ||
1369 | # More tests could be added here | ||
1370 | @if test -f build.xml; then \ | ||
1371 | $(ANT) test; \ | ||
1372 | fi | ||
1373 | |||
1365 | all-local: $(TARGETS_ALL) | 1374 | all-local: $(TARGETS_ALL) |
1366 | 1375 | ||
1367 | .sci.bin: | 1376 | .sci.bin: |
diff --git a/scilab/modules/overloading/Makefile.in b/scilab/modules/overloading/Makefile.in index 6e2ab70..ba797b5 100644 --- a/scilab/modules/overloading/Makefile.in +++ b/scilab/modules/overloading/Makefile.in | |||
@@ -58,6 +58,9 @@ host_triplet = @host@ | |||
58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
59 | $(top_srcdir)/Makefile.incl.am | 59 | $(top_srcdir)/Makefile.incl.am |
60 | @NEED_JAVA_TRUE@am__append_1 = java | 60 | @NEED_JAVA_TRUE@am__append_1 = java |
61 | |||
62 | # With --enable-compilation-tests, launch java unitary tests | ||
63 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
61 | subdir = modules/overloading | 64 | subdir = modules/overloading |
62 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
63 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -371,7 +374,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
371 | #### the procedure will be the same with Microsoft Windows (C) | 374 | #### the procedure will be the same with Microsoft Windows (C) |
372 | #### and Linux/Unix | 375 | #### and Linux/Unix |
373 | ####################################################################### | 376 | ####################################################################### |
374 | TARGETS_ALL = $(am__append_1) | 377 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
375 | 378 | ||
376 | ################ MACROS ###################### | 379 | ################ MACROS ###################### |
377 | # Rule to build a macro | 380 | # Rule to build a macro |
@@ -661,7 +664,7 @@ uninstall-am: uninstall-libscioverloading_la_etcDATA \ | |||
661 | 664 | ||
662 | 665 | ||
663 | # This target enables tests for Scilab | 666 | # This target enables tests for Scilab |
664 | check-local: $(top_builddir)/scilab-bin | 667 | check-local: $(top_builddir)/scilab-bin test |
665 | @COMMAND="test_run('$(modulename)');quit";\ | 668 | @COMMAND="test_run('$(modulename)');quit";\ |
666 | export LANG=C;\ | 669 | export LANG=C;\ |
667 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 670 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -728,6 +731,12 @@ clean-macros: | |||
728 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 731 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
729 | done | 732 | done |
730 | 733 | ||
734 | test: | ||
735 | # More tests could be added here | ||
736 | @if test -f build.xml; then \ | ||
737 | $(ANT) test; \ | ||
738 | fi | ||
739 | |||
731 | all-local: $(TARGETS_ALL) | 740 | all-local: $(TARGETS_ALL) |
732 | 741 | ||
733 | .sci.bin: | 742 | .sci.bin: |
diff --git a/scilab/modules/parameters/Makefile.in b/scilab/modules/parameters/Makefile.in index b409381..16acace 100644 --- a/scilab/modules/parameters/Makefile.in +++ b/scilab/modules/parameters/Makefile.in | |||
@@ -65,6 +65,9 @@ host_triplet = @host@ | |||
65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | |||
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
68 | subdir = modules/parameters | 71 | subdir = modules/parameters |
69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 72 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 73 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -420,7 +423,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
420 | #### the procedure will be the same with Microsoft Windows (C) | 423 | #### the procedure will be the same with Microsoft Windows (C) |
421 | #### and Linux/Unix | 424 | #### and Linux/Unix |
422 | ####################################################################### | 425 | ####################################################################### |
423 | TARGETS_ALL = $(am__append_1) | 426 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
424 | 427 | ||
425 | ################ MACROS ###################### | 428 | ################ MACROS ###################### |
426 | # Rule to build a macro | 429 | # Rule to build a macro |
@@ -834,7 +837,7 @@ uninstall-am: uninstall-libparameters_la_etcDATA \ | |||
834 | 837 | ||
835 | 838 | ||
836 | # This target enables tests for Scilab | 839 | # This target enables tests for Scilab |
837 | check-local: $(top_builddir)/scilab-bin | 840 | check-local: $(top_builddir)/scilab-bin test |
838 | @COMMAND="test_run('$(modulename)');quit";\ | 841 | @COMMAND="test_run('$(modulename)');quit";\ |
839 | export LANG=C;\ | 842 | export LANG=C;\ |
840 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 843 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -901,6 +904,12 @@ clean-macros: | |||
901 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 904 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
902 | done | 905 | done |
903 | 906 | ||
907 | test: | ||
908 | # More tests could be added here | ||
909 | @if test -f build.xml; then \ | ||
910 | $(ANT) test; \ | ||
911 | fi | ||
912 | |||
904 | all-local: $(TARGETS_ALL) | 913 | all-local: $(TARGETS_ALL) |
905 | 914 | ||
906 | .sci.bin: | 915 | .sci.bin: |
diff --git a/scilab/modules/polynomials/Makefile.in b/scilab/modules/polynomials/Makefile.in index 2b311a8..3fe922f 100644 --- a/scilab/modules/polynomials/Makefile.in +++ b/scilab/modules/polynomials/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/polynomials | 65 | subdir = modules/polynomials |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -557,7 +560,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
557 | #### the procedure will be the same with Microsoft Windows (C) | 560 | #### the procedure will be the same with Microsoft Windows (C) |
558 | #### and Linux/Unix | 561 | #### and Linux/Unix |
559 | ####################################################################### | 562 | ####################################################################### |
560 | TARGETS_ALL = $(am__append_1) | 563 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
561 | 564 | ||
562 | ################ MACROS ###################### | 565 | ################ MACROS ###################### |
563 | # Rule to build a macro | 566 | # Rule to build a macro |
@@ -1365,7 +1368,7 @@ uninstall-am: uninstall-libscipolynomials_la_etcDATA \ | |||
1365 | 1368 | ||
1366 | 1369 | ||
1367 | # This target enables tests for Scilab | 1370 | # This target enables tests for Scilab |
1368 | check-local: $(top_builddir)/scilab-bin | 1371 | check-local: $(top_builddir)/scilab-bin test |
1369 | @COMMAND="test_run('$(modulename)');quit";\ | 1372 | @COMMAND="test_run('$(modulename)');quit";\ |
1370 | export LANG=C;\ | 1373 | export LANG=C;\ |
1371 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1374 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1432,6 +1435,12 @@ clean-macros: | |||
1432 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1435 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1433 | done | 1436 | done |
1434 | 1437 | ||
1438 | test: | ||
1439 | # More tests could be added here | ||
1440 | @if test -f build.xml; then \ | ||
1441 | $(ANT) test; \ | ||
1442 | fi | ||
1443 | |||
1435 | all-local: $(TARGETS_ALL) | 1444 | all-local: $(TARGETS_ALL) |
1436 | 1445 | ||
1437 | .sci.bin: | 1446 | .sci.bin: |
diff --git a/scilab/modules/pvm/Makefile.in b/scilab/modules/pvm/Makefile.in index 8dcf317..4b4a5a0 100644 --- a/scilab/modules/pvm/Makefile.in +++ b/scilab/modules/pvm/Makefile.in | |||
@@ -75,7 +75,13 @@ host_triplet = @host@ | |||
75 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 75 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
76 | $(top_srcdir)/Makefile.incl.am | 76 | $(top_srcdir)/Makefile.incl.am |
77 | @NEED_JAVA_TRUE@@PVM_TRUE@am__append_1 = java | 77 | @NEED_JAVA_TRUE@@PVM_TRUE@am__append_1 = java |
78 | @NEED_JAVA_TRUE@@PVM_FALSE@am__append_2 = java | 78 | |
79 | # With --enable-compilation-tests, launch java unitary tests | ||
80 | @COMPILATION_TESTS_TRUE@@PVM_TRUE@am__append_2 = test | ||
81 | @NEED_JAVA_TRUE@@PVM_FALSE@am__append_3 = java | ||
82 | |||
83 | # With --enable-compilation-tests, launch java unitary tests | ||
84 | @COMPILATION_TESTS_TRUE@@PVM_FALSE@am__append_4 = test | ||
79 | subdir = modules/pvm | 85 | subdir = modules/pvm |
80 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 86 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
81 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 87 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -569,14 +575,15 @@ top_srcdir = @top_srcdir@ | |||
569 | #### the procedure will be the same with Microsoft Windows (C) | 575 | #### the procedure will be the same with Microsoft Windows (C) |
570 | #### and Linux/Unix | 576 | #### and Linux/Unix |
571 | ####################################################################### | 577 | ####################################################################### |
572 | @PVM_FALSE@TARGETS_ALL = $(am__append_2) | 578 | @PVM_FALSE@TARGETS_ALL = $(am__append_3) $(am__append_4) |
573 | 579 | ||
574 | ########################### JAVA ###################################### | 580 | ########################### JAVA ###################################### |
575 | #### We are delegating java compilation to ant... Thanks to that | 581 | #### We are delegating java compilation to ant... Thanks to that |
576 | #### the procedure will be the same with Microsoft Windows (C) | 582 | #### the procedure will be the same with Microsoft Windows (C) |
577 | #### and Linux/Unix | 583 | #### and Linux/Unix |
578 | ####################################################################### | 584 | ####################################################################### |
579 | @PVM_TRUE@TARGETS_ALL = $(am__append_1) $(am__append_2) | 585 | @PVM_TRUE@TARGETS_ALL = $(am__append_1) $(am__append_2) \ |
586 | @PVM_TRUE@ $(am__append_3) $(am__append_4) | ||
580 | 587 | ||
581 | ################ MACROS ###################### | 588 | ################ MACROS ###################### |
582 | # Rule to build a macro | 589 | # Rule to build a macro |
@@ -1399,7 +1406,7 @@ uninstall-am: uninstall-libscipvm_la_etcDATA \ | |||
1399 | 1406 | ||
1400 | 1407 | ||
1401 | # This target enables tests for Scilab | 1408 | # This target enables tests for Scilab |
1402 | @PVM_TRUE@check-local: $(top_builddir)/scilab-bin | 1409 | @PVM_TRUE@check-local: $(top_builddir)/scilab-bin test |
1403 | @PVM_TRUE@ @COMMAND="test_run('$(modulename)');quit";\ | 1410 | @PVM_TRUE@ @COMMAND="test_run('$(modulename)');quit";\ |
1404 | @PVM_TRUE@ export LANG=C;\ | 1411 | @PVM_TRUE@ export LANG=C;\ |
1405 | @PVM_TRUE@ $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1412 | @PVM_TRUE@ $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1466,6 +1473,12 @@ uninstall-am: uninstall-libscipvm_la_etcDATA \ | |||
1466 | @PVM_TRUE@ rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1473 | @PVM_TRUE@ rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1467 | @PVM_TRUE@ done | 1474 | @PVM_TRUE@ done |
1468 | 1475 | ||
1476 | @PVM_TRUE@test: | ||
1477 | # More tests could be added here | ||
1478 | @PVM_TRUE@ @if test -f build.xml; then \ | ||
1479 | @PVM_TRUE@ $(ANT) test; \ | ||
1480 | @PVM_TRUE@ fi | ||
1481 | |||
1469 | @PVM_TRUE@all-local: $(TARGETS_ALL) | 1482 | @PVM_TRUE@all-local: $(TARGETS_ALL) |
1470 | 1483 | ||
1471 | @PVM_TRUE@.sci.bin: | 1484 | @PVM_TRUE@.sci.bin: |
@@ -1584,7 +1597,7 @@ uninstall-am: uninstall-libscipvm_la_etcDATA \ | |||
1584 | @PVM_TRUE@.PHONY: macros java swig giws | 1597 | @PVM_TRUE@.PHONY: macros java swig giws |
1585 | 1598 | ||
1586 | # This target enables tests for Scilab | 1599 | # This target enables tests for Scilab |
1587 | @PVM_FALSE@check-local: $(top_builddir)/scilab-bin | 1600 | @PVM_FALSE@check-local: $(top_builddir)/scilab-bin test |
1588 | @PVM_FALSE@ @COMMAND="test_run('$(modulename)');quit";\ | 1601 | @PVM_FALSE@ @COMMAND="test_run('$(modulename)');quit";\ |
1589 | @PVM_FALSE@ export LANG=C;\ | 1602 | @PVM_FALSE@ export LANG=C;\ |
1590 | @PVM_FALSE@ $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1603 | @PVM_FALSE@ $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1651,6 +1664,12 @@ uninstall-am: uninstall-libscipvm_la_etcDATA \ | |||
1651 | @PVM_FALSE@ rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1664 | @PVM_FALSE@ rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1652 | @PVM_FALSE@ done | 1665 | @PVM_FALSE@ done |
1653 | 1666 | ||
1667 | @PVM_FALSE@test: | ||
1668 | # More tests could be added here | ||
1669 | @PVM_FALSE@ @if test -f build.xml; then \ | ||
1670 | @PVM_FALSE@ $(ANT) test; \ | ||
1671 | @PVM_FALSE@ fi | ||
1672 | |||
1654 | @PVM_FALSE@all-local: $(TARGETS_ALL) | 1673 | @PVM_FALSE@all-local: $(TARGETS_ALL) |
1655 | 1674 | ||
1656 | @PVM_FALSE@.sci.bin: | 1675 | @PVM_FALSE@.sci.bin: |
diff --git a/scilab/modules/randlib/Makefile.in b/scilab/modules/randlib/Makefile.in index 2e31d9f..8027feb 100644 --- a/scilab/modules/randlib/Makefile.in +++ b/scilab/modules/randlib/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/randlib | 65 | subdir = modules/randlib |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -472,7 +475,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
472 | #### the procedure will be the same with Microsoft Windows (C) | 475 | #### the procedure will be the same with Microsoft Windows (C) |
473 | #### and Linux/Unix | 476 | #### and Linux/Unix |
474 | ####################################################################### | 477 | ####################################################################### |
475 | TARGETS_ALL = $(am__append_1) | 478 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
476 | 479 | ||
477 | ################ MACROS ###################### | 480 | ################ MACROS ###################### |
478 | # Rule to build a macro | 481 | # Rule to build a macro |
@@ -1068,7 +1071,7 @@ uninstall-am: uninstall-libscirandlib_la_etcDATA \ | |||
1068 | 1071 | ||
1069 | 1072 | ||
1070 | # This target enables tests for Scilab | 1073 | # This target enables tests for Scilab |
1071 | check-local: $(top_builddir)/scilab-bin | 1074 | check-local: $(top_builddir)/scilab-bin test |
1072 | @COMMAND="test_run('$(modulename)');quit";\ | 1075 | @COMMAND="test_run('$(modulename)');quit";\ |
1073 | export LANG=C;\ | 1076 | export LANG=C;\ |
1074 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1077 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1135,6 +1138,12 @@ clean-macros: | |||
1135 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1138 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1136 | done | 1139 | done |
1137 | 1140 | ||
1141 | test: | ||
1142 | # More tests could be added here | ||
1143 | @if test -f build.xml; then \ | ||
1144 | $(ANT) test; \ | ||
1145 | fi | ||
1146 | |||
1138 | all-local: $(TARGETS_ALL) | 1147 | all-local: $(TARGETS_ALL) |
1139 | 1148 | ||
1140 | .sci.bin: | 1149 | .sci.bin: |
diff --git a/scilab/modules/renderer/Makefile.in b/scilab/modules/renderer/Makefile.in index 73f024c..d28a06f 100644 --- a/scilab/modules/renderer/Makefile.in +++ b/scilab/modules/renderer/Makefile.in | |||
@@ -66,6 +66,9 @@ host_triplet = @host@ | |||
66 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 66 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
67 | $(top_srcdir)/Makefile.incl.am | 67 | $(top_srcdir)/Makefile.incl.am |
68 | @NEED_JAVA_TRUE@am__append_1 = java | 68 | @NEED_JAVA_TRUE@am__append_1 = java |
69 | |||
70 | # With --enable-compilation-tests, launch java unitary tests | ||
71 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
69 | subdir = modules/renderer | 72 | subdir = modules/renderer |
70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -1008,7 +1011,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
1008 | #### the procedure will be the same with Microsoft Windows (C) | 1011 | #### the procedure will be the same with Microsoft Windows (C) |
1009 | #### and Linux/Unix | 1012 | #### and Linux/Unix |
1010 | ####################################################################### | 1013 | ####################################################################### |
1011 | TARGETS_ALL = $(am__append_1) | 1014 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
1012 | 1015 | ||
1013 | ################ MACROS ###################### | 1016 | ################ MACROS ###################### |
1014 | # Rule to build a macro | 1017 | # Rule to build a macro |
@@ -3479,7 +3482,7 @@ uninstall-am: uninstall-libscirenderer_la_etcDATA \ | |||
3479 | 3482 | ||
3480 | 3483 | ||
3481 | # This target enables tests for Scilab | 3484 | # This target enables tests for Scilab |
3482 | check-local: $(top_builddir)/scilab-bin | 3485 | check-local: $(top_builddir)/scilab-bin test |
3483 | @COMMAND="test_run('$(modulename)');quit";\ | 3486 | @COMMAND="test_run('$(modulename)');quit";\ |
3484 | export LANG=C;\ | 3487 | export LANG=C;\ |
3485 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 3488 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -3546,6 +3549,12 @@ clean-macros: | |||
3546 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 3549 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
3547 | done | 3550 | done |
3548 | 3551 | ||
3552 | test: | ||
3553 | # More tests could be added here | ||
3554 | @if test -f build.xml; then \ | ||
3555 | $(ANT) test; \ | ||
3556 | fi | ||
3557 | |||
3549 | all-local: $(TARGETS_ALL) | 3558 | all-local: $(TARGETS_ALL) |
3550 | 3559 | ||
3551 | .sci.bin: | 3560 | .sci.bin: |
diff --git a/scilab/modules/scicos/Makefile.in b/scilab/modules/scicos/Makefile.in index ef2adb0..6cb6323 100644 --- a/scilab/modules/scicos/Makefile.in +++ b/scilab/modules/scicos/Makefile.in | |||
@@ -81,10 +81,13 @@ DIST_COMMON = $(am__libsciscicos_la_include_HEADERS_DIST) \ | |||
81 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 81 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
82 | $(srcdir)/Makefile.modelica.am $(top_srcdir)/Makefile.incl.am | 82 | $(srcdir)/Makefile.modelica.am $(top_srcdir)/Makefile.incl.am |
83 | @NEED_JAVA_TRUE@am__append_1 = java | 83 | @NEED_JAVA_TRUE@am__append_1 = java |
84 | |||
85 | # With --enable-compilation-tests, launch java unitary tests | ||
86 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
84 | @OCAML_TRUE@@SCICOS_TRUE@bin_PROGRAMS = $(am__EXEEXT_1) | 87 | @OCAML_TRUE@@SCICOS_TRUE@bin_PROGRAMS = $(am__EXEEXT_1) |
85 | 88 | ||
86 | ########## COMMON | 89 | ########## COMMON |
87 | @OCAML_TRUE@@SCICOS_TRUE@am__append_2 = .ml .mli .mll .mly .cmo .cmi .cmx | 90 | @OCAML_TRUE@@SCICOS_TRUE@am__append_3 = .ml .mli .mll .mly .cmo .cmi .cmx |
88 | subdir = modules/scicos | 91 | subdir = modules/scicos |
89 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 92 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
90 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 93 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -655,12 +658,12 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
655 | #### the procedure will be the same with Microsoft Windows (C) | 658 | #### the procedure will be the same with Microsoft Windows (C) |
656 | #### and Linux/Unix | 659 | #### and Linux/Unix |
657 | ####################################################################### | 660 | ####################################################################### |
658 | TARGETS_ALL = $(am__append_1) | 661 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
659 | 662 | ||
660 | ################ MACROS ###################### | 663 | ################ MACROS ###################### |
661 | # Rule to build a macro | 664 | # Rule to build a macro |
662 | # NOT USED AT THE MOMENT | 665 | # NOT USED AT THE MOMENT |
663 | SUFFIXES = .sci $(am__append_2) | 666 | SUFFIXES = .sci $(am__append_3) |
664 | 667 | ||
665 | ########### INSTALL DOCUMENTATION ################### | 668 | ########### INSTALL DOCUMENTATION ################### |
666 | 669 | ||
@@ -2211,7 +2214,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-libsciscicos_la_etcDATA \ | |||
2211 | 2214 | ||
2212 | 2215 | ||
2213 | # This target enables tests for Scilab | 2216 | # This target enables tests for Scilab |
2214 | check-local: $(top_builddir)/scilab-bin | 2217 | check-local: $(top_builddir)/scilab-bin test |
2215 | @COMMAND="test_run('$(modulename)');quit";\ | 2218 | @COMMAND="test_run('$(modulename)');quit";\ |
2216 | export LANG=C;\ | 2219 | export LANG=C;\ |
2217 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 2220 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -2278,6 +2281,12 @@ clean-macros: | |||
2278 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 2281 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
2279 | done | 2282 | done |
2280 | 2283 | ||
2284 | test: | ||
2285 | # More tests could be added here | ||
2286 | @if test -f build.xml; then \ | ||
2287 | $(ANT) test; \ | ||
2288 | fi | ||
2289 | |||
2281 | all-local: $(TARGETS_ALL) | 2290 | all-local: $(TARGETS_ALL) |
2282 | 2291 | ||
2283 | .sci.bin: | 2292 | .sci.bin: |
diff --git a/scilab/modules/scicos_blocks/Makefile.in b/scilab/modules/scicos_blocks/Makefile.in index 7b54c69..b95c85c 100644 --- a/scilab/modules/scicos_blocks/Makefile.in +++ b/scilab/modules/scicos_blocks/Makefile.in | |||
@@ -65,6 +65,9 @@ DIST_COMMON = $(am__libsciscicos_blocks_la_include_HEADERS_DIST) \ | |||
65 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | |||
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
68 | subdir = modules/scicos_blocks | 71 | subdir = modules/scicos_blocks |
69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 72 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 73 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -905,7 +908,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
905 | #### the procedure will be the same with Microsoft Windows (C) | 908 | #### the procedure will be the same with Microsoft Windows (C) |
906 | #### and Linux/Unix | 909 | #### and Linux/Unix |
907 | ####################################################################### | 910 | ####################################################################### |
908 | TARGETS_ALL = $(am__append_1) | 911 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
909 | 912 | ||
910 | ################ MACROS ###################### | 913 | ################ MACROS ###################### |
911 | # Rule to build a macro | 914 | # Rule to build a macro |
@@ -4844,7 +4847,7 @@ uninstall-am: uninstall-libsciscicos_blocks_la_etcDATA \ | |||
4844 | 4847 | ||
4845 | 4848 | ||
4846 | # This target enables tests for Scilab | 4849 | # This target enables tests for Scilab |
4847 | check-local: $(top_builddir)/scilab-bin | 4850 | check-local: $(top_builddir)/scilab-bin test |
4848 | @COMMAND="test_run('$(modulename)');quit";\ | 4851 | @COMMAND="test_run('$(modulename)');quit";\ |
4849 | export LANG=C;\ | 4852 | export LANG=C;\ |
4850 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 4853 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -4911,6 +4914,12 @@ clean-macros: | |||
4911 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 4914 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
4912 | done | 4915 | done |
4913 | 4916 | ||
4917 | test: | ||
4918 | # More tests could be added here | ||
4919 | @if test -f build.xml; then \ | ||
4920 | $(ANT) test; \ | ||
4921 | fi | ||
4922 | |||
4914 | all-local: $(TARGETS_ALL) | 4923 | all-local: $(TARGETS_ALL) |
4915 | 4924 | ||
4916 | .sci.bin: | 4925 | .sci.bin: |
diff --git a/scilab/modules/shell/Makefile.in b/scilab/modules/shell/Makefile.in index 57b951a..c0f988a 100644 --- a/scilab/modules/shell/Makefile.in +++ b/scilab/modules/shell/Makefile.in | |||
@@ -64,6 +64,9 @@ host_triplet = @host@ | |||
64 | DIST_COMMON = $(libscishell_la_include_HEADERS) $(srcdir)/Makefile.am \ | 64 | DIST_COMMON = $(libscishell_la_include_HEADERS) $(srcdir)/Makefile.am \ |
65 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am | 65 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am |
66 | @NEED_JAVA_TRUE@am__append_3 = java | 66 | @NEED_JAVA_TRUE@am__append_3 = java |
67 | |||
68 | # With --enable-compilation-tests, launch java unitary tests | ||
69 | @COMPILATION_TESTS_TRUE@am__append_4 = test | ||
67 | subdir = modules/shell | 70 | subdir = modules/shell |
68 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
69 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -492,7 +495,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
492 | #### the procedure will be the same with Microsoft Windows (C) | 495 | #### the procedure will be the same with Microsoft Windows (C) |
493 | #### and Linux/Unix | 496 | #### and Linux/Unix |
494 | ####################################################################### | 497 | ####################################################################### |
495 | TARGETS_ALL = $(am__append_3) | 498 | TARGETS_ALL = $(am__append_3) $(am__append_4) |
496 | 499 | ||
497 | ################ MACROS ###################### | 500 | ################ MACROS ###################### |
498 | # Rule to build a macro | 501 | # Rule to build a macro |
@@ -1098,7 +1101,7 @@ uninstall-am: uninstall-libscishell_la_etcDATA \ | |||
1098 | 1101 | ||
1099 | 1102 | ||
1100 | # This target enables tests for Scilab | 1103 | # This target enables tests for Scilab |
1101 | check-local: $(top_builddir)/scilab-bin | 1104 | check-local: $(top_builddir)/scilab-bin test |
1102 | @COMMAND="test_run('$(modulename)');quit";\ | 1105 | @COMMAND="test_run('$(modulename)');quit";\ |
1103 | export LANG=C;\ | 1106 | export LANG=C;\ |
1104 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1107 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1165,6 +1168,12 @@ clean-macros: | |||
1165 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1168 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1166 | done | 1169 | done |
1167 | 1170 | ||
1171 | test: | ||
1172 | # More tests could be added here | ||
1173 | @if test -f build.xml; then \ | ||
1174 | $(ANT) test; \ | ||
1175 | fi | ||
1176 | |||
1168 | all-local: $(TARGETS_ALL) | 1177 | all-local: $(TARGETS_ALL) |
1169 | 1178 | ||
1170 | .sci.bin: | 1179 | .sci.bin: |
diff --git a/scilab/modules/signal_processing/Makefile.in b/scilab/modules/signal_processing/Makefile.in index d7b763a..b87f3ab 100644 --- a/scilab/modules/signal_processing/Makefile.in +++ b/scilab/modules/signal_processing/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/signal_processing | 65 | subdir = modules/signal_processing |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -541,7 +544,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
541 | #### the procedure will be the same with Microsoft Windows (C) | 544 | #### the procedure will be the same with Microsoft Windows (C) |
542 | #### and Linux/Unix | 545 | #### and Linux/Unix |
543 | ####################################################################### | 546 | ####################################################################### |
544 | TARGETS_ALL = $(am__append_1) | 547 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
545 | 548 | ||
546 | ################ MACROS ###################### | 549 | ################ MACROS ###################### |
547 | # Rule to build a macro | 550 | # Rule to build a macro |
@@ -1292,7 +1295,7 @@ uninstall-am: uninstall-libscisignal_processing_la_etcDATA \ | |||
1292 | 1295 | ||
1293 | 1296 | ||
1294 | # This target enables tests for Scilab | 1297 | # This target enables tests for Scilab |
1295 | check-local: $(top_builddir)/scilab-bin | 1298 | check-local: $(top_builddir)/scilab-bin test |
1296 | @COMMAND="test_run('$(modulename)');quit";\ | 1299 | @COMMAND="test_run('$(modulename)');quit";\ |
1297 | export LANG=C;\ | 1300 | export LANG=C;\ |
1298 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1301 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1359,6 +1362,12 @@ clean-macros: | |||
1359 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1362 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1360 | done | 1363 | done |
1361 | 1364 | ||
1365 | test: | ||
1366 | # More tests could be added here | ||
1367 | @if test -f build.xml; then \ | ||
1368 | $(ANT) test; \ | ||
1369 | fi | ||
1370 | |||
1362 | all-local: $(TARGETS_ALL) | 1371 | all-local: $(TARGETS_ALL) |
1363 | 1372 | ||
1364 | .sci.bin: | 1373 | .sci.bin: |
diff --git a/scilab/modules/simulated_annealing/Makefile.in b/scilab/modules/simulated_annealing/Makefile.in index 02c46b0..5252f55 100644 --- a/scilab/modules/simulated_annealing/Makefile.in +++ b/scilab/modules/simulated_annealing/Makefile.in | |||
@@ -62,6 +62,9 @@ host_triplet = @host@ | |||
62 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 62 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
63 | $(top_srcdir)/Makefile.incl.am | 63 | $(top_srcdir)/Makefile.incl.am |
64 | @NEED_JAVA_TRUE@am__append_1 = java | 64 | @NEED_JAVA_TRUE@am__append_1 = java |
65 | |||
66 | # With --enable-compilation-tests, launch java unitary tests | ||
67 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
65 | subdir = modules/simulated_annealing | 68 | subdir = modules/simulated_annealing |
66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -375,7 +378,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
375 | #### the procedure will be the same with Microsoft Windows (C) | 378 | #### the procedure will be the same with Microsoft Windows (C) |
376 | #### and Linux/Unix | 379 | #### and Linux/Unix |
377 | ####################################################################### | 380 | ####################################################################### |
378 | TARGETS_ALL = $(am__append_1) | 381 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
379 | 382 | ||
380 | ################ MACROS ###################### | 383 | ################ MACROS ###################### |
381 | # Rule to build a macro | 384 | # Rule to build a macro |
@@ -666,7 +669,7 @@ uninstall-am: uninstall-libsimulated_annealing_la_etcDATA \ | |||
666 | 669 | ||
667 | 670 | ||
668 | # This target enables tests for Scilab | 671 | # This target enables tests for Scilab |
669 | check-local: $(top_builddir)/scilab-bin | 672 | check-local: $(top_builddir)/scilab-bin test |
670 | @COMMAND="test_run('$(modulename)');quit";\ | 673 | @COMMAND="test_run('$(modulename)');quit";\ |
671 | export LANG=C;\ | 674 | export LANG=C;\ |
672 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 675 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -733,6 +736,12 @@ clean-macros: | |||
733 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 736 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
734 | done | 737 | done |
735 | 738 | ||
739 | test: | ||
740 | # More tests could be added here | ||
741 | @if test -f build.xml; then \ | ||
742 | $(ANT) test; \ | ||
743 | fi | ||
744 | |||
736 | all-local: $(TARGETS_ALL) | 745 | all-local: $(TARGETS_ALL) |
737 | 746 | ||
738 | .sci.bin: | 747 | .sci.bin: |
diff --git a/scilab/modules/sound/Makefile.in b/scilab/modules/sound/Makefile.in index 2efd95a..f325a34 100644 --- a/scilab/modules/sound/Makefile.in +++ b/scilab/modules/sound/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/sound | 65 | subdir = modules/sound |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -427,7 +430,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
427 | #### the procedure will be the same with Microsoft Windows (C) | 430 | #### the procedure will be the same with Microsoft Windows (C) |
428 | #### and Linux/Unix | 431 | #### and Linux/Unix |
429 | ####################################################################### | 432 | ####################################################################### |
430 | TARGETS_ALL = $(am__append_1) | 433 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
431 | 434 | ||
432 | ################ MACROS ###################### | 435 | ################ MACROS ###################### |
433 | # Rule to build a macro | 436 | # Rule to build a macro |
@@ -880,7 +883,7 @@ uninstall-am: uninstall-libscisound_la_etcDATA \ | |||
880 | 883 | ||
881 | 884 | ||
882 | # This target enables tests for Scilab | 885 | # This target enables tests for Scilab |
883 | check-local: $(top_builddir)/scilab-bin | 886 | check-local: $(top_builddir)/scilab-bin test |
884 | @COMMAND="test_run('$(modulename)');quit";\ | 887 | @COMMAND="test_run('$(modulename)');quit";\ |
885 | export LANG=C;\ | 888 | export LANG=C;\ |
886 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 889 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -947,6 +950,12 @@ clean-macros: | |||
947 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 950 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
948 | done | 951 | done |
949 | 952 | ||
953 | test: | ||
954 | # More tests could be added here | ||
955 | @if test -f build.xml; then \ | ||
956 | $(ANT) test; \ | ||
957 | fi | ||
958 | |||
950 | all-local: $(TARGETS_ALL) | 959 | all-local: $(TARGETS_ALL) |
951 | 960 | ||
952 | .sci.bin: | 961 | .sci.bin: |
diff --git a/scilab/modules/sparse/Makefile.in b/scilab/modules/sparse/Makefile.in index 1cbdc2d..6a86e97 100644 --- a/scilab/modules/sparse/Makefile.in +++ b/scilab/modules/sparse/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/sparse | 65 | subdir = modules/sparse |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -622,7 +625,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
622 | #### the procedure will be the same with Microsoft Windows (C) | 625 | #### the procedure will be the same with Microsoft Windows (C) |
623 | #### and Linux/Unix | 626 | #### and Linux/Unix |
624 | ####################################################################### | 627 | ####################################################################### |
625 | TARGETS_ALL = $(am__append_1) | 628 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
626 | 629 | ||
627 | ################ MACROS ###################### | 630 | ################ MACROS ###################### |
628 | # Rule to build a macro | 631 | # Rule to build a macro |
@@ -1675,7 +1678,7 @@ uninstall-am: uninstall-libscisparse_la_etcDATA \ | |||
1675 | 1678 | ||
1676 | 1679 | ||
1677 | # This target enables tests for Scilab | 1680 | # This target enables tests for Scilab |
1678 | check-local: $(top_builddir)/scilab-bin | 1681 | check-local: $(top_builddir)/scilab-bin test |
1679 | @COMMAND="test_run('$(modulename)');quit";\ | 1682 | @COMMAND="test_run('$(modulename)');quit";\ |
1680 | export LANG=C;\ | 1683 | export LANG=C;\ |
1681 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1684 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1742,6 +1745,12 @@ clean-macros: | |||
1742 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1745 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1743 | done | 1746 | done |
1744 | 1747 | ||
1748 | test: | ||
1749 | # More tests could be added here | ||
1750 | @if test -f build.xml; then \ | ||
1751 | $(ANT) test; \ | ||
1752 | fi | ||
1753 | |||
1745 | all-local: $(TARGETS_ALL) | 1754 | all-local: $(TARGETS_ALL) |
1746 | 1755 | ||
1747 | .sci.bin: | 1756 | .sci.bin: |
diff --git a/scilab/modules/special_functions/Makefile.in b/scilab/modules/special_functions/Makefile.in index 55bba22..0f2459d 100644 --- a/scilab/modules/special_functions/Makefile.in +++ b/scilab/modules/special_functions/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/special_functions | 65 | subdir = modules/special_functions |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -476,7 +479,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
476 | #### the procedure will be the same with Microsoft Windows (C) | 479 | #### the procedure will be the same with Microsoft Windows (C) |
477 | #### and Linux/Unix | 480 | #### and Linux/Unix |
478 | ####################################################################### | 481 | ####################################################################### |
479 | TARGETS_ALL = $(am__append_1) | 482 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
480 | 483 | ||
481 | ################ MACROS ###################### | 484 | ################ MACROS ###################### |
482 | # Rule to build a macro | 485 | # Rule to build a macro |
@@ -1077,7 +1080,7 @@ uninstall-am: uninstall-libscispecial_functions_la_etcDATA \ | |||
1077 | 1080 | ||
1078 | 1081 | ||
1079 | # This target enables tests for Scilab | 1082 | # This target enables tests for Scilab |
1080 | check-local: $(top_builddir)/scilab-bin | 1083 | check-local: $(top_builddir)/scilab-bin test |
1081 | @COMMAND="test_run('$(modulename)');quit";\ | 1084 | @COMMAND="test_run('$(modulename)');quit";\ |
1082 | export LANG=C;\ | 1085 | export LANG=C;\ |
1083 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1086 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1144,6 +1147,12 @@ clean-macros: | |||
1144 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1147 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1145 | done | 1148 | done |
1146 | 1149 | ||
1150 | test: | ||
1151 | # More tests could be added here | ||
1152 | @if test -f build.xml; then \ | ||
1153 | $(ANT) test; \ | ||
1154 | fi | ||
1155 | |||
1147 | all-local: $(TARGETS_ALL) | 1156 | all-local: $(TARGETS_ALL) |
1148 | 1157 | ||
1149 | .sci.bin: | 1158 | .sci.bin: |
diff --git a/scilab/modules/spreadsheet/Makefile.in b/scilab/modules/spreadsheet/Makefile.in index eefefe2..9f29cb3 100644 --- a/scilab/modules/spreadsheet/Makefile.in +++ b/scilab/modules/spreadsheet/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/spreadsheet | 65 | subdir = modules/spreadsheet |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -445,7 +448,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
445 | #### the procedure will be the same with Microsoft Windows (C) | 448 | #### the procedure will be the same with Microsoft Windows (C) |
446 | #### and Linux/Unix | 449 | #### and Linux/Unix |
447 | ####################################################################### | 450 | ####################################################################### |
448 | TARGETS_ALL = $(am__append_1) | 451 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
449 | 452 | ||
450 | ################ MACROS ###################### | 453 | ################ MACROS ###################### |
451 | # Rule to build a macro | 454 | # Rule to build a macro |
@@ -965,7 +968,7 @@ uninstall-am: uninstall-libscispreadsheet_la_etcDATA \ | |||
965 | 968 | ||
966 | 969 | ||
967 | # This target enables tests for Scilab | 970 | # This target enables tests for Scilab |
968 | check-local: $(top_builddir)/scilab-bin | 971 | check-local: $(top_builddir)/scilab-bin test |
969 | @COMMAND="test_run('$(modulename)');quit";\ | 972 | @COMMAND="test_run('$(modulename)');quit";\ |
970 | export LANG=C;\ | 973 | export LANG=C;\ |
971 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 974 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1032,6 +1035,12 @@ clean-macros: | |||
1032 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1035 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1033 | done | 1036 | done |
1034 | 1037 | ||
1038 | test: | ||
1039 | # More tests could be added here | ||
1040 | @if test -f build.xml; then \ | ||
1041 | $(ANT) test; \ | ||
1042 | fi | ||
1043 | |||
1035 | all-local: $(TARGETS_ALL) | 1044 | all-local: $(TARGETS_ALL) |
1036 | 1045 | ||
1037 | .sci.bin: | 1046 | .sci.bin: |
diff --git a/scilab/modules/statistics/Makefile.in b/scilab/modules/statistics/Makefile.in index 6ccbd32..2827310 100644 --- a/scilab/modules/statistics/Makefile.in +++ b/scilab/modules/statistics/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/statistics | 65 | subdir = modules/statistics |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -529,7 +532,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
529 | #### the procedure will be the same with Microsoft Windows (C) | 532 | #### the procedure will be the same with Microsoft Windows (C) |
530 | #### and Linux/Unix | 533 | #### and Linux/Unix |
531 | ####################################################################### | 534 | ####################################################################### |
532 | TARGETS_ALL = $(am__append_1) | 535 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
533 | 536 | ||
534 | ################ MACROS ###################### | 537 | ################ MACROS ###################### |
535 | # Rule to build a macro | 538 | # Rule to build a macro |
@@ -1268,7 +1271,7 @@ uninstall-am: uninstall-libscistatistics_la_etcDATA \ | |||
1268 | 1271 | ||
1269 | 1272 | ||
1270 | # This target enables tests for Scilab | 1273 | # This target enables tests for Scilab |
1271 | check-local: $(top_builddir)/scilab-bin | 1274 | check-local: $(top_builddir)/scilab-bin test |
1272 | @COMMAND="test_run('$(modulename)');quit";\ | 1275 | @COMMAND="test_run('$(modulename)');quit";\ |
1273 | export LANG=C;\ | 1276 | export LANG=C;\ |
1274 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1277 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1335,6 +1338,12 @@ clean-macros: | |||
1335 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1338 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1336 | done | 1339 | done |
1337 | 1340 | ||
1341 | test: | ||
1342 | # More tests could be added here | ||
1343 | @if test -f build.xml; then \ | ||
1344 | $(ANT) test; \ | ||
1345 | fi | ||
1346 | |||
1338 | all-local: $(TARGETS_ALL) | 1347 | all-local: $(TARGETS_ALL) |
1339 | 1348 | ||
1340 | .sci.bin: | 1349 | .sci.bin: |
diff --git a/scilab/modules/string/Makefile.in b/scilab/modules/string/Makefile.in index 11b7421..eec3852 100644 --- a/scilab/modules/string/Makefile.in +++ b/scilab/modules/string/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/string | 65 | subdir = modules/string |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -527,7 +530,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
527 | #### the procedure will be the same with Microsoft Windows (C) | 530 | #### the procedure will be the same with Microsoft Windows (C) |
528 | #### and Linux/Unix | 531 | #### and Linux/Unix |
529 | ####################################################################### | 532 | ####################################################################### |
530 | TARGETS_ALL = $(am__append_1) | 533 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
531 | 534 | ||
532 | ################ MACROS ###################### | 535 | ################ MACROS ###################### |
533 | # Rule to build a macro | 536 | # Rule to build a macro |
@@ -1404,7 +1407,7 @@ uninstall-am: uninstall-libscistring_la_etcDATA \ | |||
1404 | 1407 | ||
1405 | 1408 | ||
1406 | # This target enables tests for Scilab | 1409 | # This target enables tests for Scilab |
1407 | check-local: $(top_builddir)/scilab-bin | 1410 | check-local: $(top_builddir)/scilab-bin test |
1408 | @COMMAND="test_run('$(modulename)');quit";\ | 1411 | @COMMAND="test_run('$(modulename)');quit";\ |
1409 | export LANG=C;\ | 1412 | export LANG=C;\ |
1410 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1413 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1471,6 +1474,12 @@ clean-macros: | |||
1471 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1474 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1472 | done | 1475 | done |
1473 | 1476 | ||
1477 | test: | ||
1478 | # More tests could be added here | ||
1479 | @if test -f build.xml; then \ | ||
1480 | $(ANT) test; \ | ||
1481 | fi | ||
1482 | |||
1474 | all-local: $(TARGETS_ALL) | 1483 | all-local: $(TARGETS_ALL) |
1475 | 1484 | ||
1476 | .sci.bin: | 1485 | .sci.bin: |
diff --git a/scilab/modules/symbolic/Makefile.in b/scilab/modules/symbolic/Makefile.in index 233af64..516cdfd 100644 --- a/scilab/modules/symbolic/Makefile.in +++ b/scilab/modules/symbolic/Makefile.in | |||
@@ -63,6 +63,9 @@ host_triplet = @host@ | |||
63 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 63 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
64 | $(top_srcdir)/Makefile.incl.am | 64 | $(top_srcdir)/Makefile.incl.am |
65 | @NEED_JAVA_TRUE@am__append_1 = java | 65 | @NEED_JAVA_TRUE@am__append_1 = java |
66 | |||
67 | # With --enable-compilation-tests, launch java unitary tests | ||
68 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
66 | subdir = modules/symbolic | 69 | subdir = modules/symbolic |
67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -444,7 +447,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
444 | #### the procedure will be the same with Microsoft Windows (C) | 447 | #### the procedure will be the same with Microsoft Windows (C) |
445 | #### and Linux/Unix | 448 | #### and Linux/Unix |
446 | ####################################################################### | 449 | ####################################################################### |
447 | TARGETS_ALL = $(am__append_1) | 450 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
448 | 451 | ||
449 | ################ MACROS ###################### | 452 | ################ MACROS ###################### |
450 | # Rule to build a macro | 453 | # Rule to build a macro |
@@ -936,7 +939,7 @@ uninstall-am: uninstall-libscisymbolic_la_etcDATA \ | |||
936 | 939 | ||
937 | 940 | ||
938 | # This target enables tests for Scilab | 941 | # This target enables tests for Scilab |
939 | check-local: $(top_builddir)/scilab-bin | 942 | check-local: $(top_builddir)/scilab-bin test |
940 | @COMMAND="test_run('$(modulename)');quit";\ | 943 | @COMMAND="test_run('$(modulename)');quit";\ |
941 | export LANG=C;\ | 944 | export LANG=C;\ |
942 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 945 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1003,6 +1006,12 @@ clean-macros: | |||
1003 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1006 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1004 | done | 1007 | done |
1005 | 1008 | ||
1009 | test: | ||
1010 | # More tests could be added here | ||
1011 | @if test -f build.xml; then \ | ||
1012 | $(ANT) test; \ | ||
1013 | fi | ||
1014 | |||
1006 | all-local: $(TARGETS_ALL) | 1015 | all-local: $(TARGETS_ALL) |
1007 | 1016 | ||
1008 | .sci.bin: | 1017 | .sci.bin: |
diff --git a/scilab/modules/tclsci/Makefile.in b/scilab/modules/tclsci/Makefile.in index 85bce93..15afe38 100644 --- a/scilab/modules/tclsci/Makefile.in +++ b/scilab/modules/tclsci/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/tclsci | 65 | subdir = modules/tclsci |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -669,7 +672,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
669 | #### the procedure will be the same with Microsoft Windows (C) | 672 | #### the procedure will be the same with Microsoft Windows (C) |
670 | #### and Linux/Unix | 673 | #### and Linux/Unix |
671 | ####################################################################### | 674 | ####################################################################### |
672 | TARGETS_ALL = $(am__append_1) | 675 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
673 | 676 | ||
674 | ################ MACROS ###################### | 677 | ################ MACROS ###################### |
675 | # Rule to build a macro | 678 | # Rule to build a macro |
@@ -1358,7 +1361,7 @@ uninstall-am: uninstall-libscitclsci_la_etcDATA \ | |||
1358 | 1361 | ||
1359 | 1362 | ||
1360 | # This target enables tests for Scilab | 1363 | # This target enables tests for Scilab |
1361 | check-local: $(top_builddir)/scilab-bin | 1364 | check-local: $(top_builddir)/scilab-bin test |
1362 | @COMMAND="test_run('$(modulename)');quit";\ | 1365 | @COMMAND="test_run('$(modulename)');quit";\ |
1363 | export LANG=C;\ | 1366 | export LANG=C;\ |
1364 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1367 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1425,6 +1428,12 @@ clean-macros: | |||
1425 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1428 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1426 | done | 1429 | done |
1427 | 1430 | ||
1431 | test: | ||
1432 | # More tests could be added here | ||
1433 | @if test -f build.xml; then \ | ||
1434 | $(ANT) test; \ | ||
1435 | fi | ||
1436 | |||
1428 | all-local: $(TARGETS_ALL) | 1437 | all-local: $(TARGETS_ALL) |
1429 | 1438 | ||
1430 | .sci.bin: | 1439 | .sci.bin: |
diff --git a/scilab/modules/texmacs/Makefile.in b/scilab/modules/texmacs/Makefile.in index 8bc8fd9..bfa56c4 100644 --- a/scilab/modules/texmacs/Makefile.in +++ b/scilab/modules/texmacs/Makefile.in | |||
@@ -58,6 +58,9 @@ host_triplet = @host@ | |||
58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 58 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
59 | $(top_srcdir)/Makefile.incl.am | 59 | $(top_srcdir)/Makefile.incl.am |
60 | @NEED_JAVA_TRUE@am__append_1 = java | 60 | @NEED_JAVA_TRUE@am__append_1 = java |
61 | |||
62 | # With --enable-compilation-tests, launch java unitary tests | ||
63 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
61 | subdir = modules/texmacs | 64 | subdir = modules/texmacs |
62 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 65 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
63 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 66 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -373,7 +376,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
373 | #### the procedure will be the same with Microsoft Windows (C) | 376 | #### the procedure will be the same with Microsoft Windows (C) |
374 | #### and Linux/Unix | 377 | #### and Linux/Unix |
375 | ####################################################################### | 378 | ####################################################################### |
376 | TARGETS_ALL = $(am__append_1) | 379 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
377 | 380 | ||
378 | ################ MACROS ###################### | 381 | ################ MACROS ###################### |
379 | # Rule to build a macro | 382 | # Rule to build a macro |
@@ -662,7 +665,7 @@ uninstall-am: uninstall-libscitexmacs_la_etcDATA \ | |||
662 | 665 | ||
663 | 666 | ||
664 | # This target enables tests for Scilab | 667 | # This target enables tests for Scilab |
665 | check-local: $(top_builddir)/scilab-bin | 668 | check-local: $(top_builddir)/scilab-bin test |
666 | @COMMAND="test_run('$(modulename)');quit";\ | 669 | @COMMAND="test_run('$(modulename)');quit";\ |
667 | export LANG=C;\ | 670 | export LANG=C;\ |
668 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 671 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -729,6 +732,12 @@ clean-macros: | |||
729 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 732 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
730 | done | 733 | done |
731 | 734 | ||
735 | test: | ||
736 | # More tests could be added here | ||
737 | @if test -f build.xml; then \ | ||
738 | $(ANT) test; \ | ||
739 | fi | ||
740 | |||
732 | all-local: $(TARGETS_ALL) | 741 | all-local: $(TARGETS_ALL) |
733 | 742 | ||
734 | .sci.bin: | 743 | .sci.bin: |
diff --git a/scilab/modules/time/Makefile.in b/scilab/modules/time/Makefile.in index 4d51547..7272d56 100644 --- a/scilab/modules/time/Makefile.in +++ b/scilab/modules/time/Makefile.in | |||
@@ -60,6 +60,9 @@ host_triplet = @host@ | |||
60 | DIST_COMMON = $(libscitime_la_include_HEADERS) $(srcdir)/Makefile.am \ | 60 | DIST_COMMON = $(libscitime_la_include_HEADERS) $(srcdir)/Makefile.am \ |
61 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am | 61 | $(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am |
62 | @NEED_JAVA_TRUE@am__append_1 = java | 62 | @NEED_JAVA_TRUE@am__append_1 = java |
63 | |||
64 | # With --enable-compilation-tests, launch java unitary tests | ||
65 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
63 | subdir = modules/time | 66 | subdir = modules/time |
64 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 67 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
65 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 68 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -446,7 +449,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
446 | #### the procedure will be the same with Microsoft Windows (C) | 449 | #### the procedure will be the same with Microsoft Windows (C) |
447 | #### and Linux/Unix | 450 | #### and Linux/Unix |
448 | ####################################################################### | 451 | ####################################################################### |
449 | TARGETS_ALL = $(am__append_1) | 452 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
450 | 453 | ||
451 | ################ MACROS ###################### | 454 | ################ MACROS ###################### |
452 | # Rule to build a macro | 455 | # Rule to build a macro |
@@ -980,7 +983,7 @@ uninstall-am: uninstall-libscitime_la_etcDATA \ | |||
980 | 983 | ||
981 | 984 | ||
982 | # This target enables tests for Scilab | 985 | # This target enables tests for Scilab |
983 | check-local: $(top_builddir)/scilab-bin | 986 | check-local: $(top_builddir)/scilab-bin test |
984 | @COMMAND="test_run('$(modulename)');quit";\ | 987 | @COMMAND="test_run('$(modulename)');quit";\ |
985 | export LANG=C;\ | 988 | export LANG=C;\ |
986 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 989 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1047,6 +1050,12 @@ clean-macros: | |||
1047 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1050 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1048 | done | 1051 | done |
1049 | 1052 | ||
1053 | test: | ||
1054 | # More tests could be added here | ||
1055 | @if test -f build.xml; then \ | ||
1056 | $(ANT) test; \ | ||
1057 | fi | ||
1058 | |||
1050 | all-local: $(TARGETS_ALL) | 1059 | all-local: $(TARGETS_ALL) |
1051 | 1060 | ||
1052 | .sci.bin: | 1061 | .sci.bin: |
diff --git a/scilab/modules/types/Makefile.in b/scilab/modules/types/Makefile.in index b658d25..05288b4 100644 --- a/scilab/modules/types/Makefile.in +++ b/scilab/modules/types/Makefile.in | |||
@@ -65,7 +65,10 @@ host_triplet = @host@ | |||
65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | @GUI_TRUE@am__append_2 = libscitypes.la | 68 | |
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
71 | @GUI_TRUE@am__append_3 = libscitypes.la | ||
69 | subdir = modules/types | 72 | subdir = modules/types |
70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -414,7 +417,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
414 | #### the procedure will be the same with Microsoft Windows (C) | 417 | #### the procedure will be the same with Microsoft Windows (C) |
415 | #### and Linux/Unix | 418 | #### and Linux/Unix |
416 | ####################################################################### | 419 | ####################################################################### |
417 | TARGETS_ALL = $(am__append_1) | 420 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
418 | 421 | ||
419 | ################ MACROS ###################### | 422 | ################ MACROS ###################### |
420 | # Rule to build a macro | 423 | # Rule to build a macro |
@@ -481,7 +484,7 @@ libscitypes_disable_la_CFLAGS = | |||
481 | TYPES_DISABLE_C_SOURCES = | 484 | TYPES_DISABLE_C_SOURCES = |
482 | libscitypes_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) | 485 | libscitypes_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) |
483 | libscitypes_disable_la_SOURCES = $(TYPES_DISABLE_C_SOURCES) | 486 | libscitypes_disable_la_SOURCES = $(TYPES_DISABLE_C_SOURCES) |
484 | pkglib_LTLIBRARIES = libscitypes-disable.la $(am__append_2) | 487 | pkglib_LTLIBRARIES = libscitypes-disable.la $(am__append_3) |
485 | libscitypes_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) | 488 | libscitypes_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) |
486 | libscitypes_la_SOURCES = $(TYPES_C_SOURCES) $(TYPES_JNI_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(TYPES_CPP_SOURCES) | 489 | libscitypes_la_SOURCES = $(TYPES_C_SOURCES) $(TYPES_JNI_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(TYPES_CPP_SOURCES) |
487 | 490 | ||
@@ -814,7 +817,7 @@ uninstall-am: uninstall-libscitypes_la_etcDATA \ | |||
814 | 817 | ||
815 | 818 | ||
816 | # This target enables tests for Scilab | 819 | # This target enables tests for Scilab |
817 | check-local: $(top_builddir)/scilab-bin | 820 | check-local: $(top_builddir)/scilab-bin test |
818 | @COMMAND="test_run('$(modulename)');quit";\ | 821 | @COMMAND="test_run('$(modulename)');quit";\ |
819 | export LANG=C;\ | 822 | export LANG=C;\ |
820 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 823 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -881,6 +884,12 @@ clean-macros: | |||
881 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 884 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
882 | done | 885 | done |
883 | 886 | ||
887 | test: | ||
888 | # More tests could be added here | ||
889 | @if test -f build.xml; then \ | ||
890 | $(ANT) test; \ | ||
891 | fi | ||
892 | |||
884 | all-local: $(TARGETS_ALL) | 893 | all-local: $(TARGETS_ALL) |
885 | 894 | ||
886 | .sci.bin: | 895 | .sci.bin: |
diff --git a/scilab/modules/umfpack/Makefile.in b/scilab/modules/umfpack/Makefile.in index 987c9d7..3ef48bf 100644 --- a/scilab/modules/umfpack/Makefile.in +++ b/scilab/modules/umfpack/Makefile.in | |||
@@ -65,6 +65,9 @@ host_triplet = @host@ | |||
65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_2 = java | 67 | @NEED_JAVA_TRUE@am__append_2 = java |
68 | |||
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_3 = test | ||
68 | subdir = modules/umfpack | 71 | subdir = modules/umfpack |
69 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 72 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
70 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 73 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -493,7 +496,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
493 | #### the procedure will be the same with Microsoft Windows (C) | 496 | #### the procedure will be the same with Microsoft Windows (C) |
494 | #### and Linux/Unix | 497 | #### and Linux/Unix |
495 | ####################################################################### | 498 | ####################################################################### |
496 | TARGETS_ALL = $(am__append_2) | 499 | TARGETS_ALL = $(am__append_2) $(am__append_3) |
497 | 500 | ||
498 | ################ MACROS ###################### | 501 | ################ MACROS ###################### |
499 | # Rule to build a macro | 502 | # Rule to build a macro |
@@ -1059,7 +1062,7 @@ uninstall-am: uninstall-libsciumfpack_la_etcDATA \ | |||
1059 | 1062 | ||
1060 | 1063 | ||
1061 | # This target enables tests for Scilab | 1064 | # This target enables tests for Scilab |
1062 | check-local: $(top_builddir)/scilab-bin | 1065 | check-local: $(top_builddir)/scilab-bin test |
1063 | @COMMAND="test_run('$(modulename)');quit";\ | 1066 | @COMMAND="test_run('$(modulename)');quit";\ |
1064 | export LANG=C;\ | 1067 | export LANG=C;\ |
1065 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1068 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1126,6 +1129,12 @@ clean-macros: | |||
1126 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1129 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1127 | done | 1130 | done |
1128 | 1131 | ||
1132 | test: | ||
1133 | # More tests could be added here | ||
1134 | @if test -f build.xml; then \ | ||
1135 | $(ANT) test; \ | ||
1136 | fi | ||
1137 | |||
1129 | all-local: $(TARGETS_ALL) | 1138 | all-local: $(TARGETS_ALL) |
1130 | 1139 | ||
1131 | .sci.bin: | 1140 | .sci.bin: |
diff --git a/scilab/modules/windows_tools/Makefile.in b/scilab/modules/windows_tools/Makefile.in index 9d3d60b..ddd7545 100644 --- a/scilab/modules/windows_tools/Makefile.in +++ b/scilab/modules/windows_tools/Makefile.in | |||
@@ -59,6 +59,9 @@ host_triplet = @host@ | |||
59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 59 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
60 | $(top_srcdir)/Makefile.incl.am | 60 | $(top_srcdir)/Makefile.incl.am |
61 | @NEED_JAVA_TRUE@am__append_1 = java | 61 | @NEED_JAVA_TRUE@am__append_1 = java |
62 | |||
63 | # With --enable-compilation-tests, launch java unitary tests | ||
64 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
62 | subdir = modules/windows_tools | 65 | subdir = modules/windows_tools |
63 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 66 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
64 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 67 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -423,7 +426,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
423 | #### the procedure will be the same with Microsoft Windows (C) | 426 | #### the procedure will be the same with Microsoft Windows (C) |
424 | #### and Linux/Unix | 427 | #### and Linux/Unix |
425 | ####################################################################### | 428 | ####################################################################### |
426 | TARGETS_ALL = $(am__append_1) | 429 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
427 | 430 | ||
428 | ################ MACROS ###################### | 431 | ################ MACROS ###################### |
429 | # Rule to build a macro | 432 | # Rule to build a macro |
@@ -863,7 +866,7 @@ uninstall-am: uninstall-libsciwindows_tools_la_etcDATA \ | |||
863 | 866 | ||
864 | 867 | ||
865 | # This target enables tests for Scilab | 868 | # This target enables tests for Scilab |
866 | check-local: $(top_builddir)/scilab-bin | 869 | check-local: $(top_builddir)/scilab-bin test |
867 | @COMMAND="test_run('$(modulename)');quit";\ | 870 | @COMMAND="test_run('$(modulename)');quit";\ |
868 | export LANG=C;\ | 871 | export LANG=C;\ |
869 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 872 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -930,6 +933,12 @@ clean-macros: | |||
930 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 933 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
931 | done | 934 | done |
932 | 935 | ||
936 | test: | ||
937 | # More tests could be added here | ||
938 | @if test -f build.xml; then \ | ||
939 | $(ANT) test; \ | ||
940 | fi | ||
941 | |||
933 | all-local: $(TARGETS_ALL) | 942 | all-local: $(TARGETS_ALL) |
934 | 943 | ||
935 | .sci.bin: | 944 | .sci.bin: |
diff --git a/scilab/modules/xcos/Makefile.in b/scilab/modules/xcos/Makefile.in index 346cc76..d15463d 100644 --- a/scilab/modules/xcos/Makefile.in +++ b/scilab/modules/xcos/Makefile.in | |||
@@ -67,6 +67,9 @@ host_triplet = @host@ | |||
67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 67 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
68 | $(top_srcdir)/Makefile.incl.am | 68 | $(top_srcdir)/Makefile.incl.am |
69 | @NEED_JAVA_TRUE@am__append_2 = java | 69 | @NEED_JAVA_TRUE@am__append_2 = java |
70 | |||
71 | # With --enable-compilation-tests, launch java unitary tests | ||
72 | @COMPILATION_TESTS_TRUE@am__append_3 = test | ||
70 | subdir = modules/xcos | 73 | subdir = modules/xcos |
71 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 74 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
72 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 75 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -788,7 +791,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
788 | #### the procedure will be the same with Microsoft Windows (C) | 791 | #### the procedure will be the same with Microsoft Windows (C) |
789 | #### and Linux/Unix | 792 | #### and Linux/Unix |
790 | ####################################################################### | 793 | ####################################################################### |
791 | TARGETS_ALL = $(am__append_2) | 794 | TARGETS_ALL = $(am__append_2) $(am__append_3) |
792 | 795 | ||
793 | ################ MACROS ###################### | 796 | ################ MACROS ###################### |
794 | # Rule to build a macro | 797 | # Rule to build a macro |
@@ -1375,7 +1378,7 @@ uninstall-am: uninstall-libscixcos_la_etcDATA \ | |||
1375 | 1378 | ||
1376 | 1379 | ||
1377 | # This target enables tests for Scilab | 1380 | # This target enables tests for Scilab |
1378 | check-local: $(top_builddir)/scilab-bin | 1381 | check-local: $(top_builddir)/scilab-bin test |
1379 | @COMMAND="test_run('$(modulename)');quit";\ | 1382 | @COMMAND="test_run('$(modulename)');quit";\ |
1380 | export LANG=C;\ | 1383 | export LANG=C;\ |
1381 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" | 1384 | $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND" |
@@ -1442,6 +1445,12 @@ clean-macros: | |||
1442 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ | 1445 | rm -f $(builddir)/$$dir/$(MACROBINMASK); \ |
1443 | done | 1446 | done |
1444 | 1447 | ||
1448 | test: | ||
1449 | # More tests could be added here | ||
1450 | @if test -f build.xml; then \ | ||
1451 | $(ANT) test; \ | ||
1452 | fi | ||
1453 | |||
1445 | all-local: $(TARGETS_ALL) | 1454 | all-local: $(TARGETS_ALL) |
1446 | 1455 | ||
1447 | .sci.bin: | 1456 | .sci.bin: |
diff --git a/scilab/modules/xpad/Makefile.in b/scilab/modules/xpad/Makefile.in index 574013a..fdf9d71 100644 --- a/scilab/modules/xpad/Makefile.in +++ b/scilab/modules/xpad/Makefile.in | |||
@@ -65,7 +65,10 @@ host_triplet = @host@ | |||
65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ | 65 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
66 | $(top_srcdir)/Makefile.incl.am | 66 | $(top_srcdir)/Makefile.incl.am |
67 | @NEED_JAVA_TRUE@am__append_1 = java | 67 | @NEED_JAVA_TRUE@am__append_1 = java |
68 | @GUI_TRUE@am__append_2 = libscixpad.la | 68 | |
69 | # With --enable-compilation-tests, launch java unitary tests | ||
70 | @COMPILATION_TESTS_TRUE@am__append_2 = test | ||
71 | @GUI_TRUE@am__append_3 = libscixpad.la | ||
69 | subdir = modules/xpad | 72 | subdir = modules/xpad |
70 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | 73 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 |
71 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ | 74 | am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \ |
@@ -436,7 +439,7 @@ SPLINT_OPTIONS = -weak -booltype BOOL | |||
436 | #### the procedure will be the same with Microsoft Windows (C) | 439 | #### the procedure will be the same with Microsoft Windows (C) |
437 | #### and Linux/Unix | 440 | #### and Linux/Unix |
438 | ####################################################################### | 441 | ####################################################################### |
439 | TARGETS_ALL = $(am__append_1) | 442 | TARGETS_ALL = $(am__append_1) $(am__append_2) |
440 | 443 | ||
441 | ################ MACROS ###################### | 444 | ################ MACROS ###################### |
442 | # Rule to build a macro | 445 | # Rule to build a macro |
@@ -529,7 +532,7 @@ libscixpad_disable_la_CFLAGS = -Iincludes/ \ | |||
529 | XPAD_DISABLE_C_SOURCES = src/noxpad/noxpad.c | 532 | XPAD_DISABLE_C_SOURCES = src/noxpad/noxpad.c |
530 | libscixpad_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) | 533 | libscixpad_disable_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) |
531 | libscixpad_disable_la_SOURCES = $(XPAD_DISABLE_C_SOURCES) | 534 | libscixpad_disable_la_SOURCES = $(XPAD_DISABLE_C_SOURCES) |
532 | pkglib_LTLIBRARIES = libscixpad-disable.la $(am__append_2) | 535 | pkglib_LTLIBRARIES = libscixpad-disable.la $(am__append_3) |
533 | libscixpad_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) | 536 | libscixpad_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS) $(X_LIBS) $(X_EXTRA_LIBS) |
534 | libscixpad_la_SOURCES = $(XPAD_C_SOURCES) $(XPAD_JNI_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(XPAD_CPP_SOURCES) | 537 | libscixpad_la_SOURCES = $(XPAD_C_SOURCES) $(XPAD_JNI_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) $(XPAD_CPP_SOURCES) |
535 | 538 | ||
@@ -1025,7 +1028,7 @@ uninstall-am: uninstall-libscixpad_la_etcDATA \ | |||
1025 | 1028 | ||
1026 | 1029 | ||
1027 | # This target enables tests for Scilab | 1030 | # This target enables tests for Scilab |
1028 | check-local: $(top_builddir)/scilab-bin | 1031 | check-local: $(top_builddir)/scilab-bin test |
1029 | @COMMAND="test_run('$(modulename)');quit";\ | 1032 | @COMMAND="test_run('$(modulename)');quit";\ |