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
|
##########
### Sylvestre Ledru <sylvestre.ledru@inria.fr>
### INRIA - Scilab 2006
##########
GATEWAY_C_SOURCES = sci_gateway/c/sci_dlgamma.c \
sci_gateway/c/sci_oldbessely.c \
sci_gateway/c/sci_bessely.c \
sci_gateway/c/sci_beta.c \
sci_gateway/c/sci_gamma.c \
sci_gateway/c/sci_oldbesseli.c \
sci_gateway/c/sci_legendre.c \
sci_gateway/c/sci_besselh.c \
sci_gateway/c/sci_oldbesselj.c \
sci_gateway/c/sci_besseli.c \
sci_gateway/c/sci_besselj.c \
sci_gateway/c/sci_oldbesselk.c \
sci_gateway/c/sci_besselk.c \
sci_gateway/c/sci_calerf.c \
sci_gateway/c/gw_special_functions1.c \
sci_gateway/c/gw_special_functions2.c \
sci_gateway/c/sci_lgamma.c
GATEWAY_FORTRAN_SOURCES = sci_gateway/fortran/sci_f_dlgamma.f \
sci_gateway/fortran/sci_f_lgamma.f \
sci_gateway/fortran/sci_f_oldbesseli.f \
sci_gateway/fortran/sci_f_gamma.f \
sci_gateway/fortran/sci_f_oldbessely.f \
sci_gateway/fortran/sci_f_oldbesselj.f \
sci_gateway/fortran/sci_f_oldbesselk.f \
sci_gateway/fortran/sci_f_calerf.f
libscispecial_functions_la_includedir=$(pkgincludedir)
libscispecial_functions_la_CFLAGS= -I$(srcdir)/includes/ \
-I$(top_srcdir)/modules/api_scilab/includes \
-I$(top_srcdir)/modules/elementary_functions/includes/ \
-I$(top_srcdir)/modules/output_stream/includes/
pkglib_LTLIBRARIES = libscispecial_functions.la
libscispecial_functions_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION)
libscispecial_functions_la_SOURCES = $(GATEWAY_C_SOURCES) $(GATEWAY_FORTRAN_SOURCES)
# For the code check (splint)
CHECK_SRC = $(GATEWAY_C_SOURCES)
INCLUDE_FLAGS = $(libscispecial_functions_la_CFLAGS)
libscispecial_functions_la_LIBADD = $(top_builddir)/modules/core/libscicore.la $(top_builddir)/modules/output_stream/libscioutput_stream.la $(top_builddir)/modules/elementary_functions/libscielementary_functions.la $(top_builddir)/modules/statistics/libscistatistics.la
#### Target ######
modulename=special_functions
#### special_functions : Conf files ####
libscispecial_functions_la_rootdir = $(mydatadir)
libscispecial_functions_la_root_DATA = changelog.txt license.txt readme.txt version.xml
####special_functions : init scripts ####
libscispecial_functions_la_etcdir = $(mydatadir)/etc
libscispecial_functions_la_etc_DATA = etc/special_functions.quit etc/special_functions.start
####special_functions : gateway declaration ####
libscispecial_functions_la_sci_gatewaydir = $(mydatadir)/sci_gateway
libscispecial_functions_la_sci_gateway_DATA = sci_gateway/special_functions_gateway.xml
include $(top_srcdir)/Makefile.incl.am
|