diff options
author | Sylvestre Ledru <sylvestre.ledru@scilab.org> | 2010-12-01 15:15:54 +0100 |
---|---|---|
committer | Vincent COUVERT <vincent.couvert@scilab.org> | 2010-12-02 14:57:43 +0100 |
commit | 79dfeab63b0dd8e66f19fc0d75e33a0e44949ef9 (patch) | |
tree | 42b587a96cfe25b397a9b9c1937cbc774bf160cd | |
parent | d30ad9c8b282c84dfec92832dccb9581a71c88af (diff) | |
download | scilab-79dfeab63b0dd8e66f19fc0d75e33a0e44949ef9.zip scilab-79dfeab63b0dd8e66f19fc0d75e33a0e44949ef9.tar.gz |
Also install java unitary tests (may contain very usefull tests cases)
Change-Id: I2c20849907dbbd814c6df067672a6fe76486dca9
80 files changed, 246 insertions, 130 deletions
diff --git a/scilab/Makefile.in b/scilab/Makefile.in index cf67fd5..652ee8f 100644 --- a/scilab/Makefile.in +++ b/scilab/Makefile.in | |||
@@ -640,13 +640,13 @@ $(top_srcdir)/README_Windows.txt | |||
640 | 640 | ||
641 | iconsdir = $(pkgdatadir)/icons/ | 641 | iconsdir = $(pkgdatadir)/icons/ |
642 | icons_DATA = $(top_srcdir)/icons/scilab.xpm \ | 642 | icons_DATA = $(top_srcdir)/icons/scilab.xpm \ |
643 | icons/puffin_128.xpm \ | 643 | $(top_srcdir)/icons/puffin_128.xpm \ |
644 | icons/puffin_256.xpm \ | 644 | $(top_srcdir)/icons/puffin_256.xpm \ |
645 | icons/puffin_32.xpm \ | 645 | $(top_srcdir)/icons/puffin_32.xpm \ |
646 | icons/puffin_48.xpm \ | 646 | $(top_srcdir)/icons/puffin_48.xpm \ |
647 | icons/puffin.png \ | 647 | $(top_srcdir)/icons/puffin.png \ |
648 | icons/puffin.icns \ | 648 | $(top_srcdir)/icons/puffin.icns \ |
649 | icons/scilab.icns | 649 | $(top_srcdir)/icons/scilab.icns |
650 | 650 | ||
651 | valgrinddir = $(pkgdatadir)/tools/profiling | 651 | valgrinddir = $(pkgdatadir)/tools/profiling |
652 | valgrind_DATA = $(top_srcdir)/tools/profiling/valgrind.supp | 652 | valgrind_DATA = $(top_srcdir)/tools/profiling/valgrind.supp |
@@ -662,6 +662,13 @@ DOCMASK = scilab_*_help.jar | |||
662 | # Path to builded files | 662 | # Path to builded files |
663 | PATHTOHELPFILES = modules/helptools/jar/ | 663 | PATHTOHELPFILES = modules/helptools/jar/ |
664 | 664 | ||
665 | # Path javasci to builded files | ||
666 | PATHTOJAVASCIDOC = modules/javasci/javadoc/ | ||
667 | JAVASCI_DIRS = . resources \ | ||
668 | org/scilab/modules/javasci/ \ | ||
669 | org/scilab/modules/types/ | ||
670 | |||
671 | |||
665 | # Pkgconfig directory | 672 | # Pkgconfig directory |
666 | pkgconfigdir = $(libdir)/pkgconfig | 673 | pkgconfigdir = $(libdir)/pkgconfig |
667 | 674 | ||
@@ -1652,8 +1659,11 @@ macros:$(top_builddir)/scilab-cli-bin $(top_builddir)/bin/scilab-cli | |||
1652 | echo "$(top_builddir)/bin/scilab-cli -ns -f modules/functions/scripts/buildmacros/buildmacros.sce" ; \ | 1659 | echo "$(top_builddir)/bin/scilab-cli -ns -f modules/functions/scripts/buildmacros/buildmacros.sce" ; \ |
1653 | $(top_builddir)/bin/scilab-cli -ns -f modules/functions/scripts/buildmacros/buildmacros.sce) | 1660 | $(top_builddir)/bin/scilab-cli -ns -f modules/functions/scripts/buildmacros/buildmacros.sce) |
1654 | 1661 | ||
1662 | # Build the public Javadoc (javasci v2 and Java/Scilab types) | ||
1663 | # This is not done in the module itself because its needs also the "types" | ||
1664 | # module | ||
1655 | javadoc: | 1665 | javadoc: |
1656 | $(JAVADOC) -noindex -nohelp -nonavbar -notree -d $(top_builddir)/modules/helptools/javaHelp/scilab_en_US_help/javadoc -sourcepath $(top_srcdir)/modules/javasci/src/java:$(top_srcdir)/modules/types/src/java org.scilab.modules.javasci org.scilab.modules.types | 1666 | $(JAVADOC) -noindex -nohelp -nonavbar -notree -d $(top_builddir)/modules/javasci/javadoc -sourcepath $(top_srcdir)/modules/javasci/src/java:$(top_srcdir)/modules/types/src/java org.scilab.modules.javasci org.scilab.modules.types |
1657 | 1667 | ||
1658 | doc: javadoc $(top_builddir)/scilab-bin $(top_builddir)/bin/scilab-adv-cli | 1668 | doc: javadoc $(top_builddir)/scilab-bin $(top_builddir)/bin/scilab-adv-cli |
1659 | @BUILD_HELP_TRUE@ -@if test -x $(top_builddir)/scilab-bin; then \ | 1669 | @BUILD_HELP_TRUE@ -@if test -x $(top_builddir)/scilab-bin; then \ |
@@ -1721,7 +1731,9 @@ clean-doc: | |||
1721 | echo "rm -f $(top_builddir)/modules/scicos/help/en_US/master_help.xml"; \ | 1731 | echo "rm -f $(top_builddir)/modules/scicos/help/en_US/master_help.xml"; \ |
1722 | rm -f $(top_builddir)/modules/scicos/help/en_US/master_help.xml; \ | 1732 | rm -f $(top_builddir)/modules/scicos/help/en_US/master_help.xml; \ |
1723 | echo "rm -f $(top_builddir)/modules/scicos/jar/"; \ | 1733 | echo "rm -f $(top_builddir)/modules/scicos/jar/"; \ |
1724 | rm -rf $(top_builddir)/modules/scicos/jar/ | 1734 | rm -rf $(top_builddir)/modules/scicos/jar/; \ |
1735 | echo "rm -rf $(top_builddir)/modules/javasci/javadoc"; \ | ||
1736 | rm -rf $(top_builddir)/modules/javasci/javadoc; | ||
1725 | 1737 | ||
1726 | clean-tests: | 1738 | clean-tests: |
1727 | @if test -x $(top_builddir)/scilab-cli-bin; then \ | 1739 | @if test -x $(top_builddir)/scilab-cli-bin; then \ |
@@ -1784,6 +1796,16 @@ distclean-generated: | |||
1784 | @BUILD_HELP_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdatadir)/$(PATHTOHELPFILES) ; \ | 1796 | @BUILD_HELP_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdatadir)/$(PATHTOHELPFILES) ; \ |
1785 | @BUILD_HELP_TRUE@ done; \ | 1797 | @BUILD_HELP_TRUE@ done; \ |
1786 | @BUILD_HELP_TRUE@ fi | 1798 | @BUILD_HELP_TRUE@ fi |
1799 | @BUILD_HELP_TRUE@ @$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC); \ | ||
1800 | @BUILD_HELP_TRUE@ echo $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC); \ | ||
1801 | @BUILD_HELP_TRUE@ for dir in $(JAVASCI_DIRS) ; do \ | ||
1802 | @BUILD_HELP_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir; \ | ||
1803 | @BUILD_HELP_TRUE@ echo $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir; \ | ||
1804 | @BUILD_HELP_TRUE@ for file in $(top_builddir)/$(PATHTOJAVASCIDOC)/$(dir)/*; do \ | ||
1805 | @BUILD_HELP_TRUE@ echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir" ; \ | ||
1806 | @BUILD_HELP_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir ; \ | ||
1807 | @BUILD_HELP_TRUE@ done; \ | ||
1808 | @BUILD_HELP_TRUE@ done | ||
1787 | 1809 | ||
1788 | .PHONY: macros localization doc | 1810 | .PHONY: macros localization doc |
1789 | 1811 | ||
diff --git a/scilab/libs/MALLOC/Makefile.in b/scilab/libs/MALLOC/Makefile.in index 4986883..e73a75f 100644 --- a/scilab/libs/MALLOC/Makefile.in +++ b/scilab/libs/MALLOC/Makefile.in | |||
@@ -456,7 +456,7 @@ MACROBUILDMASK = *.sce | |||
456 | # Mask of the Scilab compiled macros | 456 | # Mask of the Scilab compiled macros |
457 | MACROBINMASK = *.bin | 457 | MACROBINMASK = *.bin |
458 | # List of the standard directory for tests | 458 | # List of the standard directory for tests |
459 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 459 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
460 | # Where the demos should be installed | 460 | # Where the demos should be installed |
461 | pkgdemosdir = $(mydatadir) | 461 | pkgdemosdir = $(mydatadir) |
462 | # List of the standard directory for demos | 462 | # List of the standard directory for demos |
diff --git a/scilab/libs/doublylinkedlist/Makefile.in b/scilab/libs/doublylinkedlist/Makefile.in index 7fa0f0d..3d1783e 100644 --- a/scilab/libs/doublylinkedlist/Makefile.in +++ b/scilab/libs/doublylinkedlist/Makefile.in | |||
@@ -446,7 +446,7 @@ MACROBUILDMASK = *.sce | |||
446 | # Mask of the Scilab compiled macros | 446 | # Mask of the Scilab compiled macros |
447 | MACROBINMASK = *.bin | 447 | MACROBINMASK = *.bin |
448 | # List of the standard directory for tests | 448 | # List of the standard directory for tests |
449 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 449 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
450 | # Where the demos should be installed | 450 | # Where the demos should be installed |
451 | pkgdemosdir = $(mydatadir) | 451 | pkgdemosdir = $(mydatadir) |
452 | # List of the standard directory for demos | 452 | # List of the standard directory for demos |
diff --git a/scilab/libs/dynamiclibrary/Makefile.in b/scilab/libs/dynamiclibrary/Makefile.in index b4d03b4..987cf35 100644 --- a/scilab/libs/dynamiclibrary/Makefile.in +++ b/scilab/libs/dynamiclibrary/Makefile.in | |||
@@ -448,7 +448,7 @@ MACROBUILDMASK = *.sce | |||
448 | # Mask of the Scilab compiled macros | 448 | # Mask of the Scilab compiled macros |
449 | MACROBINMASK = *.bin | 449 | MACROBINMASK = *.bin |
450 | # List of the standard directory for tests | 450 | # List of the standard directory for tests |
451 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 451 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
452 | # Where the demos should be installed | 452 | # Where the demos should be installed |
453 | pkgdemosdir = $(mydatadir) | 453 | pkgdemosdir = $(mydatadir) |
454 | # List of the standard directory for demos | 454 | # List of the standard directory for demos |
diff --git a/scilab/libs/hashtable/Makefile.in b/scilab/libs/hashtable/Makefile.in index fa2e45f..58ef93f 100644 --- a/scilab/libs/hashtable/Makefile.in +++ b/scilab/libs/hashtable/Makefile.in | |||
@@ -448,7 +448,7 @@ MACROBUILDMASK = *.sce | |||
448 | # Mask of the Scilab compiled macros | 448 | # Mask of the Scilab compiled macros |
449 | MACROBINMASK = *.bin | 449 | MACROBINMASK = *.bin |
450 | # List of the standard directory for tests | 450 | # List of the standard directory for tests |
451 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 451 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
452 | # Where the demos should be installed | 452 | # Where the demos should be installed |
453 | pkgdemosdir = $(mydatadir) | 453 | pkgdemosdir = $(mydatadir) |
454 | # List of the standard directory for demos | 454 | # List of the standard directory for demos |
diff --git a/scilab/libs/libst/Makefile.in b/scilab/libs/libst/Makefile.in index 69353c3..a21f9b5 100644 --- a/scilab/libs/libst/Makefile.in +++ b/scilab/libs/libst/Makefile.in | |||
@@ -436,7 +436,7 @@ MACROBUILDMASK = *.sce | |||
436 | # Mask of the Scilab compiled macros | 436 | # Mask of the Scilab compiled macros |
437 | MACROBINMASK = *.bin | 437 | MACROBINMASK = *.bin |
438 | # List of the standard directory for tests | 438 | # List of the standard directory for tests |
439 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 439 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
440 | # Where the demos should be installed | 440 | # Where the demos should be installed |
441 | pkgdemosdir = $(mydatadir) | 441 | pkgdemosdir = $(mydatadir) |
442 | # List of the standard directory for demos | 442 | # List of the standard directory for demos |
diff --git a/scilab/modules/action_binding/Makefile.in b/scilab/modules/action_binding/Makefile.in index 267928f..b3a44ad 100644 --- a/scilab/modules/action_binding/Makefile.in +++ b/scilab/modules/action_binding/Makefile.in | |||
@@ -557,7 +557,7 @@ MACROBUILDMASK = *.sce | |||
557 | # Mask of the Scilab compiled macros | 557 | # Mask of the Scilab compiled macros |
558 | MACROBINMASK = *.bin | 558 | MACROBINMASK = *.bin |
559 | # List of the standard directory for tests | 559 | # List of the standard directory for tests |
560 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 560 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
561 | # Where the demos should be installed | 561 | # Where the demos should be installed |
562 | pkgdemosdir = $(mydatadir) | 562 | pkgdemosdir = $(mydatadir) |
563 | # List of the standard directory for demos | 563 | # List of the standard directory for demos |
diff --git a/scilab/modules/api_scilab/Makefile.in b/scilab/modules/api_scilab/Makefile.in index 7b9117c..a0f51c0 100644 --- a/scilab/modules/api_scilab/Makefile.in +++ b/scilab/modules/api_scilab/Makefile.in | |||
@@ -511,7 +511,7 @@ MACROBUILDMASK = *.sce | |||
511 | # Mask of the Scilab compiled macros | 511 | # Mask of the Scilab compiled macros |
512 | MACROBINMASK = *.bin | 512 | MACROBINMASK = *.bin |
513 | # List of the standard directory for tests | 513 | # List of the standard directory for tests |
514 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 514 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
515 | # Where the demos should be installed | 515 | # Where the demos should be installed |
516 | pkgdemosdir = $(mydatadir) | 516 | pkgdemosdir = $(mydatadir) |
517 | # List of the standard directory for demos | 517 | # List of the standard directory for demos |
diff --git a/scilab/modules/arnoldi/Makefile.in b/scilab/modules/arnoldi/Makefile.in index 6a72992..76652e4 100644 --- a/scilab/modules/arnoldi/Makefile.in +++ b/scilab/modules/arnoldi/Makefile.in | |||
@@ -556,7 +556,7 @@ MACROBUILDMASK = *.sce | |||
556 | # Mask of the Scilab compiled macros | 556 | # Mask of the Scilab compiled macros |
557 | MACROBINMASK = *.bin | 557 | MACROBINMASK = *.bin |
558 | # List of the standard directory for tests | 558 | # List of the standard directory for tests |
559 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 559 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
560 | # Where the demos should be installed | 560 | # Where the demos should be installed |
561 | pkgdemosdir = $(mydatadir) | 561 | pkgdemosdir = $(mydatadir) |
562 | # List of the standard directory for demos | 562 | # List of the standard directory for demos |
diff --git a/scilab/modules/atoms/Makefile.in b/scilab/modules/atoms/Makefile.in index e5e444a..42ed8bb 100644 --- a/scilab/modules/atoms/Makefile.in +++ b/scilab/modules/atoms/Makefile.in | |||
@@ -433,7 +433,7 @@ MACROBUILDMASK = *.sce | |||
433 | # Mask of the Scilab compiled macros | 433 | # Mask of the Scilab compiled macros |
434 | MACROBINMASK = *.bin | 434 | MACROBINMASK = *.bin |
435 | # List of the standard directory for tests | 435 | # List of the standard directory for tests |
436 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 436 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
437 | # Where the demos should be installed | 437 | # Where the demos should be installed |
438 | pkgdemosdir = $(mydatadir) | 438 | pkgdemosdir = $(mydatadir) |
439 | # List of the standard directory for demos | 439 | # List of the standard directory for demos |
diff --git a/scilab/modules/boolean/Makefile.in b/scilab/modules/boolean/Makefile.in index ff39a86..8c51fb8 100644 --- a/scilab/modules/boolean/Makefile.in +++ b/scilab/modules/boolean/Makefile.in | |||
@@ -492,7 +492,7 @@ MACROBUILDMASK = *.sce | |||
492 | # Mask of the Scilab compiled macros | 492 | # Mask of the Scilab compiled macros |
493 | MACROBINMASK = *.bin | 493 | MACROBINMASK = *.bin |
494 | # List of the standard directory for tests | 494 | # List of the standard directory for tests |
495 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 495 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
496 | # Where the demos should be installed | 496 | # Where the demos should be installed |
497 | pkgdemosdir = $(mydatadir) | 497 | pkgdemosdir = $(mydatadir) |
498 | # List of the standard directory for demos | 498 | # List of the standard directory for demos |
diff --git a/scilab/modules/cacsd/Makefile.in b/scilab/modules/cacsd/Makefile.in index 6c8eebc..9cd294b 100644 --- a/scilab/modules/cacsd/Makefile.in +++ b/scilab/modules/cacsd/Makefile.in | |||
@@ -766,7 +766,7 @@ MACROBUILDMASK = *.sce | |||
766 | # Mask of the Scilab compiled macros | 766 | # Mask of the Scilab compiled macros |
767 | MACROBINMASK = *.bin | 767 | MACROBINMASK = *.bin |
768 | # List of the standard directory for tests | 768 | # List of the standard directory for tests |
769 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 769 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
770 | # Where the demos should be installed | 770 | # Where the demos should be installed |
771 | pkgdemosdir = $(mydatadir) | 771 | pkgdemosdir = $(mydatadir) |
772 | # List of the standard directory for demos | 772 | # List of the standard directory for demos |
diff --git a/scilab/modules/call_scilab/Makefile.in b/scilab/modules/call_scilab/Makefile.in index 0f270fe..8f08527 100644 --- a/scilab/modules/call_scilab/Makefile.in +++ b/scilab/modules/call_scilab/Makefile.in | |||
@@ -493,7 +493,7 @@ MACROBUILDMASK = *.sce | |||
493 | # Mask of the Scilab compiled macros | 493 | # Mask of the Scilab compiled macros |
494 | MACROBINMASK = *.bin | 494 | MACROBINMASK = *.bin |
495 | # List of the standard directory for tests | 495 | # List of the standard directory for tests |
496 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 496 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
497 | # Where the demos should be installed | 497 | # Where the demos should be installed |
498 | pkgdemosdir = $(mydatadir) | 498 | pkgdemosdir = $(mydatadir) |
499 | # List of the standard directory for demos | 499 | # List of the standard directory for demos |
diff --git a/scilab/modules/commons/Makefile.in b/scilab/modules/commons/Makefile.in index 68e360f..3a2c0ab 100644 --- a/scilab/modules/commons/Makefile.in +++ b/scilab/modules/commons/Makefile.in | |||
@@ -475,7 +475,7 @@ MACROBUILDMASK = *.sce | |||
475 | # Mask of the Scilab compiled macros | 475 | # Mask of the Scilab compiled macros |
476 | MACROBINMASK = *.bin | 476 | MACROBINMASK = *.bin |
477 | # List of the standard directory for tests | 477 | # List of the standard directory for tests |
478 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 478 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
479 | # Where the demos should be installed | 479 | # Where the demos should be installed |
480 | pkgdemosdir = $(mydatadir) | 480 | pkgdemosdir = $(mydatadir) |
481 | # List of the standard directory for demos | 481 | # List of the standard directory for demos |
diff --git a/scilab/modules/compatibility_functions/Makefile.in b/scilab/modules/compatibility_functions/Makefile.in index 8afea7b..db5457c 100644 --- a/scilab/modules/compatibility_functions/Makefile.in +++ b/scilab/modules/compatibility_functions/Makefile.in | |||
@@ -407,7 +407,7 @@ MACROBUILDMASK = *.sce | |||
407 | # Mask of the Scilab compiled macros | 407 | # Mask of the Scilab compiled macros |
408 | MACROBINMASK = *.bin | 408 | MACROBINMASK = *.bin |
409 | # List of the standard directory for tests | 409 | # List of the standard directory for tests |
410 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 410 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
411 | # Where the demos should be installed | 411 | # Where the demos should be installed |
412 | pkgdemosdir = $(mydatadir) | 412 | pkgdemosdir = $(mydatadir) |
413 | # List of the standard directory for demos | 413 | # List of the standard directory for demos |
diff --git a/scilab/modules/completion/Makefile.in b/scilab/modules/completion/Makefile.in index 049d112..fd192f7 100644 --- a/scilab/modules/completion/Makefile.in +++ b/scilab/modules/completion/Makefile.in | |||
@@ -556,7 +556,7 @@ MACROBUILDMASK = *.sce | |||
556 | # Mask of the Scilab compiled macros | 556 | # Mask of the Scilab compiled macros |
557 | MACROBINMASK = *.bin | 557 | MACROBINMASK = *.bin |
558 | # List of the standard directory for tests | 558 | # List of the standard directory for tests |
559 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 559 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
560 | # Where the demos should be installed | 560 | # Where the demos should be installed |
561 | pkgdemosdir = $(mydatadir) | 561 | pkgdemosdir = $(mydatadir) |
562 | # List of the standard directory for demos | 562 | # List of the standard directory for demos |
diff --git a/scilab/modules/console/Makefile.in b/scilab/modules/console/Makefile.in index 0228ceb..ebfad89 100644 --- a/scilab/modules/console/Makefile.in +++ b/scilab/modules/console/Makefile.in | |||
@@ -559,7 +559,7 @@ MACROBUILDMASK = *.sce | |||
559 | # Mask of the Scilab compiled macros | 559 | # Mask of the Scilab compiled macros |
560 | MACROBINMASK = *.bin | 560 | MACROBINMASK = *.bin |
561 | # List of the standard directory for tests | 561 | # List of the standard directory for tests |
562 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 562 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
563 | # Where the demos should be installed | 563 | # Where the demos should be installed |
564 | pkgdemosdir = $(mydatadir) | 564 | pkgdemosdir = $(mydatadir) |
565 | # List of the standard directory for demos | 565 | # List of the standard directory for demos |
diff --git a/scilab/modules/core/Makefile.in b/scilab/modules/core/Makefile.in index 8ea82db..f50b8d0 100644 --- a/scilab/modules/core/Makefile.in +++ b/scilab/modules/core/Makefile.in | |||
@@ -925,7 +925,7 @@ MACROBUILDMASK = *.sce | |||
925 | # Mask of the Scilab compiled macros | 925 | # Mask of the Scilab compiled macros |
926 | MACROBINMASK = *.bin | 926 | MACROBINMASK = *.bin |
927 | # List of the standard directory for tests | 927 | # List of the standard directory for tests |
928 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 928 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
929 | # Where the demos should be installed | 929 | # Where the demos should be installed |
930 | pkgdemosdir = $(mydatadir) | 930 | pkgdemosdir = $(mydatadir) |
931 | # List of the standard directory for demos | 931 | # List of the standard directory for demos |
diff --git a/scilab/modules/data_structures/Makefile.in b/scilab/modules/data_structures/Makefile.in index 84c8da3..5d1a559 100644 --- a/scilab/modules/data_structures/Makefile.in +++ b/scilab/modules/data_structures/Makefile.in | |||
@@ -549,7 +549,7 @@ MACROBUILDMASK = *.sce | |||
549 | # Mask of the Scilab compiled macros | 549 | # Mask of the Scilab compiled macros |
550 | MACROBINMASK = *.bin | 550 | MACROBINMASK = *.bin |
551 | # List of the standard directory for tests | 551 | # List of the standard directory for tests |
552 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 552 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
553 | # Where the demos should be installed | 553 | # Where the demos should be installed |
554 | pkgdemosdir = $(mydatadir) | 554 | pkgdemosdir = $(mydatadir) |
555 | # List of the standard directory for demos | 555 | # List of the standard directory for demos |
diff --git a/scilab/modules/demo_tools/Makefile.in b/scilab/modules/demo_tools/Makefile.in index b9b3ad3..e16e6fc 100644 --- a/scilab/modules/demo_tools/Makefile.in +++ b/scilab/modules/demo_tools/Makefile.in | |||
@@ -421,7 +421,7 @@ MACROBUILDMASK = *.sce | |||
421 | # Mask of the Scilab compiled macros | 421 | # Mask of the Scilab compiled macros |
422 | MACROBINMASK = *.bin | 422 | MACROBINMASK = *.bin |
423 | # List of the standard directory for tests | 423 | # List of the standard directory for tests |
424 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 424 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
425 | # Where the demos should be installed | 425 | # Where the demos should be installed |
426 | pkgdemosdir = $(mydatadir) | 426 | pkgdemosdir = $(mydatadir) |
427 | # List of the standard directory for demos | 427 | # List of the standard directory for demos |
diff --git a/scilab/modules/development_tools/Makefile.in b/scilab/modules/development_tools/Makefile.in index 899c0e9..d9ab640 100644 --- a/scilab/modules/development_tools/Makefile.in +++ b/scilab/modules/development_tools/Makefile.in | |||
@@ -415,7 +415,7 @@ MACROBUILDMASK = *.sce | |||
415 | # Mask of the Scilab compiled macros | 415 | # Mask of the Scilab compiled macros |
416 | MACROBINMASK = *.bin | 416 | MACROBINMASK = *.bin |
417 | # List of the standard directory for tests | 417 | # List of the standard directory for tests |
418 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 418 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
419 | # Where the demos should be installed | 419 | # Where the demos should be installed |
420 | pkgdemosdir = $(mydatadir) | 420 | pkgdemosdir = $(mydatadir) |
421 | # List of the standard directory for demos | 421 | # List of the standard directory for demos |
diff --git a/scilab/modules/differential_equations/Makefile.in b/scilab/modules/differential_equations/Makefile.in index e8c28ce..a57dfd2 100644 --- a/scilab/modules/differential_equations/Makefile.in +++ b/scilab/modules/differential_equations/Makefile.in | |||
@@ -638,7 +638,7 @@ MACROBUILDMASK = *.sce | |||
638 | # Mask of the Scilab compiled macros | 638 | # Mask of the Scilab compiled macros |
639 | MACROBINMASK = *.bin | 639 | MACROBINMASK = *.bin |
640 | # List of the standard directory for tests | 640 | # List of the standard directory for tests |
641 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 641 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
642 | # Where the demos should be installed | 642 | # Where the demos should be installed |
643 | pkgdemosdir = $(mydatadir) | 643 | pkgdemosdir = $(mydatadir) |
644 | # List of the standard directory for demos | 644 | # List of the standard directory for demos |
diff --git a/scilab/modules/double/Makefile.in b/scilab/modules/double/Makefile.in index a6096e2..5fbbbed 100644 --- a/scilab/modules/double/Makefile.in +++ b/scilab/modules/double/Makefile.in | |||
@@ -491,7 +491,7 @@ MACROBUILDMASK = *.sce | |||
491 | # Mask of the Scilab compiled macros | 491 | # Mask of the Scilab compiled macros |
492 | MACROBINMASK = *.bin | 492 | MACROBINMASK = *.bin |
493 | # List of the standard directory for tests | 493 | # List of the standard directory for tests |
494 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 494 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
495 | # Where the demos should be installed | 495 | # Where the demos should be installed |
496 | pkgdemosdir = $(mydatadir) | 496 | pkgdemosdir = $(mydatadir) |
497 | # List of the standard directory for demos | 497 | # List of the standard directory for demos |
diff --git a/scilab/modules/dynamic_link/Makefile.in b/scilab/modules/dynamic_link/Makefile.in index e4429f1..c547c81 100644 --- a/scilab/modules/dynamic_link/Makefile.in +++ b/scilab/modules/dynamic_link/Makefile.in | |||
@@ -537,7 +537,7 @@ MACROBUILDMASK = *.sce | |||
537 | # Mask of the Scilab compiled macros | 537 | # Mask of the Scilab compiled macros |
538 | MACROBINMASK = *.bin | 538 | MACROBINMASK = *.bin |
539 | # List of the standard directory for tests | 539 | # List of the standard directory for tests |
540 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 540 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
541 | # Where the demos should be installed | 541 | # Where the demos should be installed |
542 | pkgdemosdir = $(mydatadir) | 542 | pkgdemosdir = $(mydatadir) |
543 | # List of the standard directory for demos | 543 | # List of the standard directory for demos |
diff --git a/scilab/modules/elementary_functions/Makefile.in b/scilab/modules/elementary_functions/Makefile.in index 61bcff6..e080df8 100644 --- a/scilab/modules/elementary_functions/Makefile.in +++ b/scilab/modules/elementary_functions/Makefile.in | |||
@@ -1240,7 +1240,7 @@ MACROBUILDMASK = *.sce | |||
1240 | # Mask of the Scilab compiled macros | 1240 | # Mask of the Scilab compiled macros |
1241 | MACROBINMASK = *.bin | 1241 | MACROBINMASK = *.bin |
1242 | # List of the standard directory for tests | 1242 | # List of the standard directory for tests |
1243 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 1243 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
1244 | # Where the demos should be installed | 1244 | # Where the demos should be installed |
1245 | pkgdemosdir = $(mydatadir) | 1245 | pkgdemosdir = $(mydatadir) |
1246 | # List of the standard directory for demos | 1246 | # List of the standard directory for demos |
diff --git a/scilab/modules/fftw/Makefile.in b/scilab/modules/fftw/Makefile.in index b317d5a..d53c8d9 100644 --- a/scilab/modules/fftw/Makefile.in +++ b/scilab/modules/fftw/Makefile.in | |||
@@ -518,7 +518,7 @@ MACROBUILDMASK = *.sce | |||
518 | # Mask of the Scilab compiled macros | 518 | # Mask of the Scilab compiled macros |
519 | MACROBINMASK = *.bin | 519 | MACROBINMASK = *.bin |
520 | # List of the standard directory for tests | 520 | # List of the standard directory for tests |
521 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 521 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
522 | # Where the demos should be installed | 522 | # Where the demos should be installed |
523 | pkgdemosdir = $(mydatadir) | 523 | pkgdemosdir = $(mydatadir) |
524 | # List of the standard directory for demos | 524 | # List of the standard directory for demos |
diff --git a/scilab/modules/fileio/Makefile.in b/scilab/modules/fileio/Makefile.in index 00b5081..369e081 100644 --- a/scilab/modules/fileio/Makefile.in +++ b/scilab/modules/fileio/Makefile.in | |||
@@ -650,7 +650,7 @@ MACROBUILDMASK = *.sce | |||
650 | # Mask of the Scilab compiled macros | 650 | # Mask of the Scilab compiled macros |
651 | MACROBINMASK = *.bin | 651 | MACROBINMASK = *.bin |
652 | # List of the standard directory for tests | 652 | # List of the standard directory for tests |
653 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 653 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
654 | # Where the demos should be installed | 654 | # Where the demos should be installed |
655 | pkgdemosdir = $(mydatadir) | 655 | pkgdemosdir = $(mydatadir) |
656 | # List of the standard directory for demos | 656 | # List of the standard directory for demos |
diff --git a/scilab/modules/functions/Makefile.in b/scilab/modules/functions/Makefile.in index 096c4eb..1becdfa 100644 --- a/scilab/modules/functions/Makefile.in +++ b/scilab/modules/functions/Makefile.in | |||
@@ -514,7 +514,7 @@ MACROBUILDMASK = *.sce | |||
514 | # Mask of the Scilab compiled macros | 514 | # Mask of the Scilab compiled macros |
515 | MACROBINMASK = *.bin | 515 | MACROBINMASK = *.bin |
516 | # List of the standard directory for tests | 516 | # List of the standard directory for tests |
517 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 517 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
518 | # Where the demos should be installed | 518 | # Where the demos should be installed |
519 | pkgdemosdir = $(mydatadir) | 519 | pkgdemosdir = $(mydatadir) |
520 | # List of the standard directory for demos | 520 | # List of the standard directory for demos |
diff --git a/scilab/modules/genetic_algorithms/Makefile.in b/scilab/modules/genetic_algorithms/Makefile.in index 62094aa..d32cc95 100644 --- a/scilab/modules/genetic_algorithms/Makefile.in +++ b/scilab/modules/genetic_algorithms/Makefile.in | |||
@@ -420,7 +420,7 @@ MACROBUILDMASK = *.sce | |||
420 | # Mask of the Scilab compiled macros | 420 | # Mask of the Scilab compiled macros |
421 | MACROBINMASK = *.bin | 421 | MACROBINMASK = *.bin |
422 | # List of the standard directory for tests | 422 | # List of the standard directory for tests |
423 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 423 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
424 | # Where the demos should be installed | 424 | # Where the demos should be installed |
425 | pkgdemosdir = $(mydatadir) | 425 | pkgdemosdir = $(mydatadir) |
426 | # List of the standard directory for demos | 426 | # List of the standard directory for demos |
diff --git a/scilab/modules/graph/Makefile.in b/scilab/modules/graph/Makefile.in index b684ee4..40ab1f4 100644 --- a/scilab/modules/graph/Makefile.in +++ b/scilab/modules/graph/Makefile.in | |||
@@ -458,7 +458,7 @@ MACROBUILDMASK = *.sce | |||
458 | # Mask of the Scilab compiled macros | 458 | # Mask of the Scilab compiled macros |
459 | MACROBINMASK = *.bin | 459 | MACROBINMASK = *.bin |
460 | # List of the standard directory for tests | 460 | # List of the standard directory for tests |
461 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 461 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
462 | # Where the demos should be installed | 462 | # Where the demos should be installed |
463 | pkgdemosdir = $(mydatadir) | 463 | pkgdemosdir = $(mydatadir) |
464 | # List of the standard directory for demos | 464 | # List of the standard directory for demos |
diff --git a/scilab/modules/graphic_export/Makefile.in b/scilab/modules/graphic_export/Makefile.in index 1aa25a7..d9ac404 100644 --- a/scilab/modules/graphic_export/Makefile.in +++ b/scilab/modules/graphic_export/Makefile.in | |||
@@ -574,7 +574,7 @@ MACROBUILDMASK = *.sce | |||
574 | # Mask of the Scilab compiled macros | 574 | # Mask of the Scilab compiled macros |
575 | MACROBINMASK = *.bin | 575 | MACROBINMASK = *.bin |
576 | # List of the standard directory for tests | 576 | # List of the standard directory for tests |
577 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 577 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
578 | # Where the demos should be installed | 578 | # Where the demos should be installed |
579 | pkgdemosdir = $(mydatadir) | 579 | pkgdemosdir = $(mydatadir) |
580 | # List of the standard directory for demos | 580 | # List of the standard directory for demos |
diff --git a/scilab/modules/graphics/Makefile.in b/scilab/modules/graphics/Makefile.in index cb89f25..5155e85 100644 --- a/scilab/modules/graphics/Makefile.in +++ b/scilab/modules/graphics/Makefile.in | |||
@@ -1303,7 +1303,7 @@ MACROBUILDMASK = *.sce | |||
1303 | # Mask of the Scilab compiled macros | 1303 | # Mask of the Scilab compiled macros |
1304 | MACROBINMASK = *.bin | 1304 | MACROBINMASK = *.bin |
1305 | # List of the standard directory for tests | 1305 | # List of the standard directory for tests |
1306 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 1306 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
1307 | # Where the demos should be installed | 1307 | # Where the demos should be installed |
1308 | pkgdemosdir = $(mydatadir) | 1308 | pkgdemosdir = $(mydatadir) |
1309 | # List of the standard directory for demos | 1309 | # List of the standard directory for demos |
diff --git a/scilab/modules/gui/Makefile.in b/scilab/modules/gui/Makefile.in index 0d745b9..7672229 100644 --- a/scilab/modules/gui/Makefile.in +++ b/scilab/modules/gui/Makefile.in | |||
@@ -594,7 +594,7 @@ MACROBUILDMASK = *.sce | |||
594 | # Mask of the Scilab compiled macros | 594 | # Mask of the Scilab compiled macros |
595 | MACROBINMASK = *.bin | 595 | MACROBINMASK = *.bin |
596 | # List of the standard directory for tests | 596 | # List of the standard directory for tests |
597 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 597 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
598 | # Where the demos should be installed | 598 | # Where the demos should be installed |
599 | pkgdemosdir = $(mydatadir) | 599 | pkgdemosdir = $(mydatadir) |
600 | # List of the standard directory for demos | 600 | # List of the standard directory for demos |
diff --git a/scilab/modules/hdf5/Makefile.in b/scilab/modules/hdf5/Makefile.in index 177e279..2d99388 100644 --- a/scilab/modules/hdf5/Makefile.in +++ b/scilab/modules/hdf5/Makefile.in | |||
@@ -586,7 +586,7 @@ MACROBUILDMASK = *.sce | |||
586 | # Mask of the Scilab compiled macros | 586 | # Mask of the Scilab compiled macros |
587 | MACROBINMASK = *.bin | 587 | MACROBINMASK = *.bin |
588 | # List of the standard directory for tests | 588 | # List of the standard directory for tests |
589 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 589 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
590 | # Where the demos should be installed | 590 | # Where the demos should be installed |
591 | pkgdemosdir = $(mydatadir) | 591 | pkgdemosdir = $(mydatadir) |
592 | # List of the standard directory for demos | 592 | # List of the standard directory for demos |
diff --git a/scilab/modules/helptools/Makefile.in b/scilab/modules/helptools/Makefile.in index fd9603e..05b4c89 100644 --- a/scilab/modules/helptools/Makefile.in +++ b/scilab/modules/helptools/Makefile.in | |||
@@ -620,7 +620,7 @@ MACROBUILDMASK = *.sce | |||
620 | # Mask of the Scilab compiled macros | 620 | # Mask of the Scilab compiled macros |
621 | MACROBINMASK = *.bin | 621 | MACROBINMASK = *.bin |
622 | # List of the standard directory for tests | 622 | # List of the standard directory for tests |
623 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 623 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
624 | # Where the demos should be installed | 624 | # Where the demos should be installed |
625 | pkgdemosdir = $(mydatadir) | 625 | pkgdemosdir = $(mydatadir) |
626 | # List of the standard directory for demos | 626 | # List of the standard directory for demos |
diff --git a/scilab/modules/history_browser/Makefile.in b/scilab/modules/history_browser/Makefile.in index 6a971dc..e5e38ac 100644 --- a/scilab/modules/history_browser/Makefile.in +++ b/scilab/modules/history_browser/Makefile.in | |||
@@ -489,7 +489,7 @@ MACROBUILDMASK = *.sce | |||
489 | # Mask of the Scilab compiled macros | 489 | # Mask of the Scilab compiled macros |
490 | MACROBINMASK = *.bin | 490 | MACROBINMASK = *.bin |
491 | # List of the standard directory for tests | 491 | # List of the standard directory for tests |
492 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 492 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
493 | # Where the demos should be installed | 493 | # Where the demos should be installed |
494 | pkgdemosdir = $(mydatadir) | 494 | pkgdemosdir = $(mydatadir) |
495 | # List of the standard directory for demos | 495 | # List of the standard directory for demos |
diff --git a/scilab/modules/history_manager/Makefile.in b/scilab/modules/history_manager/Makefile.in index 811f317..a92d619 100644 --- a/scilab/modules/history_manager/Makefile.in +++ b/scilab/modules/history_manager/Makefile.in | |||
@@ -588,7 +588,7 @@ MACROBUILDMASK = *.sce | |||
588 | # Mask of the Scilab compiled macros | 588 | # Mask of the Scilab compiled macros |
589 | MACROBINMASK = *.bin | 589 | MACROBINMASK = *.bin |
590 | # List of the standard directory for tests | 590 | # List of the standard directory for tests |
591 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 591 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
592 | # Where the demos should be installed | 592 | # Where the demos should be installed |
593 | pkgdemosdir = $(mydatadir) | 593 | pkgdemosdir = $(mydatadir) |
594 | # List of the standard directory for demos | 594 | # List of the standard directory for demos |
diff --git a/scilab/modules/integer/Makefile.in b/scilab/modules/integer/Makefile.in index f68fa72..c866cae 100644 --- a/scilab/modules/integer/Makefile.in +++ b/scilab/modules/integer/Makefile.in | |||
@@ -619,7 +619,7 @@ MACROBUILDMASK = *.sce | |||
619 | # Mask of the Scilab compiled macros | 619 | # Mask of the Scilab compiled macros |
620 | MACROBINMASK = *.bin | 620 | MACROBINMASK = *.bin |
621 | # List of the standard directory for tests | 621 | # List of the standard directory for tests |
622 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 622 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
623 | # Where the demos should be installed | 623 | # Where the demos should be installed |
624 | pkgdemosdir = $(mydatadir) | 624 | pkgdemosdir = $(mydatadir) |
625 | # List of the standard directory for demos | 625 | # List of the standard directory for demos |
diff --git a/scilab/modules/interpolation/Makefile.in b/scilab/modules/interpolation/Makefile.in index 0f5be2d..a03d666 100644 --- a/scilab/modules/interpolation/Makefile.in +++ b/scilab/modules/interpolation/Makefile.in | |||
@@ -517,7 +517,7 @@ MACROBUILDMASK = *.sce | |||
517 | # Mask of the Scilab compiled macros | 517 | # Mask of the Scilab compiled macros |
518 | MACROBINMASK = *.bin | 518 | MACROBINMASK = *.bin |
519 | # List of the standard directory for tests | 519 | # List of the standard directory for tests |
520 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 520 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
521 | # Where the demos should be installed | 521 | # Where the demos should be installed |
522 | pkgdemosdir = $(mydatadir) | 522 | pkgdemosdir = $(mydatadir) |
523 | # List of the standard directory for demos | 523 | # List of the standard directory for demos |
diff --git a/scilab/modules/intersci/Makefile.in b/scilab/modules/intersci/Makefile.in index a12f6d1..79e3da0 100644 --- a/scilab/modules/intersci/Makefile.in +++ b/scilab/modules/intersci/Makefile.in | |||
@@ -495,7 +495,7 @@ MACROBUILDMASK = *.sce | |||
495 | # Mask of the Scilab compiled macros | 495 | # Mask of the Scilab compiled macros |
496 | MACROBINMASK = *.bin | 496 | MACROBINMASK = *.bin |
497 | # List of the standard directory for tests | 497 | # List of the standard directory for tests |
498 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 498 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
499 | # Where the demos should be installed | 499 | # Where the demos should be installed |
500 | pkgdemosdir = $(mydatadir) | 500 | pkgdemosdir = $(mydatadir) |
501 | # List of the standard directory for demos | 501 | # List of the standard directory for demos |
diff --git a/scilab/modules/io/Makefile.in b/scilab/modules/io/Makefile.in index 8da9dbc..fd07094 100644 --- a/scilab/modules/io/Makefile.in +++ b/scilab/modules/io/Makefile.in | |||
@@ -530,7 +530,7 @@ MACROBUILDMASK = *.sce | |||
530 | # Mask of the Scilab compiled macros | 530 | # Mask of the Scilab compiled macros |
531 | MACROBINMASK = *.bin | 531 | MACROBINMASK = *.bin |
532 | # List of the standard directory for tests | 532 | # List of the standard directory for tests |
533 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 533 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
534 | # Where the demos should be installed | 534 | # Where the demos should be installed |
535 | pkgdemosdir = $(mydatadir) | 535 | pkgdemosdir = $(mydatadir) |
536 | # List of the standard directory for demos | 536 | # List of the standard directory for demos |
diff --git a/scilab/modules/javasci/Makefile.in b/scilab/modules/javasci/Makefile.in index bbb6124..4e7b4fc 100644 --- a/scilab/modules/javasci/Makefile.in +++ b/scilab/modules/javasci/Makefile.in | |||
@@ -118,7 +118,10 @@ am__installdirs = "$(DESTDIR)$(pkglibdir)" \ | |||
118 | "$(DESTDIR)$(libjavasci_la_etcdir)" \ | 118 | "$(DESTDIR)$(libjavasci_la_etcdir)" \ |
119 | "$(DESTDIR)$(libjavasci_la_rootdir)" \ | 119 | "$(DESTDIR)$(libjavasci_la_rootdir)" \ |
120 | "$(DESTDIR)$(libsciscipad_la_imagesdir)" \ | 120 | "$(DESTDIR)$(libsciscipad_la_imagesdir)" \ |
121 | "$(DESTDIR)$(libsciscipad_la_specialtestdir)" | 121 | "$(DESTDIR)$(libsciscipad_la_javadocdir)" \ |
122 | "$(DESTDIR)$(libsciscipad_la_javadocjavascidir)" \ | ||
123 | "$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)" \ | ||
124 | "$(DESTDIR)$(libsciscipad_la_javadoctypesdir)" | ||
122 | LTLIBRARIES = $(pkglib_LTLIBRARIES) | 125 | LTLIBRARIES = $(pkglib_LTLIBRARIES) |
123 | @JAVASCI_TRUE@libjavasci_la_DEPENDENCIES = \ | 126 | @JAVASCI_TRUE@libjavasci_la_DEPENDENCIES = \ |
124 | @JAVASCI_TRUE@ $(top_builddir)/libs/MALLOC/libscimalloc.la \ | 127 | @JAVASCI_TRUE@ $(top_builddir)/libs/MALLOC/libscimalloc.la \ |
@@ -177,8 +180,10 @@ SOURCES = $(libjavasci_la_SOURCES) $(libjavasci2_la_SOURCES) | |||
177 | DIST_SOURCES = $(am__libjavasci_la_SOURCES_DIST) \ | 180 | DIST_SOURCES = $(am__libjavasci_la_SOURCES_DIST) \ |
178 | $(am__libjavasci2_la_SOURCES_DIST) | 181 | $(am__libjavasci2_la_SOURCES_DIST) |
179 | DATA = $(libjavasci_la_etc_DATA) $(libjavasci_la_root_DATA) \ | 182 | DATA = $(libjavasci_la_etc_DATA) $(libjavasci_la_root_DATA) \ |
180 | $(libsciscipad_la_images_DATA) \ | 183 | $(libsciscipad_la_images_DATA) $(libsciscipad_la_javadoc_DATA) \ |
181 | $(libsciscipad_la_specialtest_DATA) | 184 | $(libsciscipad_la_javadocjavasci_DATA) \ |
185 | $(libsciscipad_la_javadocresources_DATA) \ | ||
186 | $(libsciscipad_la_javadoctypes_DATA) | ||
182 | ETAGS = etags | 187 | ETAGS = etags |
183 | CTAGS = ctags | 188 | CTAGS = ctags |
184 | DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) | 189 | DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) |
@@ -515,30 +520,47 @@ libjavasci_la_etc_DATA = etc/javasci.quit etc/javasci.start | |||
515 | @JAVASCI_TRUE@help/images/SciBooleanClass.gif | 520 | @JAVASCI_TRUE@help/images/SciBooleanClass.gif |
516 | 521 | ||
517 | 522 | ||
518 | ### javasci : special tests ### | 523 | ### javasci : javadoc ### |
519 | @JAVASCI_TRUE@libsciscipad_la_specialtestdir = $(mydatadir)/tests | 524 | @JAVASCI_TRUE@libsciscipad_la_javadocdir = $(mydatadir)/javadoc/ |
520 | @JAVASCI_TRUE@libsciscipad_la_specialtest_DATA = tests/unit_tests/Boolean.java \ | 525 | @JAVASCI_TRUE@libsciscipad_la_javadoc_DATA = javadoc/overview-summary.html \ |
521 | @JAVASCI_TRUE@tests/unit_tests/Boolean.dia.ref \ | 526 | @JAVASCI_TRUE@javadoc/deprecated-list.html \ |
522 | @JAVASCI_TRUE@tests/unit_tests/BooleanArray.java \ | 527 | @JAVASCI_TRUE@javadoc/allclasses-frame.html \ |
523 | @JAVASCI_TRUE@tests/unit_tests/BooleanArray.dia.ref \ | 528 | @JAVASCI_TRUE@javadoc/serialized-form.html \ |
524 | @JAVASCI_TRUE@tests/unit_tests/Clf.java \ | 529 | @JAVASCI_TRUE@javadoc/stylesheet.css \ |
525 | @JAVASCI_TRUE@tests/unit_tests/Clf.dia.ref \ | 530 | @JAVASCI_TRUE@javadoc/constant-values.html \ |
526 | @JAVASCI_TRUE@tests/unit_tests/Disp.java \ | 531 | @JAVASCI_TRUE@javadoc/package-list \ |
527 | @JAVASCI_TRUE@tests/unit_tests/Disp.dia.ref \ | 532 | @JAVASCI_TRUE@javadoc/overview-frame.html \ |
528 | @JAVASCI_TRUE@tests/unit_tests/Exec.java \ | 533 | @JAVASCI_TRUE@javadoc/allclasses-noframe.html \ |
529 | @JAVASCI_TRUE@tests/unit_tests/Exec.dia.ref \ | 534 | @JAVASCI_TRUE@javadoc/index.html |
530 | @JAVASCI_TRUE@tests/unit_tests/Real1.java \ | 535 | |
531 | @JAVASCI_TRUE@tests/unit_tests/Real1.dia.ref \ | 536 | @JAVASCI_TRUE@libsciscipad_la_javadocresourcesdir = $(mydatadir)/javadoc/resources/ |
532 | @JAVASCI_TRUE@tests/unit_tests/Real2.java \ | 537 | @JAVASCI_TRUE@libsciscipad_la_javadocresources_DATA = javadoc/resources/inherit.gif |
533 | @JAVASCI_TRUE@tests/unit_tests/Real2.dia.ref \ | 538 | @JAVASCI_TRUE@libsciscipad_la_javadocjavascidir = $(mydatadir)/javadoc/org/scilab/modules/javasci/ |
534 | @JAVASCI_TRUE@tests/unit_tests/Real3.dia.ref \ | 539 | @JAVASCI_TRUE@libsciscipad_la_javadocjavasci_DATA = javadoc/org/scilab/modules/javasci/JavasciException.ScilabInternalException.html \ |
535 | @JAVASCI_TRUE@tests/unit_tests/Real3.java \ | 540 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/JavasciException.UndefinedVariableException.html \ |
536 | @JAVASCI_TRUE@tests/unit_tests/String1.java \ | 541 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/Call_Scilab.html \ |
537 | @JAVASCI_TRUE@tests/unit_tests/String1.dia.ref \ | 542 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/JavasciException.UnknownTypeException.html \ |
538 | @JAVASCI_TRUE@tests/unit_tests/Strings1.dia.ref \ | 543 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/package-frame.html \ |
539 | @JAVASCI_TRUE@tests/unit_tests/Strings1.java \ | 544 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/JavasciException.UnsupportedTypeException.html \ |
540 | @JAVASCI_TRUE@tests/unit_tests/Strings2.java \ | 545 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/package-summary.html \ |
541 | @JAVASCI_TRUE@tests/unit_tests/Strings2.dia.ref | 546 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/Scilab.html \ |
547 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/JavasciException.InitializationException.html \ | ||
548 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/JavasciException.html \ | ||
549 | @JAVASCI_TRUE@javadoc/org/scilab/modules/javasci/JavasciException.AlreadyRunningException.html | ||
550 | |||
551 | @JAVASCI_TRUE@libsciscipad_la_javadoctypesdir = $(mydatadir)/javadoc/org/scilab/modules/javasci/ | ||
552 | @JAVASCI_TRUE@libsciscipad_la_javadoctypes_DATA = javadoc/org/scilab/modules/types/package-frame.html \ | ||
553 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabIntegerTypeEnum.html \ | ||
554 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/package-summary.html \ | ||
555 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabTypeEnum.html \ | ||
556 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabDouble.html \ | ||
557 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabInteger.html \ | ||
558 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabString.html \ | ||
559 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabTList.html \ | ||
560 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabList.html \ | ||
561 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabMList.html \ | ||
562 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabType.html \ | ||
563 | @JAVASCI_TRUE@javadoc/org/scilab/modules/types/ScilabBoolean.html | ||
542 | 564 | ||
543 | @JAVASCI_TRUE@BUILT_SOURCES = $(am__append_1) | 565 | @JAVASCI_TRUE@BUILT_SOURCES = $(am__append_1) |
544 | 566 | ||
@@ -593,7 +615,7 @@ libjavasci_la_etc_DATA = etc/javasci.quit etc/javasci.start | |||
593 | # Mask of the Scilab compiled macros | 615 | # Mask of the Scilab compiled macros |
594 | @JAVASCI_TRUE@MACROBINMASK = *.bin | 616 | @JAVASCI_TRUE@MACROBINMASK = *.bin |
595 | # List of the standard directory for tests | 617 | # List of the standard directory for tests |
596 | @JAVASCI_TRUE@TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 618 | @JAVASCI_TRUE@TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
597 | # Where the demos should be installed | 619 | # Where the demos should be installed |
598 | @JAVASCI_TRUE@pkgdemosdir = $(mydatadir) | 620 | @JAVASCI_TRUE@pkgdemosdir = $(mydatadir) |
599 | # List of the standard directory for demos | 621 | # List of the standard directory for demos |
@@ -868,26 +890,86 @@ uninstall-libsciscipad_la_imagesDATA: | |||
868 | test -n "$$files" || exit 0; \ | 890 | test -n "$$files" || exit 0; \ |
869 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_imagesdir)' && rm -f" $$files ")"; \ | 891 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_imagesdir)' && rm -f" $$files ")"; \ |
870 | cd "$(DESTDIR)$(libsciscipad_la_imagesdir)" && rm -f $$files | 892 | cd "$(DESTDIR)$(libsciscipad_la_imagesdir)" && rm -f $$files |
871 | install-libsciscipad_la_specialtestDATA: $(libsciscipad_la_specialtest_DATA) | 893 | install-libsciscipad_la_javadocDATA: $(libsciscipad_la_javadoc_DATA) |
872 | @$(NORMAL_INSTALL) | 894 | @$(NORMAL_INSTALL) |
873 | test -z "$(libsciscipad_la_specialtestdir)" || $(MKDIR_P) "$(DESTDIR)$(libsciscipad_la_specialtestdir)" | 895 | test -z "$(libsciscipad_la_javadocdir)" || $(MKDIR_P) "$(DESTDIR)$(libsciscipad_la_javadocdir)" |
874 | @list='$(libsciscipad_la_specialtest_DATA)'; test -n "$(libsciscipad_la_specialtestdir)" || list=; \ | 896 | @list='$(libsciscipad_la_javadoc_DATA)'; test -n "$(libsciscipad_la_javadocdir)" || list=; \ |
875 | for p in $$list; do \ | 897 | for p in $$list; do \ |
876 | if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ | 898 | if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ |
877 | echo "$$d$$p"; \ | 899 | echo "$$d$$p"; \ |
878 | done | $(am__base_list) | \ | 900 | done | $(am__base_list) | \ |
879 | while read files; do \ | 901 | while read files; do \ |
880 | echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libsciscipad_la_specialtestdir)'"; \ | 902 | echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libsciscipad_la_javadocdir)'"; \ |
881 | $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciscipad_la_specialtestdir)" || exit $$?; \ | 903 | $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciscipad_la_javadocdir)" || exit $$?; \ |
882 | done | 904 | done |
883 | 905 | ||
884 | uninstall-libsciscipad_la_specialtestDATA: | 906 | uninstall-libsciscipad_la_javadocDATA: |
885 | @$(NORMAL_UNINSTALL) | 907 | @$(NORMAL_UNINSTALL) |
886 | @list='$(libsciscipad_la_specialtest_DATA)'; test -n "$(libsciscipad_la_specialtestdir)" || list=; \ | 908 | @list='$(libsciscipad_la_javadoc_DATA)'; test -n "$(libsciscipad_la_javadocdir)" || list=; \ |
887 | files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ | 909 | files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ |
888 | test -n "$$files" || exit 0; \ | 910 | test -n "$$files" || exit 0; \ |
889 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_specialtestdir)' && rm -f" $$files ")"; \ | 911 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_javadocdir)' && rm -f" $$files ")"; \ |
890 | cd "$(DESTDIR)$(libsciscipad_la_specialtestdir)" && rm -f $$files | 912 | cd "$(DESTDIR)$(libsciscipad_la_javadocdir)" && rm -f $$files |
913 | install-libsciscipad_la_javadocjavasciDATA: $(libsciscipad_la_javadocjavasci_DATA) | ||
914 | @$(NORMAL_INSTALL) | ||
915 | test -z "$(libsciscipad_la_javadocjavascidir)" || $(MKDIR_P) "$(DESTDIR)$(libsciscipad_la_javadocjavascidir)" | ||
916 | @list='$(libsciscipad_la_javadocjavasci_DATA)'; test -n "$(libsciscipad_la_javadocjavascidir)" || list=; \ | ||
917 | for p in $$list; do \ | ||
918 | if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ | ||
919 | echo "$$d$$p"; \ | ||
920 | done | $(am__base_list) | \ | ||
921 | while read files; do \ | ||
922 | echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libsciscipad_la_javadocjavascidir)'"; \ | ||
923 | $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciscipad_la_javadocjavascidir)" || exit $$?; \ | ||
924 | done | ||
925 | |||
926 | uninstall-libsciscipad_la_javadocjavasciDATA: | ||
927 | @$(NORMAL_UNINSTALL) | ||
928 | @list='$(libsciscipad_la_javadocjavasci_DATA)'; test -n "$(libsciscipad_la_javadocjavascidir)" || list=; \ | ||
929 | files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ | ||
930 | test -n "$$files" || exit 0; \ | ||
931 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_javadocjavascidir)' && rm -f" $$files ")"; \ | ||
932 | cd "$(DESTDIR)$(libsciscipad_la_javadocjavascidir)" && rm -f $$files | ||
933 | install-libsciscipad_la_javadocresourcesDATA: $(libsciscipad_la_javadocresources_DATA) | ||
934 | @$(NORMAL_INSTALL) | ||
935 | test -z "$(libsciscipad_la_javadocresourcesdir)" || $(MKDIR_P) "$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)" | ||
936 | @list='$(libsciscipad_la_javadocresources_DATA)'; test -n "$(libsciscipad_la_javadocresourcesdir)" || list=; \ | ||
937 | for p in $$list; do \ | ||
938 | if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ | ||
939 | echo "$$d$$p"; \ | ||
940 | done | $(am__base_list) | \ | ||
941 | while read files; do \ | ||
942 | echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)'"; \ | ||
943 | $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)" || exit $$?; \ | ||
944 | done | ||
945 | |||
946 | uninstall-libsciscipad_la_javadocresourcesDATA: | ||
947 | @$(NORMAL_UNINSTALL) | ||
948 | @list='$(libsciscipad_la_javadocresources_DATA)'; test -n "$(libsciscipad_la_javadocresourcesdir)" || list=; \ | ||
949 | files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ | ||
950 | test -n "$$files" || exit 0; \ | ||
951 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)' && rm -f" $$files ")"; \ | ||
952 | cd "$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)" && rm -f $$files | ||
953 | install-libsciscipad_la_javadoctypesDATA: $(libsciscipad_la_javadoctypes_DATA) | ||
954 | @$(NORMAL_INSTALL) | ||
955 | test -z "$(libsciscipad_la_javadoctypesdir)" || $(MKDIR_P) "$(DESTDIR)$(libsciscipad_la_javadoctypesdir)" | ||
956 | @list='$(libsciscipad_la_javadoctypes_DATA)'; test -n "$(libsciscipad_la_javadoctypesdir)" || list=; \ | ||
957 | for p in $$list; do \ | ||
958 | if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ | ||
959 | echo "$$d$$p"; \ | ||
960 | done | $(am__base_list) | \ | ||
961 | while read files; do \ | ||
962 | echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libsciscipad_la_javadoctypesdir)'"; \ | ||
963 | $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciscipad_la_javadoctypesdir)" || exit $$?; \ | ||
964 | done | ||
965 | |||
966 | uninstall-libsciscipad_la_javadoctypesDATA: | ||
967 | @$(NORMAL_UNINSTALL) | ||
968 | @list='$(libsciscipad_la_javadoctypes_DATA)'; test -n "$(libsciscipad_la_javadoctypesdir)" || list=; \ | ||
969 | files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ | ||
970 | test -n "$$files" || exit 0; \ | ||
971 | echo " ( cd '$(DESTDIR)$(libsciscipad_la_javadoctypesdir)' && rm -f" $$files ")"; \ | ||
972 | cd "$(DESTDIR)$(libsciscipad_la_javadoctypesdir)" && rm -f $$files | ||
891 | 973 | ||
892 | ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) | 974 | ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) |
893 | list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ | 975 | list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ |
@@ -979,7 +1061,7 @@ check: $(BUILT_SOURCES) | |||
979 | @JAVASCI_FALSE@all-local: | 1061 | @JAVASCI_FALSE@all-local: |
980 | all-am: Makefile $(LTLIBRARIES) $(DATA) all-local | 1062 | all-am: Makefile $(LTLIBRARIES) $(DATA) all-local |
981 | installdirs: | 1063 | installdirs: |
982 | for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libjavasci_la_etcdir)" "$(DESTDIR)$(libjavasci_la_rootdir)" "$(DESTDIR)$(libsciscipad_la_imagesdir)" "$(DESTDIR)$(libsciscipad_la_specialtestdir)"; do \ | 1064 | for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libjavasci_la_etcdir)" "$(DESTDIR)$(libjavasci_la_rootdir)" "$(DESTDIR)$(libsciscipad_la_imagesdir)" "$(DESTDIR)$(libsciscipad_la_javadocdir)" "$(DESTDIR)$(libsciscipad_la_javadocjavascidir)" "$(DESTDIR)$(libsciscipad_la_javadocresourcesdir)" "$(DESTDIR)$(libsciscipad_la_javadoctypesdir)"; do \ |
983 | test -z "$$dir" || $(MKDIR_P) "$$dir"; \ | 1065 | test -z "$$dir" || $(MKDIR_P) "$$dir"; \ |
984 | done | 1066 | done |
985 | install: $(BUILT_SOURCES) | 1067 | install: $(BUILT_SOURCES) |
@@ -1039,7 +1121,10 @@ info-am: | |||
1039 | install-data-am: install-data-local install-libjavasci_la_etcDATA \ | 1121 | install-data-am: install-data-local install-libjavasci_la_etcDATA \ |
1040 | install-libjavasci_la_rootDATA \ | 1122 | install-libjavasci_la_rootDATA \ |
1041 | install-libsciscipad_la_imagesDATA \ | 1123 | install-libsciscipad_la_imagesDATA \ |
1042 | install-libsciscipad_la_specialtestDATA | 1124 | install-libsciscipad_la_javadocDATA \ |
1125 | install-libsciscipad_la_javadocjavasciDATA \ | ||
1126 | install-libsciscipad_la_javadocresourcesDATA \ | ||
1127 | install-libsciscipad_la_javadoctypesDATA | ||
1043 | 1128 | ||
1044 | install-dvi: install-dvi-am | 1129 | install-dvi: install-dvi-am |
1045 | 1130 | ||
@@ -1088,7 +1173,10 @@ ps-am: | |||
1088 | uninstall-am: uninstall-libjavasci_la_etcDATA \ | 1173 | uninstall-am: uninstall-libjavasci_la_etcDATA \ |
1089 | uninstall-libjavasci_la_rootDATA \ | 1174 | uninstall-libjavasci_la_rootDATA \ |
1090 | uninstall-libsciscipad_la_imagesDATA \ | 1175 | uninstall-libsciscipad_la_imagesDATA \ |
1091 | uninstall-libsciscipad_la_specialtestDATA \ | 1176 | uninstall-libsciscipad_la_javadocDATA \ |
1177 | uninstall-libsciscipad_la_javadocjavasciDATA \ | ||
1178 | uninstall-libsciscipad_la_javadocresourcesDATA \ | ||
1179 | uninstall-libsciscipad_la_javadoctypesDATA \ | ||
1092 | uninstall-pkglibLTLIBRARIES | 1180 | uninstall-pkglibLTLIBRARIES |
1093 | 1181 | ||
1094 | .MAKE: all check check-am install install-am install-strip | 1182 | .MAKE: all check check-am install install-am install-strip |
@@ -1104,7 +1192,10 @@ uninstall-am: uninstall-libjavasci_la_etcDATA \ | |||
1104 | install-html-local install-info install-info-am \ | 1192 | install-html-local install-info install-info-am \ |
1105 | install-libjavasci_la_etcDATA install-libjavasci_la_rootDATA \ | 1193 | install-libjavasci_la_etcDATA install-libjavasci_la_rootDATA \ |
1106 | install-libsciscipad_la_imagesDATA \ | 1194 | install-libsciscipad_la_imagesDATA \ |
1107 | install-libsciscipad_la_specialtestDATA install-man \ | 1195 | install-libsciscipad_la_javadocDATA \ |
1196 | install-libsciscipad_la_javadocjavasciDATA \ | ||
1197 | install-libsciscipad_la_javadocresourcesDATA \ | ||
1198 | install-libsciscipad_la_javadoctypesDATA install-man \ | ||
1108 | install-pdf install-pdf-am install-pkglibLTLIBRARIES \ | 1199 | install-pdf install-pdf-am install-pkglibLTLIBRARIES \ |
1109 | install-ps install-ps-am install-strip installcheck \ | 1200 | install-ps install-ps-am install-strip installcheck \ |
1110 | installcheck-am installdirs maintainer-clean \ | 1201 | installcheck-am installdirs maintainer-clean \ |
@@ -1113,7 +1204,10 @@ uninstall-am: uninstall-libjavasci_la_etcDATA \ | |||
1113 | tags uninstall uninstall-am uninstall-libjavasci_la_etcDATA \ | 1204 | tags uninstall uninstall-am uninstall-libjavasci_la_etcDATA \ |
1114 | uninstall-libjavasci_la_rootDATA \ | 1205 | uninstall-libjavasci_la_rootDATA \ |
1115 | uninstall-libsciscipad_la_imagesDATA \ | 1206 | uninstall-libsciscipad_la_imagesDATA \ |
1116 | uninstall-libsciscipad_la_specialtestDATA \ | 1207 | uninstall-libsciscipad_la_javadocDATA \ |
1208 | uninstall-libsciscipad_la_javadocjavasciDATA \ | ||
1209 | uninstall-libsciscipad_la_javadocresourcesDATA \ | ||
1210 | uninstall-libsciscipad_la_javadoctypesDATA \ | ||
1117 | uninstall-pkglibLTLIBRARIES | 1211 | uninstall-pkglibLTLIBRARIES |
1118 | 1212 | ||
1119 | 1213 | ||
diff --git a/scilab/modules/jvm/Makefile.in b/scilab/modules/jvm/Makefile.in index f453c2d..10d9ac6 100644 --- a/scilab/modules/jvm/Makefile.in +++ b/scilab/modules/jvm/Makefile.in | |||
@@ -558,7 +558,7 @@ MACROBUILDMASK = *.sce | |||
558 | # Mask of the Scilab compiled macros | 558 | # Mask of the Scilab compiled macros |
559 | MACROBINMASK = *.bin | 559 | MACROBINMASK = *.bin |
560 | # List of the standard directory for tests | 560 | # List of the standard directory for tests |
561 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 561 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
562 | # Where the demos should be installed | 562 | # Where the demos should be installed |
563 | pkgdemosdir = $(mydatadir) | 563 | pkgdemosdir = $(mydatadir) |
564 | # List of the standard directory for demos | 564 | # List of the standard directory for demos |
diff --git a/scilab/modules/linear_algebra/Makefile.in b/scilab/modules/linear_algebra/Makefile.in index 32e0633..7275122 100644 --- a/scilab/modules/linear_algebra/Makefile.in +++ b/scilab/modules/linear_algebra/Makefile.in | |||
@@ -595,7 +595,7 @@ MACROBUILDMASK = *.sce | |||
595 | # Mask of the Scilab compiled macros | 595 | # Mask of the Scilab compiled macros |
596 | MACROBINMASK = *.bin | 596 | MACROBINMASK = *.bin |
597 | # List of the standard directory for tests | 597 | # List of the standard directory for tests |
598 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 598 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
599 | # Where the demos should be installed | 599 | # Where the demos should be installed |
600 | pkgdemosdir = $(mydatadir) | 600 | pkgdemosdir = $(mydatadir) |
601 | # List of the standard directory for demos | 601 | # List of the standard directory for demos |
diff --git a/scilab/modules/localization/Makefile.in b/scilab/modules/localization/Makefile.in index dc2217d..4c7fb4d 100644 --- a/scilab/modules/localization/Makefile.in +++ b/scilab/modules/localization/Makefile.in | |||
@@ -524,7 +524,7 @@ MACROBUILDMASK = *.sce | |||
524 | # Mask of the Scilab compiled macros | 524 | # Mask of the Scilab compiled macros |
525 | MACROBINMASK = *.bin | 525 | MACROBINMASK = *.bin |
526 | # List of the standard directory for tests | 526 | # List of the standard directory for tests |
527 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 527 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
528 | # Where the demos should be installed | 528 | # Where the demos should be installed |
529 | pkgdemosdir = $(mydatadir) | 529 | pkgdemosdir = $(mydatadir) |
530 | # List of the standard directory for demos | 530 | # List of the standard directory for demos |
diff --git a/scilab/modules/m2sci/Makefile.in b/scilab/modules/m2sci/Makefile.in index 6134c8f..73c5601 100644 --- a/scilab/modules/m2sci/Makefile.in +++ b/scilab/modules/m2sci/Makefile.in | |||
@@ -418,7 +418,7 @@ MACROBUILDMASK = *.sce | |||
418 | # Mask of the Scilab compiled macros | 418 | # Mask of the Scilab compiled macros |
419 | MACROBINMASK = *.bin | 419 | MACROBINMASK = *.bin |
420 | # List of the standard directory for tests | 420 | # List of the standard directory for tests |
421 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 421 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
422 | # Where the demos should be installed | 422 | # Where the demos should be installed |
423 | pkgdemosdir = $(mydatadir) | 423 | pkgdemosdir = $(mydatadir) |
424 | # List of the standard directory for demos | 424 | # List of the standard directory for demos |
diff --git a/scilab/modules/maple2scilab/Makefile.in b/scilab/modules/maple2scilab/Makefile.in index 95b42ce..72b7b76 100644 --- a/scilab/modules/maple2scilab/Makefile.in +++ b/scilab/modules/maple2scilab/Makefile.in | |||
@@ -415,7 +415,7 @@ MACROBUILDMASK = *.sce | |||
415 | # Mask of the Scilab compiled macros | 415 | # Mask of the Scilab compiled macros |
416 | MACROBINMASK = *.bin | 416 | MACROBINMASK = *.bin |
417 | # List of the standard directory for tests | 417 | # List of the standard directory for tests |
418 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 418 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
419 | # Where the demos should be installed | 419 | # Where the demos should be installed |
420 | pkgdemosdir = $(mydatadir) | 420 | pkgdemosdir = $(mydatadir) |
421 | # List of the standard directory for demos | 421 | # List of the standard directory for demos |
diff --git a/scilab/modules/matio/Makefile.in b/scilab/modules/matio/Makefile.in index fa6cca9..9243a97 100644 --- a/scilab/modules/matio/Makefile.in +++ b/scilab/modules/matio/Makefile.in | |||
@@ -471,7 +471,7 @@ MACROBUILDMASK = *.sce | |||
471 | # Mask of the Scilab compiled macros | 471 | # Mask of the Scilab compiled macros |
472 | MACROBINMASK = *.bin | 472 | MACROBINMASK = *.bin |
473 | # List of the standard directory for tests | 473 | # List of the standard directory for tests |
474 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 474 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
475 | # Where the demos should be installed | 475 | # Where the demos should be installed |
476 | pkgdemosdir = $(mydatadir) | 476 | pkgdemosdir = $(mydatadir) |
477 | # List of the standard directory for demos | 477 | # List of the standard directory for demos |
diff --git a/scilab/modules/mexlib/Makefile.in b/scilab/modules/mexlib/Makefile.in index 3ce5b14..47128fa 100644 --- a/scilab/modules/mexlib/Makefile.in +++ b/scilab/modules/mexlib/Makefile.in | |||
@@ -496,7 +496,7 @@ MACROBUILDMASK = *.sce | |||
496 | # Mask of the Scilab compiled macros | 496 | # Mask of the Scilab compiled macros |
497 | MACROBINMASK = *.bin | 497 | MACROBINMASK = *.bin |
498 | # List of the standard directory for tests | 498 | # List of the standard directory for tests |
499 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 499 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
500 | # Where the demos should be installed | 500 | # Where the demos should be installed |
501 | pkgdemosdir = $(mydatadir) | 501 | pkgdemosdir = $(mydatadir) |
502 | # List of the standard directory for demos | 502 | # List of the standard directory for demos |
diff --git a/scilab/modules/modules_manager/Makefile.in b/scilab/modules/modules_manager/Makefile.in index c2a6120..26d78dd 100644 --- a/scilab/modules/modules_manager/Makefile.in +++ b/scilab/modules/modules_manager/Makefile.in | |||
@@ -415,7 +415,7 @@ MACROBUILDMASK = *.sce | |||
415 | # Mask of the Scilab compiled macros | 415 | # Mask of the Scilab compiled macros |
416 | MACROBINMASK = *.bin | 416 | MACROBINMASK = *.bin |
417 | # List of the standard directory for tests | 417 | # List of the standard directory for tests |
418 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 418 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
419 | # Where the demos should be installed | 419 | # Where the demos should be installed |
420 | pkgdemosdir = $(mydatadir) | 420 | pkgdemosdir = $(mydatadir) |
421 | # List of the standard directory for demos | 421 | # List of the standard directory for demos |
diff --git a/scilab/modules/optimization/Makefile.in b/scilab/modules/optimization/Makefile.in index f9dc783..2e64a3c 100644 --- a/scilab/modules/optimization/Makefile.in +++ b/scilab/modules/optimization/Makefile.in | |||
@@ -620,7 +620,7 @@ MACROBUILDMASK = *.sce | |||
620 | # Mask of the Scilab compiled macros | 620 | # Mask of the Scilab compiled macros |
621 | MACROBINMASK = *.bin | 621 | MACROBINMASK = *.bin |
622 | # List of the standard directory for tests | 622 | # List of the standard directory for tests |
623 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 623 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
624 | # Where the demos should be installed | 624 | # Where the demos should be installed |
625 | pkgdemosdir = $(mydatadir) | 625 | pkgdemosdir = $(mydatadir) |
626 | # List of the standard directory for demos | 626 | # List of the standard directory for demos |
diff --git a/scilab/modules/output_stream/Makefile.in b/scilab/modules/output_stream/Makefile.in index 350b8b6..be04be0 100644 --- a/scilab/modules/output_stream/Makefile.in +++ b/scilab/modules/output_stream/Makefile.in | |||
@@ -590,7 +590,7 @@ MACROBUILDMASK = *.sce | |||
590 | # Mask of the Scilab compiled macros | 590 | # Mask of the Scilab compiled macros |
591 | MACROBINMASK = *.bin | 591 | MACROBINMASK = *.bin |
592 | # List of the standard directory for tests | 592 | # List of the standard directory for tests |
593 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 593 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
594 | # Where the demos should be installed | 594 | # Where the demos should be installed |
595 | pkgdemosdir = $(mydatadir) | 595 | pkgdemosdir = $(mydatadir) |
596 | # List of the standard directory for demos | 596 | # List of the standard directory for demos |
diff --git a/scilab/modules/overloading/Makefile.in b/scilab/modules/overloading/Makefile.in index a1e3bba..37ac28b 100644 --- a/scilab/modules/overloading/Makefile.in +++ b/scilab/modules/overloading/Makefile.in | |||
@@ -416,7 +416,7 @@ MACROBUILDMASK = *.sce | |||
416 | # Mask of the Scilab compiled macros | 416 | # Mask of the Scilab compiled macros |
417 | MACROBINMASK = *.bin | 417 | MACROBINMASK = *.bin |
418 | # List of the standard directory for tests | 418 | # List of the standard directory for tests |
419 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 419 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
420 | # Where the demos should be installed | 420 | # Where the demos should be installed |
421 | pkgdemosdir = $(mydatadir) | 421 | pkgdemosdir = $(mydatadir) |
422 | # List of the standard directory for demos | 422 | # List of the standard directory for demos |
diff --git a/scilab/modules/parallel/Makefile.in b/scilab/modules/parallel/Makefile.in index d175a89..2877064 100644 --- a/scilab/modules/parallel/Makefile.in +++ b/scilab/modules/parallel/Makefile.in | |||
@@ -512,7 +512,7 @@ MACROBUILDMASK = *.sce | |||
512 | # Mask of the Scilab compiled macros | 512 | # Mask of the Scilab compiled macros |
513 | MACROBINMASK = *.bin | 513 | MACROBINMASK = *.bin |
514 | # List of the standard directory for tests | 514 | # List of the standard directory for tests |
515 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 515 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
516 | # Where the demos should be installed | 516 | # Where the demos should be installed |
517 | pkgdemosdir = $(mydatadir) | 517 | pkgdemosdir = $(mydatadir) |
518 | # List of the standard directory for demos | 518 | # List of the standard directory for demos |
diff --git a/scilab/modules/parameters/Makefile.in b/scilab/modules/parameters/Makefile.in index d516edc..4f1fdfc 100644 --- a/scilab/modules/parameters/Makefile.in +++ b/scilab/modules/parameters/Makefile.in | |||
@@ -465,7 +465,7 @@ MACROBUILDMASK = *.sce | |||
465 | # Mask of the Scilab compiled macros | 465 | # Mask of the Scilab compiled macros |
466 | MACROBINMASK = *.bin | 466 | MACROBINMASK = *.bin |
467 | # List of the standard directory for tests | 467 | # List of the standard directory for tests |
468 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 468 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
469 | # Where the demos should be installed | 469 | # Where the demos should be installed |
470 | pkgdemosdir = $(mydatadir) | 470 | pkgdemosdir = $(mydatadir) |
471 | # List of the standard directory for demos | 471 | # List of the standard directory for demos |
diff --git a/scilab/modules/polynomials/Makefile.in b/scilab/modules/polynomials/Makefile.in index 8189f9d..d2d8f70 100644 --- a/scilab/modules/polynomials/Makefile.in +++ b/scilab/modules/polynomials/Makefile.in | |||
@@ -601,7 +601,7 @@ MACROBUILDMASK = *.sce | |||
601 | # Mask of the Scilab compiled macros | 601 | # Mask of the Scilab compiled macros |
602 | MACROBINMASK = *.bin | 602 | MACROBINMASK = *.bin |
603 | # List of the standard directory for tests | 603 | # List of the standard directory for tests |
604 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 604 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
605 | # Where the demos should be installed | 605 | # Where the demos should be installed |
606 | pkgdemosdir = $(mydatadir) | 606 | pkgdemosdir = $(mydatadir) |
607 | # List of the standard directory for demos | 607 | # List of the standard directory for demos |
diff --git a/scilab/modules/pvm/Makefile.in b/scilab/modules/pvm/Makefile.in index 9fd6918..e993e4f 100644 --- a/scilab/modules/pvm/Makefile.in +++ b/scilab/modules/pvm/Makefile.in | |||
@@ -655,9 +655,9 @@ top_srcdir = @top_srcdir@ | |||
655 | # Mask of the Scilab compiled macros | 655 | # Mask of the Scilab compiled macros |
656 | @PVM_TRUE@MACROBINMASK = *.bin | 656 | @PVM_TRUE@MACROBINMASK = *.bin |
657 | # List of the standard directory for tests | 657 | # List of the standard directory for tests |
658 | @PVM_FALSE@TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 658 | @PVM_FALSE@TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
659 | # List of the standard directory for tests | 659 | # List of the standard directory for tests |
660 | @PVM_TRUE@TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 660 | @PVM_TRUE@TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
661 | # Where the demos should be installed | 661 | # Where the demos should be installed |
662 | @PVM_FALSE@pkgdemosdir = $(mydatadir) | 662 | @PVM_FALSE@pkgdemosdir = $(mydatadir) |
663 | # Where the demos should be installed | 663 | # Where the demos should be installed |
diff --git a/scilab/modules/randlib/Makefile.in b/scilab/modules/randlib/Makefile.in index 6b5fc8a..c81756e 100644 --- a/scilab/modules/randlib/Makefile.in +++ b/scilab/modules/randlib/Makefile.in | |||
@@ -516,7 +516,7 @@ MACROBUILDMASK = *.sce | |||
516 | # Mask of the Scilab compiled macros | 516 | # Mask of the Scilab compiled macros |
517 | MACROBINMASK = *.bin | 517 | MACROBINMASK = *.bin |
518 | # List of the standard directory for tests | 518 | # List of the standard directory for tests |
519 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 519 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
520 | # Where the demos should be installed | 520 | # Where the demos should be installed |
521 | pkgdemosdir = $(mydatadir) | 521 | pkgdemosdir = $(mydatadir) |
522 | # List of the standard directory for demos | 522 | # List of the standard directory for demos |
diff --git a/scilab/modules/renderer/Makefile.in b/scilab/modules/renderer/Makefile.in index dac10bd..58f3b0c 100644 --- a/scilab/modules/renderer/Makefile.in +++ b/scilab/modules/renderer/Makefile.in | |||
@@ -1053,7 +1053,7 @@ MACROBUILDMASK = *.sce | |||
1053 | # Mask of the Scilab compiled macros | 1053 | # Mask of the Scilab compiled macros |
1054 | MACROBINMASK = *.bin | 1054 | MACROBINMASK = *.bin |
1055 | # List of the standard directory for tests | 1055 | # List of the standard directory for tests |
1056 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 1056 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
1057 | # Where the demos should be installed | 1057 | # Where the demos should be installed |
1058 | pkgdemosdir = $(mydatadir) | 1058 | pkgdemosdir = $(mydatadir) |
1059 | # List of the standard directory for demos | 1059 | # List of the standard directory for demos |
diff --git a/scilab/modules/scicos/Makefile.in b/scilab/modules/scicos/Makefile.in index 36f60fc..d9e1160 100644 --- a/scilab/modules/scicos/Makefile.in +++ b/scilab/modules/scicos/Makefile.in | |||
@@ -693,7 +693,7 @@ MACROBUILDMASK = *.sce | |||
693 | # Mask of the Scilab compiled macros | 693 | # Mask of the Scilab compiled macros |
694 | MACROBINMASK = *.bin | 694 | MACROBINMASK = *.bin |
695 | # List of the standard directory for tests | 695 | # List of the standard directory for tests |
696 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 696 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
697 | # Where the demos should be installed | 697 | # Where the demos should be installed |
698 | pkgdemosdir = $(mydatadir) | 698 | pkgdemosdir = $(mydatadir) |
699 | # List of the standard directory for demos | 699 | # List of the standard directory for demos |
diff --git a/scilab/modules/scicos_blocks/Makefile.in b/scilab/modules/scicos_blocks/Makefile.in index ff2a702..e05cbf9 100644 --- a/scilab/modules/scicos_blocks/Makefile.in +++ b/scilab/modules/scicos_blocks/Makefile.in | |||
@@ -951,7 +951,7 @@ MACROBUILDMASK = *.sce | |||
951 | # Mask of the Scilab compiled macros | 951 | # Mask of the Scilab compiled macros |
952 | MACROBINMASK = *.bin | 952 | MACROBINMASK = *.bin |
953 | # List of the standard directory for tests | 953 | # List of the standard directory for tests |
954 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 954 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
955 | # Where the demos should be installed | 955 | # Where the demos should be installed |
956 | pkgdemosdir = $(mydatadir) | 956 | pkgdemosdir = $(mydatadir) |
957 | # List of the standard directory for demos | 957 | # List of the standard directory for demos |
diff --git a/scilab/modules/scinotes/Makefile.in b/scilab/modules/scinotes/Makefile.in index 5137175..4f07e82 100644 --- a/scilab/modules/scinotes/Makefile.in +++ b/scilab/modules/scinotes/Makefile.in | |||
@@ -486,7 +486,7 @@ MACROBUILDMASK = *.sce | |||
486 | # Mask of the Scilab compiled macros | 486 | # Mask of the Scilab compiled macros |
487 | MACROBINMASK = *.bin | 487 | MACROBINMASK = *.bin |
488 | # List of the standard directory for tests | 488 | # List of the standard directory for tests |
489 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 489 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
490 | # Where the demos should be installed | 490 | # Where the demos should be installed |
491 | pkgdemosdir = $(mydatadir) | 491 | pkgdemosdir = $(mydatadir) |
492 | # List of the standard directory for demos | 492 | # List of the standard directory for demos |
diff --git a/scilab/modules/shell/Makefile.in b/scilab/modules/shell/Makefile.in index df4c747..ed46a08 100644 --- a/scilab/modules/shell/Makefile.in +++ b/scilab/modules/shell/Makefile.in | |||
@@ -538,7 +538,7 @@ MACROBUILDMASK = *.sce | |||
538 | # Mask of the Scilab compiled macros | 538 | # Mask of the Scilab compiled macros |
539 | MACROBINMASK = *.bin | 539 | MACROBINMASK = *.bin |
540 | # List of the standard directory for tests | 540 | # List of the standard directory for tests |
541 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 541 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
542 | # Where the demos should be installed | 542 | # Where the demos should be installed |
543 | pkgdemosdir = $(mydatadir) | 543 | pkgdemosdir = $(mydatadir) |
544 | # List of the standard directory for demos | 544 | # List of the standard directory for demos |
diff --git a/scilab/modules/signal_processing/Makefile.in b/scilab/modules/signal_processing/Makefile.in index 55cd70a..2ec4366 100644 --- a/scilab/modules/signal_processing/Makefile.in +++ b/scilab/modules/signal_processing/Makefile.in | |||
@@ -585,7 +585,7 @@ MACROBUILDMASK = *.sce | |||
585 | # Mask of the Scilab compiled macros | 585 | # Mask of the Scilab compiled macros |
586 | MACROBINMASK = *.bin | 586 | MACROBINMASK = *.bin |
587 | # List of the standard directory for tests | 587 | # List of the standard directory for tests |
588 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 588 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
589 | # Where the demos should be installed | 589 | # Where the demos should be installed |
590 | pkgdemosdir = $(mydatadir) | 590 | pkgdemosdir = $(mydatadir) |
591 | # List of the standard directory for demos | 591 | # List of the standard directory for demos |
diff --git a/scilab/modules/simulated_annealing/Makefile.in b/scilab/modules/simulated_annealing/Makefile.in index 3b72aa3..5a60ce1f 100644 --- a/scilab/modules/simulated_annealing/Makefile.in +++ b/scilab/modules/simulated_annealing/Makefile.in | |||
@@ -420,7 +420,7 @@ MACROBUILDMASK = *.sce | |||
420 | # Mask of the Scilab compiled macros | 420 | # Mask of the Scilab compiled macros |
421 | MACROBINMASK = *.bin | 421 | MACROBINMASK = *.bin |
422 | # List of the standard directory for tests | 422 | # List of the standard directory for tests |
423 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 423 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
424 | # Where the demos should be installed | 424 | # Where the demos should be installed |
425 | pkgdemosdir = $(mydatadir) | 425 | pkgdemosdir = $(mydatadir) |
426 | # List of the standard directory for demos | 426 | # List of the standard directory for demos |
diff --git a/scilab/modules/sound/Makefile.in b/scilab/modules/sound/Makefile.in index 7ef5a7b..a610d4d 100644 --- a/scilab/modules/sound/Makefile.in +++ b/scilab/modules/sound/Makefile.in | |||
@@ -471,7 +471,7 @@ MACROBUILDMASK = *.sce | |||
471 | # Mask of the Scilab compiled macros | 471 | # Mask of the Scilab compiled macros |
472 | MACROBINMASK = *.bin | 472 | MACROBINMASK = *.bin |
473 | # List of the standard directory for tests | 473 | # List of the standard directory for tests |
474 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 474 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
475 | # Where the demos should be installed | 475 | # Where the demos should be installed |
476 | pkgdemosdir = $(mydatadir) | 476 | pkgdemosdir = $(mydatadir) |
477 | # List of the standard directory for demos | 477 | # List of the standard directory for demos |
diff --git a/scilab/modules/sparse/Makefile.in b/scilab/modules/sparse/Makefile.in index fcdedb9..9b7f5de 100644 --- a/scilab/modules/sparse/Makefile.in +++ b/scilab/modules/sparse/Makefile.in | |||
@@ -667,7 +667,7 @@ MACROBUILDMASK = *.sce | |||
667 | # Mask of the Scilab compiled macros | 667 | # Mask of the Scilab compiled macros |
668 | MACROBINMASK = *.bin | 668 | MACROBINMASK = *.bin |
669 | # List of the standard directory for tests | 669 | # List of the standard directory for tests |
670 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 670 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
671 | # Where the demos should be installed | 671 | # Where the demos should be installed |
672 | pkgdemosdir = $(mydatadir) | 672 | pkgdemosdir = $(mydatadir) |
673 | # List of the standard directory for demos | 673 | # List of the standard directory for demos |
diff --git a/scilab/modules/special_functions/Makefile.in b/scilab/modules/special_functions/Makefile.in index fdd3445..f2474f3 100644 --- a/scilab/modules/special_functions/Makefile.in +++ b/scilab/modules/special_functions/Makefile.in | |||
@@ -518,7 +518,7 @@ MACROBUILDMASK = *.sce | |||
518 | # Mask of the Scilab compiled macros | 518 | # Mask of the Scilab compiled macros |
519 | MACROBINMASK = *.bin | 519 | MACROBINMASK = *.bin |
520 | # List of the standard directory for tests | 520 | # List of the standard directory for tests |
521 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 521 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
522 | # Where the demos should be installed | 522 | # Where the demos should be installed |
523 | pkgdemosdir = $(mydatadir) | 523 | pkgdemosdir = $(mydatadir) |
524 | # List of the standard directory for demos | 524 | # List of the standard directory for demos |
diff --git a/scilab/modules/spreadsheet/Makefile.in b/scilab/modules/spreadsheet/Makefile.in index 4b10e33..16b1d7e 100644 --- a/scilab/modules/spreadsheet/Makefile.in +++ b/scilab/modules/spreadsheet/Makefile.in | |||
@@ -489,7 +489,7 @@ MACROBUILDMASK = *.sce | |||
489 | # Mask of the Scilab compiled macros | 489 | # Mask of the Scilab compiled macros |
490 | MACROBINMASK = *.bin | 490 | MACROBINMASK = *.bin |
491 | # List of the standard directory for tests | 491 | # List of the standard directory for tests |
492 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 492 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
493 | # Where the demos should be installed | 493 | # Where the demos should be installed |
494 | pkgdemosdir = $(mydatadir) | 494 | pkgdemosdir = $(mydatadir) |
495 | # List of the standard directory for demos | 495 | # List of the standard directory for demos |
diff --git a/scilab/modules/statistics/Makefile.in b/scilab/modules/statistics/Makefile.in index 5a23fb5..b38efd5 100644 --- a/scilab/modules/statistics/Makefile.in +++ b/scilab/modules/statistics/Makefile.in | |||
@@ -573,7 +573,7 @@ MACROBUILDMASK = *.sce | |||
573 | # Mask of the Scilab compiled macros | 573 | # Mask of the Scilab compiled macros |
574 | MACROBINMASK = *.bin | 574 | MACROBINMASK = *.bin |
575 | # List of the standard directory for tests | 575 | # List of the standard directory for tests |
576 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 576 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
577 | # Where the demos should be installed | 577 | # Where the demos should be installed |
578 | pkgdemosdir = $(mydatadir) | 578 | pkgdemosdir = $(mydatadir) |
579 | # List of the standard directory for demos | 579 | # List of the standard directory for demos |
diff --git a/scilab/modules/string/Makefile.in b/scilab/modules/string/Makefile.in index 00c5fc6..bbd611b 100644 --- a/scilab/modules/string/Makefile.in +++ b/scilab/modules/string/Makefile.in | |||
@@ -571,7 +571,7 @@ MACROBUILDMASK = *.sce | |||
571 | # Mask of the Scilab compiled macros | 571 | # Mask of the Scilab compiled macros |
572 | MACROBINMASK = *.bin | 572 | MACROBINMASK = *.bin |
573 | # List of the standard directory for tests | 573 | # List of the standard directory for tests |
574 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 574 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
575 | # Where the demos should be installed | 575 | # Where the demos should be installed |
576 | pkgdemosdir = $(mydatadir) | 576 | pkgdemosdir = $(mydatadir) |
577 | # List of the standard directory for demos | 577 | # List of the standard directory for demos |
diff --git a/scilab/modules/symbolic/Makefile.in b/scilab/modules/symbolic/Makefile.in index 1276892..405fb7e 100644 --- a/scilab/modules/symbolic/Makefile.in +++ b/scilab/modules/symbolic/Makefile.in | |||
@@ -488,7 +488,7 @@ MACROBUILDMASK = *.sce | |||
488 | # Mask of the Scilab compiled macros | 488 | # Mask of the Scilab compiled macros |
489 | MACROBINMASK = *.bin | 489 | MACROBINMASK = *.bin |
490 | # List of the standard directory for tests | 490 | # List of the standard directory for tests |
491 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 491 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
492 | # Where the demos should be installed | 492 | # Where the demos should be installed |
493 | pkgdemosdir = $(mydatadir) | 493 | pkgdemosdir = $(mydatadir) |
494 | # List of the standard directory for demos | 494 | # List of the standard directory for demos |
diff --git a/scilab/modules/tclsci/Makefile.in b/scilab/modules/tclsci/Makefile.in index 9cc56d7..c4b8571 100644 --- a/scilab/modules/tclsci/Makefile.in +++ b/scilab/modules/tclsci/Makefile.in | |||
@@ -714,7 +714,7 @@ MACROBUILDMASK = *.sce | |||
714 | # Mask of the Scilab compiled macros | 714 | # Mask of the Scilab compiled macros |
715 | MACROBINMASK = *.bin | 715 | MACROBINMASK = *.bin |
716 | # List of the standard directory for tests | 716 | # List of the standard directory for tests |
717 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 717 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
718 | # Where the demos should be installed | 718 | # Where the demos should be installed |
719 | pkgdemosdir = $(mydatadir) | 719 | pkgdemosdir = $(mydatadir) |
720 | # List of the standard directory for demos | 720 | # List of the standard directory for demos |
diff --git a/scilab/modules/texmacs/Makefile.in b/scilab/modules/texmacs/Makefile.in index ead5c8c..c81d11c 100644 --- a/scilab/modules/texmacs/Makefile.in +++ b/scilab/modules/texmacs/Makefile.in | |||
@@ -418,7 +418,7 @@ MACROBUILDMASK = *.sce | |||
418 | # Mask of the Scilab compiled macros | 418 | # Mask of the Scilab compiled macros |
419 | MACROBINMASK = *.bin | 419 | MACROBINMASK = *.bin |
420 | # List of the standard directory for tests | 420 | # List of the standard directory for tests |
421 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 421 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
422 | # Where the demos should be installed | 422 | # Where the demos should be installed |
423 | pkgdemosdir = $(mydatadir) | 423 | pkgdemosdir = $(mydatadir) |
424 | # List of the standard directory for demos | 424 | # List of the standard directory for demos |
diff --git a/scilab/modules/time/Makefile.in b/scilab/modules/time/Makefile.in index 40a1610..16e3ed8 100644 --- a/scilab/modules/time/Makefile.in +++ b/scilab/modules/time/Makefile.in | |||
@@ -490,7 +490,7 @@ MACROBUILDMASK = *.sce | |||
490 | # Mask of the Scilab compiled macros | 490 | # Mask of the Scilab compiled macros |
491 | MACROBINMASK = *.bin | 491 | MACROBINMASK = *.bin |
492 | # List of the standard directory for tests | 492 | # List of the standard directory for tests |
493 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 493 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
494 | # Where the demos should be installed | 494 | # Where the demos should be installed |
495 | pkgdemosdir = $(mydatadir) | 495 | pkgdemosdir = $(mydatadir) |
496 | # List of the standard directory for demos | 496 | # List of the standard directory for demos |
diff --git a/scilab/modules/types/Makefile.in b/scilab/modules/types/Makefile.in index 8119889..8a45e7f 100644 --- a/scilab/modules/types/Makefile.in +++ b/scilab/modules/types/Makefile.in | |||
@@ -458,7 +458,7 @@ MACROBUILDMASK = *.sce | |||
458 | # Mask of the Scilab compiled macros | 458 | # Mask of the Scilab compiled macros |
459 | MACROBINMASK = *.bin | 459 | MACROBINMASK = *.bin |
460 | # List of the standard directory for tests | 460 | # List of the standard directory for tests |
461 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 461 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
462 | # Where the demos should be installed | 462 | # Where the demos should be installed |
463 | pkgdemosdir = $(mydatadir) | 463 | pkgdemosdir = $(mydatadir) |
464 | # List of the standard directory for demos | 464 | # List of the standard directory for demos |
diff --git a/scilab/modules/ui_data/Makefile.in b/scilab/modules/ui_data/Makefile.in index e5103ed..5ade6f4 100644 --- a/scilab/modules/ui_data/Makefile.in +++ b/scilab/modules/ui_data/Makefile.in | |||
@@ -485,7 +485,7 @@ MACROBUILDMASK = *.sce | |||
485 | # Mask of the Scilab compiled macros | 485 | # Mask of the Scilab compiled macros |
486 | MACROBINMASK = *.bin | 486 | MACROBINMASK = *.bin |
487 | # List of the standard directory for tests | 487 | # List of the standard directory for tests |
488 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 488 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
489 | # Where the demos should be installed | 489 | # Where the demos should be installed |
490 | pkgdemosdir = $(mydatadir) | 490 | pkgdemosdir = $(mydatadir) |
491 | # List of the standard directory for demos | 491 | # List of the standard directory for demos |
diff --git a/scilab/modules/umfpack/Makefile.in b/scilab/modules/umfpack/Makefile.in index 58f3d84..07fadd6 100644 --- a/scilab/modules/umfpack/Makefile.in +++ b/scilab/modules/umfpack/Makefile.in | |||
@@ -536,7 +536,7 @@ MACROBUILDMASK = *.sce | |||
536 | # Mask of the Scilab compiled macros | 536 | # Mask of the Scilab compiled macros |
537 | MACROBINMASK = *.bin | 537 | MACROBINMASK = *.bin |
538 | # List of the standard directory for tests | 538 | # List of the standard directory for tests |
539 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 539 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
540 | # Where the demos should be installed | 540 | # Where the demos should be installed |
541 | pkgdemosdir = $(mydatadir) | 541 | pkgdemosdir = $(mydatadir) |
542 | # List of the standard directory for demos | 542 | # List of the standard directory for demos |
diff --git a/scilab/modules/windows_tools/Makefile.in b/scilab/modules/windows_tools/Makefile.in index 203d0b5..d523621 100644 --- a/scilab/modules/windows_tools/Makefile.in +++ b/scilab/modules/windows_tools/Makefile.in | |||
@@ -468,7 +468,7 @@ MACROBUILDMASK = *.sce | |||
468 | # Mask of the Scilab compiled macros | 468 | # Mask of the Scilab compiled macros |
469 | MACROBINMASK = *.bin | 469 | MACROBINMASK = *.bin |
470 | # List of the standard directory for tests | 470 | # List of the standard directory for tests |
471 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 471 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
472 | # Where the demos should be installed | 472 | # Where the demos should be installed |
473 | pkgdemosdir = $(mydatadir) | 473 | pkgdemosdir = $(mydatadir) |
474 | # List of the standard directory for demos | 474 | # List of the standard directory for demos |
diff --git a/scilab/modules/xcos/Makefile.in b/scilab/modules/xcos/Makefile.in index b5695cf..14700e7 100644 --- a/scilab/modules/xcos/Makefile.in +++ b/scilab/modules/xcos/Makefile.in | |||
@@ -857,7 +857,7 @@ MACROBUILDMASK = *.sce | |||
857 | # Mask of the Scilab compiled macros | 857 | # Mask of the Scilab compiled macros |
858 | MACROBINMASK = *.bin | 858 | MACROBINMASK = *.bin |
859 | # List of the standard directory for tests | 859 | # List of the standard directory for tests |
860 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests | 860 | TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java |
861 | # Where the demos should be installed | 861 | # Where the demos should be installed |
862 | pkgdemosdir = $(mydatadir) | 862 | pkgdemosdir = $(mydatadir) |
863 | # List of the standard directory for demos | 863 | # List of the standard directory for demos |