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
|
# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
# Copyright (C) 2006-2008 - INRIA - 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-en.txt
LOCALIZATION_C_SOURCES = \
src/c/InitializeLocalization.c \
src/c/setgetlanguage.c \
src/c/charEncoding.c
if NEED_JAVA
LOCALIZATION_C_SOURCES+=src/jni/Messages_wrap.c
endif
if IS_MACOSX
LOCALIZATION_C_SOURCES += src/c/getLocaleInfo_Apple.c
endif
GATEWAY_C_SOURCES = sci_gateway/c/gw_localization.c \
sci_gateway/c/sci_gettext.c \
sci_gateway/c/sci_dgettext.c \
sci_gateway/c/sci_setlanguage.c \
sci_gateway/c/sci_getdefaultlanguage.c \
sci_gateway/c/sci_getlanguage.c \
sci_gateway/c/sci_setdefaultlanguage.c
libscilocalization_la_CFLAGS= $(JAVA_JNI_INCLUDE) \
-I/sw/include \
-I$(srcdir)/includes/ \
-I$(srcdir)/src/c/ \
-I$(top_srcdir)/libs/MALLOC/includes/ \
-I$(top_srcdir)/modules/string/includes \
-I$(top_srcdir)/modules/fileio/includes \
-I$(top_srcdir)/modules/api_scilab/includes \
-I$(top_srcdir)/modules/output_stream/includes
pkglib_LTLIBRARIES = libscilocalization.la
libscilocalization_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION)
if IS_MACOSX
libscilocalization_la_LDFLAGS += -lintl -framework Cocoa
libscilocalization_la_CFLAGS += -lintl -framework Cocoa
endif
libscilocalization_la_SOURCES = $(LOCALIZATION_C_SOURCES) $(GATEWAY_C_SOURCES)
# For the code check (splint)
CHECK_SRC= $(libscilocalization_la_SOURCES)
INCLUDE_FLAGS = $(libscilocalization_la_CFLAGS)
libscilocalization_la_LIBADD = $(top_builddir)/modules/core/libscicore.la $(top_builddir)/libs/MALLOC/libscimalloc.la $(top_builddir)/modules/output_stream/libscioutput_stream.la
# $(top_builddir)/modules/io/libsciio.la
#### Target ######
modulename=localization
#### localization : Conf files ####
libscilocalization_la_rootdir = $(mydatadir)
libscilocalization_la_root_DATA = changelog.txt license.txt readme.txt version.xml
####localization : init scripts ####
libscilocalization_la_etcdir = $(mydatadir)/etc
libscilocalization_la_etc_DATA = etc/localization.quit etc/localization.start
####�localization : gateway declaration ####
libscilocalization_la_sci_gatewaydir = $(mydatadir)/sci_gateway
libscilocalization_la_sci_gateway_DATA = sci_gateway/localization_gateway.xml
####localization : include files ####
libscilocalization_la_includedir=$(pkgincludedir)
libscilocalization_la_include_HEADERS = includes/localization.h \
includes/setgetlanguage.h \
includes/charEncoding.h
if GUI
USEANT=1
endif
#### SWIG Declaration ####
SWIG_WRAPPERS = src/jni/Messages.i
if SWIG
BUILT_SOURCES=swig
endif
include $(top_srcdir)/Makefile.incl.am
|