File: Makefile.am

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (45 lines) | stat: -rw-r--r-- 1,676 bytes parent folder | download
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