1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/examples/Makefile.am

55 lines
1.5 KiB
Makefile
Raw Normal View History

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
noinst_PROGRAMS = \
exCompiledDoubleFunction\
2014-03-03 12:41:48 +00:00
exFit \
exMat \
exMathInterpreter \
2014-02-20 20:21:45 +00:00
exMin \
2014-02-10 16:01:39 +00:00
exPlot \
exRand
exCompiledDoubleFunction_SOURCES = exCompiledDoubleFunction.cpp
exCompiledDoubleFunction_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exCompiledDoubleFunction_LDFLAGS = -L../lib/.libs -lLatAnalyze
2014-03-03 12:41:48 +00:00
exFit_SOURCES = exFit.cpp
exFit_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exFit_LDFLAGS = -L../lib/.libs -lLatAnalyze
2014-03-03 12:41:48 +00:00
exMat_SOURCES = exMat.cpp
exMat_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exMat_LDFLAGS = -L../lib/.libs -lLatAnalyze
2013-05-01 14:35:30 +01:00
2014-02-20 20:21:45 +00:00
exMin_SOURCES = exMin.cpp
exMin_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exMin_LDFLAGS = -L../lib/.libs -lLatAnalyze
2014-02-20 20:21:45 +00:00
exMathInterpreter_SOURCES = exMathInterpreter.cpp
exMathInterpreter_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exMathInterpreter_LDFLAGS = -L../lib/.libs -lLatAnalyze
exPlot_SOURCES = exPlot.cpp
exPlot_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exPlot_LDFLAGS = -L../lib/.libs -lLatAnalyze
2013-05-01 14:35:30 +01:00
2014-02-10 16:01:39 +00:00
exRand_SOURCES = exRand.cpp
exRand_CFLAGS = -g -O2
2014-04-07 15:56:53 +01:00
exRand_LDFLAGS = -L../lib/.libs -lLatAnalyze
2014-02-10 16:01:39 +00:00
2013-05-01 14:35:30 +01:00
ACLOCAL_AMFLAGS = -I .buildutils/m4