1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-12 17:35:35 +00:00

more example Makefile.am fix

This commit is contained in:
Antonin Portelli 2015-03-20 16:14:35 +00:00
parent 0db8f5e6bb
commit adc709d40f

View File

@ -20,13 +20,12 @@ noinst_PROGRAMS = \
exIntegrator \ exIntegrator \
exMat \ exMat \
exMathInterpreter \ exMathInterpreter \
exMin \
exPlot \ exPlot \
exRand \ exRand \
exRootFinder exRootFinder
if HAVE_MINUIT if HAVE_MINUIT
noinst_PROGRAMS += exFit noinst_PROGRAMS += exFit exMin
endif endif
exCompiledDoubleFunction_SOURCES = exCompiledDoubleFunction.cpp exCompiledDoubleFunction_SOURCES = exCompiledDoubleFunction.cpp
@ -51,9 +50,11 @@ exMat_SOURCES = exMat.cpp
exMat_CFLAGS = -g -O2 exMat_CFLAGS = -g -O2
exMat_LDFLAGS = -L../lib/.libs -lLatAnalyze exMat_LDFLAGS = -L../lib/.libs -lLatAnalyze
if HAVE_MINUIT
exMin_SOURCES = exMin.cpp exMin_SOURCES = exMin.cpp
exMin_CFLAGS = -g -O2 exMin_CFLAGS = -g -O2
exMin_LDFLAGS = -L../lib/.libs -lLatAnalyze exMin_LDFLAGS = -L../lib/.libs -lLatAnalyze
endif
exMathInterpreter_SOURCES = exMathInterpreter.cpp exMathInterpreter_SOURCES = exMathInterpreter.cpp
exMathInterpreter_CFLAGS = -g -O2 exMathInterpreter_CFLAGS = -g -O2