From 0345245e860375a32c9a437c4a9d9cae807134e9 Mon Sep 17 00:00:00 2001 From: Shashank Date: Mon, 29 May 2017 12:40:26 +0530 Subject: CMSCOPE changed --- modules/boolean/Makefile.am | 61 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100755 modules/boolean/Makefile.am (limited to 'modules/boolean/Makefile.am') diff --git a/modules/boolean/Makefile.am b/modules/boolean/Makefile.am new file mode 100755 index 000000000..2c57b47bf --- /dev/null +++ b/modules/boolean/Makefile.am @@ -0,0 +1,61 @@ +# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +# Copyright (C) 2006 - INRIA - Sylvestre LEDRU +# +# This file is distributed under the same license as the Scilab package. + + +BOOLEAN_C_SOURCES = src/c/matboolean.c \ +src/c/vect_or.c \ +src/c/vect_and.c + +BOOLEAN_FORTRAN_SOURCES = src/fortran/logic.f + +GATEWAY_C_SOURCES = sci_gateway/c/sci_and.c \ +sci_gateway/c/sci_or.c \ +sci_gateway/c/sci_bool2s.c \ +sci_gateway/c/gw_boolean.c + +GATEWAY_FORTRAN_SOURCES = sci_gateway/fortran/sci_f_bool2s.f + +libsciboolean_la_CPPFLAGS= -I$(srcdir)/includes/ \ + -I$(srcdir)/src/c/ \ + -I$(top_srcdir)/modules/api_scilab/includes/ \ + -I$(top_srcdir)/modules/localization/includes/ \ + -I$(top_srcdir)/modules/output_stream/includes/ \ + $(AM_CPPFLAGS) + +if MAINTAINER_MODE +pkglib_LTLIBRARIES = libsciboolean.la +noinst_LTLIBRARIES = libsciboolean-algo.la +else +noinst_LTLIBRARIES = libsciboolean-algo.la libsciboolean.la +endif + + + +libsciboolean_algo_la_SOURCES = $(BOOLEAN_C_SOURCES) $(BOOLEAN_FORTRAN_SOURCES) +libsciboolean_la_SOURCES = $(GATEWAY_C_SOURCES) $(GATEWAY_FORTRAN_SOURCES) +libsciboolean_algo_la_CPPFLAGS = $(libsciboolean_la_CPPFLAGS) + +# For the code check (splint) +CHECK_SRC= $(BOOLEAN_C_SOURCES) $(GATEWAY_C_SOURCES) +INCLUDE_FLAGS = $(libsciboolean_la_CPPFLAGS) + +libsciboolean_la_LIBADD = libsciboolean-algo.la + +modulename=boolean + +#### boolean : Conf files #### +libsciboolean_la_rootdir = $(mydatadir) +libsciboolean_la_root_DATA = license.txt + + +#### boolean : init scripts #### +libsciboolean_la_etcdir = $(mydatadir)/etc +libsciboolean_la_etc_DATA = etc/boolean.quit etc/boolean.start + +#### boolean : gateway declaration #### +libsciboolean_la_sci_gatewaydir = $(mydatadir)/sci_gateway +libsciboolean_la_sci_gateway_DATA = sci_gateway/boolean_gateway.xml + +include $(top_srcdir)/Makefile.incl.am -- cgit