1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
|
#
# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
# Copyright (C) INRIA - 2006-2008 - Sylvestre Ledru
# Copyright (C) DIGITEO - 2009 - Sylvestre Ledru
#
# This file must be used under the terms of the CeCILL.
# This source file is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
#
## Process this file with automake to produce Makefile.in (which will be changed by the ./configure)
AUTOMAKE_OPTIONS = 1.11 dist-zip dist-bzip2
SUBDIRS= modules \
contrib \
desktop
ACLOCAL_AMFLAGS = -I m4
# Set AM_* SCI detected settings
AM_CPPFLAGS = $(SCI_CPPFLAGS)
AM_CFLAGS = $(SCI_CFLAGS)
AM_CXXFLAGS = $(SCI_CXXFLAGS)
AM_FFLAGS = $(SCI_FFLAGS)
AM_LDFLAGS = $(SCI_LDFLAGS)
changelogs = CHANGES CHANGES_5.1.X CHANGES_5.2.X CHANGES_5.3.X CHANGES_5.4.X CHANGES_5.5.X
bin_PROGRAMS = scilab-bin scilab-cli-bin
bin_SCRIPTS = bin/scilab bin/scilab-adv-cli bin/scilab-cli \
bin/scinotes bin/xcos
if IS_MACOSX
bin_SCRIPTS += bin/checkmacosx.applescript
endif
scilab_bin_LDFLAGS = $(AM_LDFLAGS)
scilab_cli_bin_LDFLAGS = $(AM_LDFLAGS)
if IS_MACOSX
scilab_bin_LDFLAGS += -framework Cocoa
endif
scilab_bin_CPPFLAGS = -I$(top_srcdir)/modules/io/includes/ \
-I$(top_srcdir)/modules/console/includes/ \
-I$(top_srcdir)/modules/localization/includes/ \
$(AM_CPPFLAGS)
# --no-undefined --relax
# Localization dep already exists because of the `exportLocaleToSystem' symbol
# (causing issues on some platform)
COMMON_LIBS = $(LTLIBINTL)
scilab_bin_SOURCES = modules/startup/src/c/mainscic.cpp
# Match scilab -nwni (ie command line without graphics)
scilab_cli_bin_SOURCES = modules/startup/src/c/mainscic.cpp
scilab_cli_bin_CPPFLAGS = -DWITHOUT_GUI $(scilab_bin_CPPFLAGS)
# the scilab-bin object file itself uses symbols from at least libscilab-cli.la,
# libsciconsole-minimal.la and libscijvm-disable.la, so we have to link with these
# libraries explicitly unless we link with -Wl,--copy-dt-needed-entries
scilab_bin_LDADD = \
$(top_builddir)/modules/libscilab.la \
$(top_builddir)/modules/libscilab-cli.la \
$(OPENMPI_LIBS) $(XML_LIBS) \
$(COMMON_LIBS) $(FLIBS)
if NEED_JAVA
scilab_bin_LDADD += \
$(top_builddir)/modules/console/libsciconsole.la \
$(top_builddir)/modules/jvm/libscijvm.la \
$(top_builddir)/modules/commons/libscicommons.la
else
scilab_bin_LDADD += \
$(top_builddir)/modules/console/libsciconsole-minimal.la \
$(top_builddir)/modules/jvm/libscijvm-disable.la
endif
scilab_cli_bin_LDADD = \
$(top_builddir)/modules/libscilab-cli.la \
$(top_builddir)/modules/console/libsciconsole-minimal.la \
$(top_builddir)/modules/jvm/libscijvm-disable.la \
$(OPENMPI_LIBS) $(XML_LIBS) \
$(COMMON_LIBS) $(FLIBS)
if MPI
CXX = $(OPENMPI_CXX)
scilab_bin_SOURCES += modules/startup/src/c/initMPI.c
scilab_bin_CPPFLAGS += $(OPENMPI_CXXFLAGS)
scilab_cli_bin_SOURCES += modules/startup/src/c/initMPI.c
scilab_cli_bin_CPPFLAGS += $(OPENMPI_CXXFLAGS)
endif
if NEED_JAVA
# Don't do it for scilab_cli_bin. We want to be able to call it without
# the java libs
scilab_bin_LDADD += $(JAVA_JNI_LIBS)
endif
if USE_STATIC_SYSTEM_LIB
scilab_bin_LDFLAGS += -static-libstdc++ -static-libgcc
# -static-libgfortran
scilab_cli_bin_LDFLAGS += -static-libstdc++ -static-libgcc
#-static-libgfortran
else
# Clang (for example) needs an explicit reference to the lib
scilab_bin_LDADD += -lstdc++
# -static-libgfortran
scilab_cli_bin_LDADD += -lstdc++
#-static-libgfortran
endif
if IS_SOLARIS
# The binary itself needs this dep
scilab_bin_LDADD += $(BLAS_LIBS)
endif
LANG_DOMAIN=scilab
TARGETS_ALL=macros
# The user wants to compile the localization files
if GENERATE_LOCALIZATION_FILES
TARGETS_ALL+=localization
endif
if COMPILATION_TESTS
TARGETS_ALL+=check-java
endif
# check is performed with scilab, so use the serial-tests on purpose
TESTS_ENVIRONMENT = LANG=C $(top_builddir)/bin/scilab-cli -nb -noatomsautoload -f
TESTS = $(top_builddir)/modules/development_tools/tests/unit_tests/test_run_level_1.tst
all-local: $(TARGETS_ALL)
rootdir=$(pkgdatadir)/etc/
root_DATA = $(top_srcdir)/etc/scilab.start \
$(top_srcdir)/etc/scilab.quit \
$(top_srcdir)/etc/toolboxes.xml \
$(top_builddir)/etc/jvm_options.xml \
$(top_builddir)/etc/modules.xml \
$(top_builddir)/etc/classpath.xml \
$(top_builddir)/etc/logging.properties \
$(top_builddir)/etc/librarypath.xml
infofilesdir=$(pkgdatadir)/
infofiles_DATA = $(top_srcdir)/CHANGES_2.X \
$(top_srcdir)/CHANGES_3.X \
$(top_srcdir)/CHANGES_4.X \
$(top_srcdir)/CHANGES_5.0.X \
$(top_srcdir)/CHANGES_5.1.X \
$(top_srcdir)/CHANGES_5.2.X \
$(top_srcdir)/CHANGES_5.3.X \
$(top_srcdir)/CHANGES_5.4.X \
$(top_srcdir)/CHANGES_5.5.X \
$(top_srcdir)/ACKNOWLEDGEMENTS \
$(top_srcdir)/COPYING \
$(top_srcdir)/COPYING-BSD \
$(top_srcdir)/COPYING-FR \
$(top_srcdir)/README_Unix \
$(top_srcdir)/RELEASE_NOTES_5.0.X \
$(top_srcdir)/RELEASE_NOTES_5.1.X \
$(top_srcdir)/RELEASE_NOTES_5.2.X \
$(top_srcdir)/RELEASE_NOTES_5.3.X \
$(top_srcdir)/Readme_Visual.txt \
$(top_srcdir)/README_Windows.txt \
$(top_builddir)/license.txt \
$(top_builddir)/Version.incl
valgrinddir=$(pkgdatadir)/tools/profiling
valgrind_DATA = $(top_srcdir)/tools/profiling/valgrind.supp
macros: $(top_builddir)/scilab-cli-bin $(top_builddir)/bin/scilab-cli check-jvm-dep check-libstdcpp-dep
-@( cd $(top_builddir) ; \
echo "$(top_builddir)/bin/scilab-cli -ns -noatomsautoload -f modules/functions/scripts/buildmacros/buildmacros.sce" ; \
$(top_builddir)/bin/scilab-cli -ns -noatomsautoload -f modules/functions/scripts/buildmacros/buildmacros.sce) || exit 1
check-jvm-dep:
# Check that scilab-cli does not have a dependency on libjvm
if !IS_MACOSX
@ldd .libs/scilab-cli-bin|grep libjvm > /dev/null; \
if test $$? == 0; then \
echo "Found dependency from scilab-cli-bin to libjvm found"; exit 2;\
fi
endif
check-libstdcpp-dep:
if USE_STATIC_SYSTEM_LIB
# Check that scilab-cli does not have a dependency on libstdc++ (should be static)
@ldd .libs/scilab-bin .libs/scilab-cli-bin modules/.libs/libscilab*0 |grep libstdc++ > /dev/null; \
if test $$? == 0; then \
echo "Found dependency from scilab-cli-bin to libstdc++ found"; exit 2;\
fi
else
echo "libstdc++ presence test skipped"
endif
# Build the public Javadoc (javasci v2 and Java/Scilab types)
# This is not done in the module itself because its needs also the "types"
# module
javadoc:
$(JAVADOC) -noindex -nohelp -nonavbar -notree \
-d $(top_builddir)/modules/javasci/javadoc \
-sourcepath $(top_srcdir)/modules/javasci/src/java:$(top_srcdir)/modules/types/src/java::$(top_srcdir)/modules/localization/src/java \
org.scilab.modules.javasci org.scilab.modules.types
javadoc-all:
MASK="$(top_srcdir)/modules/*/src/java/"; \
MODULES=`ls -d $$MASK`; \
for M in $$MODULES; do \
LISTMODULES="$$M:$$LISTMODULES"; \
MODULE=$$(echo $$M|cut -d/ -f3); \
LISTPKG="$$LISTPKG org.scilab.modules.$$MODULE"; \
done; \
$(JAVADOC) \
-d $(top_builddir)/javadocall \
-sourcepath $$LISTMODULES \
$$LISTPKG
doc-fr_FR:
@$(MAKE) $(AM_MAKEFLAGS) doc ALL_LINGUAS_DOC=fr_FR
doc-en_US:
@$(MAKE) $(AM_MAKEFLAGS) doc ALL_LINGUAS_DOC=en_US
doc-pt_BR:
@$(MAKE) $(AM_MAKEFLAGS) doc ALL_LINGUAS_DOC=pt_BR
doc-ru_RU:
@$(MAKE) $(AM_MAKEFLAGS) doc ALL_LINGUAS_DOC=ru_RU
doc-ja_JP:
@$(MAKE) $(AM_MAKEFLAGS) doc ALL_LINGUAS_DOC=ja_JP
# Regenerate all images
doc-images:
rm -rf $(top_srcdir)/modules/helptools/images/
mkdir $(top_srcdir)/modules/helptools/images/
$(MAKE) doc
doc: javadoc $(top_builddir)/scilab-bin $(top_builddir)/bin/scilab-adv-cli
if BUILD_HELP
@if test -x $(top_builddir)/scilab-bin; then \
cd $(top_builddir);\
for l in $(ALL_LINGUAS_DOC); do \
echo "-- Building documentation ($$l) --"; \
COMMAND="try xmltojar([],[],'$$l');catch disp(lasterror()); exit(-1);end;exit(0);"; \
echo "LANG=C LC_ALL=$$l.UTF-8 SCI_DISABLE_TK=1 SCI_JAVA_ENABLE_HEADLESS=1 $(top_builddir)/bin/scilab-adv-cli -noatomsautoload -nb -l $$l -nouserstartup -e \"$$COMMAND\"";\
LANG=C LC_ALL=$$l.UTF-8 SCI_DISABLE_TK=1 SCI_JAVA_ENABLE_HEADLESS=1 $(top_builddir)/bin/scilab-adv-cli -noatomsautoload -nb -l $$l -nouserstartup -e "$$COMMAND" || exit 1;\
done; \
else \
echo "Cannot find Scilab-adv-cli binary"; \
fi
else
@echo "Cannot buid help. Add --enable-build-help to the ./configure if you want to build it."
endif
doc-web: javadoc $(top_builddir)/scilab-bin $(top_builddir)/bin/scilab-adv-cli
if BUILD_HELP
@if test -x $(top_builddir)/scilab-bin; then \
cd $(top_builddir);\
for l in $(ALL_LINGUAS_DOC); do \
echo "-- Building documentation ($$l) --"; \
COMMAND="try xmltoweb([],[],'$$l');catch exit(-1);end;exit(0);";\
echo "LANG=C SCI_DISABLE_TK=1 SCI_JAVA_ENABLE_HEADLESS=1 $(top_builddir)/bin/scilab-adv-cli -nb -l $$l -noatomsautoload -nouserstartup -e \"$$COMMAND\"";\
LANG=C SCI_DISABLE_TK=1 SCI_JAVA_ENABLE_HEADLESS=1 $(top_builddir)/bin/scilab-adv-cli -nb -l $$l -noatomsautoload -nouserstartup -e "$$COMMAND" || exit 1;\
JAVADOC_TARGET=$(top_builddir)/modules/helptools/web/$$l/javasci; \
if test ! -d $$JAVADOC_TARGET; then \
mkdir $$JAVADOC_TARGET; \
ln -s ../../../../javasci/javadoc/ $$JAVADOC_TARGET/; \
fi; \
done; \
else \
echo "Cannot find Scilab-adv-cli binary"; \
fi
else
@echo "Cannot buid help. Add --enable-build-help to the ./configure if you want to build it."
endif
doxygen: modules/development_tools/etc/doxyfile
if DOXYGEN
mkdir $(top_builddir)/reports/
$(DOXYGEN_BIN) modules/development_tools/etc/doxyfile
endif
check-help:$(top_builddir)/scilab-cli-bin $(top_builddir)/bin/scilab-cli
@if test -x $(top_builddir)/scilab-cli-bin; then \
for l in $(ALL_LINGUAS_DOC); do \
echo "-- Checking documentation ($$l) --"; \
COMMAND="try check_help();catch exit(-1);end;exit(0);";\
echo "$(top_builddir)/bin/scilab-cli -nb -l $$l -noatomsautoload -e \"$$COMMAND\"";\
$(top_builddir)/bin/scilab-cli -nb -l $$l -noatomsautoload -e "$$COMMAND" || exit 1;\
done; \
else \
echo "Cannot find Scilab binary"; \
fi
code-coverage:
if CODE_COVERAGE
@if test ! -d $(top_builddir)/coverage/; then \
mkdir $(top_builddir)/coverage/; \
fi; \
touch $(top_srcdir)/modules/differential_equations/callinter.h.f $(top_srcdir)/modules/linear_algebra/callinter.h.f $(top_srcdir)/modules/scicos/callinter.h.f $(top_srcdir)/modules/scicos_blocks/callinter.h.f $(top_srcdir)/modules/optimization/callinter.h.f $(top_srcdir)/modules/signal_processing/callinter.h.f; \
$(LCOV) --directory $(top_builddir) --capture --ignore-errors source --output-file $(top_builddir)/coverage/scilab-code-coverage.info; \
if test ! -f ~/.lcovrc; then echo -e "genhtml_hi_limit = 85\ngenhtml_med_limit = 70" > ~/.lcovrc; fi; \
$(GENHTML) -o $(top_builddir)/coverage/results/ --show-details --highlight --legend $(top_builddir)/coverage/scilab-code-coverage.info; \
rm -f $(top_builddir)/coverage/lcovrc; \
echo "To open the result: firefox $(top_builddir)/coverage/results/index.html"; \
rm -f $(top_srcdir)/modules/differential_equations/callinter.h.f $(top_srcdir)/modules/linear_algebra/callinter.h.f $(top_srcdir)/modules/scicos/callinter.h.f $(top_srcdir)/modules/scicos_blocks/callinter.h.f $(top_srcdir)/modules/optimization/callinter.h.f $(top_srcdir)/modules/signal_processing/callinter.h.f
#--frames is disable because of : http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607206
else
@echo "Cannot start the code coverage. Add --enable-code-coverage to the ./configure and 'make clean all'."
endif
distclean-recursive: distclean-generated clean-recursive
clean-recursive: clean-help clean-localization clean-macros clean-generated
clean-macros:
# Find is necessary because of subdirs...
-@echo "-- Cleaning macros (*.bin) --"; \
find $(top_builddir) -name "*.bin" | xargs --no-run-if-empty rm 2> /dev/null; \
echo "-- Cleaning names files (names) --"; \
find $(top_builddir)/modules/*/macros -name "names" | xargs --no-run-if-empty rm 2> /dev/null; \
echo "-- Cleaning lib files (lib) --"; \
find $(top_builddir)/modules/*/macros -name "lib" | xargs --no-run-if-empty rm 2> /dev/null
# To ensure previous compatibility
clean-doc: clean-help
clean-help:
-@if test -x $(top_builddir)/scilab-cli-bin; then \
COMMAND="try clean_help();catch exit(-1);end;exit(0)"; \
for l in $(ALL_LINGUAS_DOC); do \
echo "$(top_builddir)/bin/scilab-cli -nb -l $$l -noatomsautoload -e '$$COMMAND'"; \
$(top_builddir)/bin/scilab-cli -nb -l $$l -noatomsautoload -e "$$COMMAND" || exit 1; \
done; \
else \
echo "Cannot find Scilab binary"; \
fi; \
echo "rmdir $(top_builddir)/modules/helptools/javaHelp/"; \
rm -rf $(top_builddir)/modules/helptools/javaHelp/; \
echo "rm -rf $(top_builddir)/modules/scicos/help/*/scilab_*_help"; \
rm -rf $(top_builddir)/modules/scicos/help/*/scilab_*_help; \
echo "rm -f $(top_builddir)/modules/scicos/help/en_US/master_help.xml"; \
rm -f $(top_builddir)/modules/scicos/help/en_US/master_help.xml; \
echo "rm -f $(top_builddir)/modules/scicos/jar/"; \
rm -rf $(top_builddir)/modules/scicos/jar/; \
echo "rm -rf $(top_builddir)/modules/javasci/javadoc"; \
rm -rf $(top_builddir)/modules/javasci/javadoc; \
echo "rm -rf $(top_builddir)/html"; \
rm -rf $(top_builddir)/html;
clean-tests:
@if test -x $(top_builddir)/scilab-cli-bin; then \
$(top_builddir)/bin/scilab-cli -nb -noatomsautoload -l fr -e 'try test_clean();catch exit(-1);end;exit(0);' || exit 1; \
else \
echo "Cannot find Scilab binary"; \
fi
clean-localization:
rm -rf $(top_srcdir)/locale/*
clean-generated:
# Deleted junit + code coverage
rm -rf $(top_builddir)/reports/
rm -rf $(top_builddir)/modules/scicos_blocks/build/ 2> /dev/null
distclean-generated:
rm -f $(top_builddir)/modules/core/includes/stack.h 2> /dev/null
if IS_MACOSX
# Used for mac os x because it needs to remove the charset=UTF-8 because it is breaking the accents.
MACOSX=1
endif
clean-reports:
rm -f reports/xml/TEST-org.scilab.*.xml
# For each module, build and call Java unitary tests
# If fails, stops the call
check-java: clean-reports
@echo "-- Launch all Junit (Java) unitary tests"; \
MASK="$(top_srcdir)/modules/*/tests/java/"; \
MODULES=`ls -d $$MASK`; \
for M in $$MODULES; do \
BASE=`echo $$M|sed -e "s|tests/java/$$||g"`; \
$(ANT) -buildfile $$BASE/build.xml test || exit $$?; \
done
rm -f reports/xml/TEST-org.scilab.*.xml
codecoverage-java: clean-reports
@echo "Check if --enable-debug-java has been set"; \
grep "build.debug=on" $(top_srcdir)/scilab.properties > /dev/null || exit 10; \
echo "-- Launch all Junit (Java) unitary tests + code coverage"; \
MASK="$(top_srcdir)/modules/*/tests/java/"; \
MODULES=`ls -d $$MASK`; \
for M in $$MODULES; do \
BASE=`echo $$M|sed -e "s|tests/java/$$||g"`; \
$(ANT) -buildfile $$BASE/build.xml codecoverage || exit $$?; \
done
rm -f reports/xml/TEST-org.scilab.*.xml
# The user wants to compile the localization files
# Please note that ALL_LINGUAS is defined in configure.ac
if GENERATE_LOCALIZATION_FILES
localization:
@echo "-- Build localization (.mo from .po) --"; \
MASK="modules/*/locales/"; \
LC="LC_MESSAGES"; \
MSGFMT_OPTS="$MSGFMT_OPTS --check"; \
EXTENSION="*.po"; \
rm modules/*/locales/*~ 2> /dev/null; \
for LOCALE in $(ALL_LINGUAS); do \
echo " -- Building for $$LOCALE --"; \
if test "$$LOCALE" == "en_US"; then \
LOCFILE=$$MASK/*.pot; \
else \
LOCFILE=$$MASK/$$LOCALE$$EXTENSION; \
fi; \
FILES=`ls $$LOCFILE`; \
PATHTO=$(top_builddir)/locale/$$LOCALE/$$LC/; \
if test ! -d $$PATHTO; then \
echo " Creating $$PATHTO"; \
mkdir -p $$PATHTO; \
fi; \
POFILE=$$PATHTO/$(LANG_DOMAIN).po; \
$(MSGCAT) --use-first -o $$POFILE $$FILES || exit 2; \
if test "$(MACOSX)" = "1"; then sed -i -e '/charset=UTF-8/d' $$POFILE; fi; \
$(MSGFMT) $(MSGFMT_OPTS) --statistics -o $$PATHTO/$(LANG_DOMAIN).mo $$POFILE || exit 2; \
done;
localization-status:
@for LOCALE in $(ALL_LINGUAS_DOC); do \
if test "$$LOCALE" != "en_US"; then \
PATHTO=$(top_builddir)/locale-status/$$LOCALE/; \
if test ! -d $$PATHTO; then \
echo " Creating $$PATHTO"; \
mkdir -p $$PATHTO; \
fi; \
echo "Building status for $$LOCALE"; \
echo "SCI=$(top_srcdir) php tools/localization/revcheck.php $$LOCALE > $$PATHTO/index.html"; \
SCI=$(top_srcdir) php tools/localization/revcheck.php $$LOCALE > $$PATHTO/index.html; \
fi; \
done;
endif
# Misc variable for the documentation installation
# How help files look like.
DOCMASK=scilab_*_help.jar
DOCIMAGES=scilab_images.jar
# Path to built files
PATHTOHELPFILES = modules/helptools/jar/
# Path to scirenderer jar
PATHTOSCIRENDERER = modules/scirenderer/jar/
SCIRENDERERJAR = scirenderer.jar
# Path javasci to built files
PATHTOJAVASCIDOC = modules/javasci/javadoc/
JAVASCI_DIRS = . resources \
org/scilab/modules/javasci/ \
org/scilab/modules/types/
install-data-local:
if GENERATE_LOCALIZATION_FILES
@$(mkinstalldirs) $(DESTDIR)$(localedir); \
echo $(mkinstalldirs) $(DESTDIR)$(localedir); \
for lang in $(ALL_LINGUAS); do \
LANG_PATH_DIST=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/; \
echo $(mkinstalldirs) $$LANG_PATH_DIST; \
$(mkinstalldirs) $$LANG_PATH_DIST; \
echo $(INSTALL_DATA) $(top_builddir)/locale/$$lang/LC_MESSAGES/$(LANG_DOMAIN).mo $$LANG_PATH_DIST/; \
$(INSTALL_DATA) $(top_builddir)/locale/$$lang/LC_MESSAGES/$(LANG_DOMAIN).mo $$LANG_PATH_DIST/; \
done
endif
################ INSTALL DOCUMENTATION #################
# Starting from Scilab 5, documentation file are provided by Docbook
# In the Scilab application we are generating a JavaHelp file.
if BUILD_HELP
@$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOHELPFILES); \
echo $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOHELPFILES); \
if ls -lLd $(top_builddir)/$(PATHTOHELPFILES)/$(DOCMASK) >/dev/null 2>&1; then \
for file in $(top_builddir)/$(PATHTOHELPFILES)/$(DOCMASK) $(top_builddir)/$(PATHTOHELPFILES)/$(DOCIMAGES); do \
echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdatadir)/$(PATHTOHELPFILES)" ; \
$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdatadir)/$(PATHTOHELPFILES) ; \
done; \
fi
## Install Javasci documentation (javadoc)
## See target javadoc in this file to see how it is build
@if test -d $(PATHTOJAVASCIDOC); then \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC); \
echo $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC); \
for dir in $(JAVASCI_DIRS) ; do \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir; \
echo $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir; \
for file in $(top_builddir)/$(PATHTOJAVASCIDOC)/$(dir)/*; do \
echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir" ; \
$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdatadir)/$(PATHTOJAVASCIDOC)/$$dir ; \
done; \
done; \
fi
endif
if !EXTERNAL_SCIRENDERER
if GUI
# Also install scirenderer.jar
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$(PATHTOSCIRENDERER)
$(INSTALL_DATA) $(top_builddir)/$(PATHTOSCIRENDERER)/$(SCIRENDERERJAR) $(DESTDIR)$(pkgdatadir)/$(PATHTOSCIRENDERER)/
endif
endif
# Pkgconfig directory
pkgconfigdir = $(libdir)/pkgconfig
# Files to install in Pkgconfig directory
pkgconfig_DATA = scilab.pc
.PHONY: macros localization doc
.NOTPARALLEL: macros doc
include $(top_srcdir)/Makefile.call_scilab.am
|