2013-05-01 14:35:30 +01:00
|
|
|
if CC_GNU
|
|
|
|
COM_CFLAGS = -Wall -W -pedantic
|
|
|
|
else
|
|
|
|
if CC_INTEL
|
|
|
|
COM_CFLAGS = -Wall
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if CXX_GNU
|
|
|
|
COM_CXXFLAGS = -Wall -W -pedantic
|
|
|
|
else
|
|
|
|
if CXX_INTEL
|
|
|
|
COM_CXXFLAGS = -Wall
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-02-06 18:07:27 +00:00
|
|
|
noinst_PROGRAMS = \
|
2014-02-10 11:22:56 +00:00
|
|
|
exCompiledDoubleFunction\
|
|
|
|
exMat \
|
|
|
|
exMathInterpreter \
|
2014-02-10 16:01:39 +00:00
|
|
|
exPlot \
|
|
|
|
exRand
|
2014-02-10 11:22:56 +00:00
|
|
|
|
|
|
|
exCompiledDoubleFunction_SOURCES = exCompiledDoubleFunction.cpp
|
|
|
|
exCompiledDoubleFunction_CFLAGS = -g -O2
|
|
|
|
exCompiledDoubleFunction_LDFLAGS = -L../latan/.libs -llatan
|
|
|
|
|
|
|
|
exMat_SOURCES = exMat.cpp
|
|
|
|
exMat_CFLAGS = -g -O2
|
|
|
|
exMat_LDFLAGS = -L../latan/.libs -llatan
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2014-02-06 18:07:27 +00:00
|
|
|
exMathInterpreter_SOURCES = exMathInterpreter.cpp
|
|
|
|
exMathInterpreter_CFLAGS = -g -O2
|
|
|
|
exMathInterpreter_LDFLAGS = -L../latan/.libs -llatan
|
|
|
|
|
2014-02-10 11:22:56 +00:00
|
|
|
exPlot_SOURCES = exPlot.cpp
|
|
|
|
exPlot_CFLAGS = -g -O2
|
|
|
|
exPlot_LDFLAGS = -L../latan/.libs -llatan
|
2013-05-01 14:35:30 +01:00
|
|
|
|
2014-02-10 16:01:39 +00:00
|
|
|
exRand_SOURCES = exRand.cpp
|
|
|
|
exRand_CFLAGS = -g -O2
|
|
|
|
exRand_LDFLAGS = -L../latan/.libs -llatan
|
|
|
|
|
2013-05-01 14:35:30 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I .buildutils/m4
|