2013-05-01 14:35:30 +01:00
|
|
|
if CXX_GNU
|
2016-04-07 20:10:47 +01:00
|
|
|
COM_CXXFLAGS = -Wall -W -pedantic -Wno-deprecated-declarations
|
2013-05-01 14:35:30 +01:00
|
|
|
else
|
|
|
|
if CXX_INTEL
|
2016-04-07 20:10:47 +01:00
|
|
|
COM_CXXFLAGS = -wd1682 -Wall
|
2013-05-01 14:35:30 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-02-06 18:07:27 +00:00
|
|
|
noinst_PROGRAMS = \
|
2014-02-10 11:22:56 +00:00
|
|
|
exCompiledDoubleFunction\
|
2014-09-26 18:40:52 +01:00
|
|
|
exDerivative \
|
2016-04-12 20:31:53 +01:00
|
|
|
exFit \
|
|
|
|
exFitSample \
|
2014-04-17 12:17:34 +01:00
|
|
|
exIntegrator \
|
2015-11-12 13:14:10 +00:00
|
|
|
exInterp \
|
2014-02-10 11:22:56 +00:00
|
|
|
exMat \
|
|
|
|
exMathInterpreter \
|
2016-04-12 20:31:53 +01:00
|
|
|
exMin \
|
2014-02-10 16:01:39 +00:00
|
|
|
exPlot \
|
2014-09-22 15:19:30 +01:00
|
|
|
exRand \
|
|
|
|
exRootFinder
|
2014-02-10 11:22:56 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exCompiledDoubleFunction_SOURCES = exCompiledDoubleFunction.cpp
|
|
|
|
exCompiledDoubleFunction_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exCompiledDoubleFunction_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-02-10 11:22:56 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exDerivative_SOURCES = exDerivative.cpp
|
|
|
|
exDerivative_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exDerivative_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-09-26 18:40:52 +01:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exFit_SOURCES = exFit.cpp
|
|
|
|
exFit_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exFit_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
|
|
|
|
|
|
|
exFitSample_SOURCES = exFitSample.cpp
|
|
|
|
exFitSample_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exFitSample_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2016-03-08 19:37:51 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exInterp_SOURCES = exInterp.cpp
|
|
|
|
exInterp_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exInterp_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2015-11-12 13:14:10 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exIntegrator_SOURCES = exIntegrator.cpp
|
|
|
|
exIntegrator_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exIntegrator_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-04-17 12:17:34 +01:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exMat_SOURCES = exMat.cpp
|
|
|
|
exMat_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exMat_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exMin_SOURCES = exMin.cpp
|
|
|
|
exMin_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exMin_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-02-20 20:21:45 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exMathInterpreter_SOURCES = exMathInterpreter.cpp
|
|
|
|
exMathInterpreter_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exMathInterpreter_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-02-06 18:07:27 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exPlot_SOURCES = exPlot.cpp
|
|
|
|
exPlot_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exPlot_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exRand_SOURCES = exRand.cpp
|
|
|
|
exRand_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exRand_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-02-10 16:01:39 +00:00
|
|
|
|
2016-03-16 20:03:32 +00:00
|
|
|
exRootFinder_SOURCES = exRootFinder.cpp
|
|
|
|
exRootFinder_CXXFLAGS = $(COM_CXXFLAGS)
|
|
|
|
exRootFinder_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
2014-09-22 15:19:30 +01:00
|
|
|
|
2013-05-01 14:35:30 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I .buildutils/m4
|