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
|
##########
### Sylvestre Ledru <sylvestre.ledru@inria.fr>
### INRIA - Scilab 2007
##########
# List of the c files
WINDOWS_TOOLS_C_SOURCES = src/nowindows_tools/nowindows_tools.c
# Includes need for the compilation
libsciwindows_tools_la_CFLAGS= -I$(srcdir)/includes/ \
-I$(srcdir)/src/c/ \
-I$(top_srcdir)/libs/MALLOC/includes/ \
-I$(top_srcdir)/modules/api_scilab/includes \
-I$(top_srcdir)/modules/output_stream/includes
# Name of the future library (.la will be replace by .so, .a, etc regarding
# the system)
pkglib_LTLIBRARIES = libsciwindows_tools.la
libsciwindows_tools_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION)
# All the sources needed by libsciwindows_tools.la
libsciwindows_tools_la_SOURCES = $(WINDOWS_TOOLS_C_SOURCES)
## Libraries necessary
## Change to include other Scilab modules/lib
libsciwindows_tools_la_LIBADD = $(top_builddir)/modules/output_stream/libscioutput_stream.la
#### Name of the module and the path ######
modulename=windows_tools
#### windows_tools : Conf files ####
libsciwindows_tools_la_rootdir = $(mydatadir)
libsciwindows_tools_la_root_DATA = changelog.txt license.txt readme.txt version.xml
#### windows_tools : init scripts ####
libsciwindows_tools_la_etcdir = $(mydatadir)/etc
libsciwindows_tools_la_etc_DATA = etc/windows_tools.quit etc/windows_tools.start
#### windows_tools : gateway declaration ####
libsciwindows_tools_la_sci_gatewaydir = $(mydatadir)/sci_gateway
libsciwindows_tools_la_sci_gateway_DATA = sci_gateway/windows_tools_gateway.xml
# Provides macros compilation, Java compilation, cleaning
# If you want Makefile to call ant, added USEANT=1
include $(top_srcdir)/Makefile.incl.am
|