
In order to enable building of the additional libraries supply the following options to the configure script: --enable-BMWlibs (for libTFitPofB libLFRelaxation libGapIntegrals libCalcMeanFieldsLEM) --enable-ASlibs (for libPNL_PippardFitter) By default, both options are disabled. At the moment I have tested it only in an SL5 32-bit environment. Further tests are going to follow. For a clean installation I suggest to remove any musrfit and plug-in installations before newly building musrfit.
27 lines
818 B
Makefile
27 lines
818 B
Makefile
## Process this file with automake to create Makefile.in
|
|
|
|
SUBDIRS = external/TLemRunHeader \
|
|
external/MuSR_software \
|
|
external/mud \
|
|
classes \
|
|
external
|
|
|
|
bin_PROGRAMS = musrfit musrview musrt0 musrparam msr2msr msr2data
|
|
musrfit_SOURCES = musrfit.cpp
|
|
musrview_SOURCES = musrview.cpp
|
|
musrt0_SOURCES = musrt0.cpp
|
|
musrparam_SOURCES = musrparam.cpp
|
|
msr2msr_SOURCES = msr2msr.cpp
|
|
msr2data_SOURCES = msr2data.cpp
|
|
|
|
xmldir = $(bindir)
|
|
xml_DATA = musrfit_startup.xml
|
|
|
|
LIBADD = $(PMUSR_LIBS) $(LEM_LIBS) $(PSIBIN_LIBS) $(MUD_LIBS)
|
|
|
|
AM_CXXFLAGS = $(LOCAL_BIN_CXXFLAGS)
|
|
AM_LDFLAGS = $(LOCAL_BIN_LDFLAGS)
|
|
INCLUDES = $(PMUSR_CFLAGS) $(FFTW3_CFLAGS) $(GSL_CFLAGS) $(BOOST_CFLAGS) $(ROOT_CFLAGS)
|
|
LIBS = $(PMUSR_LIBS) $(LEM_LIBS) $(PSIBIN_LIBS) $(MUD_LIBS) $(FFTW3_LIBS) $(GSL_LIBS) $(ROOT_LIBS)
|
|
|