FIXED Makefiles so that the NeXus support will not be built if it has not been enabled during the configure stage

This commit is contained in:
Bastian M. Wojek 2011-04-12 09:53:26 +00:00
parent 201808b055
commit f471eb2efe
4 changed files with 8 additions and 7 deletions

View File

@ -6,6 +6,7 @@
changes since 0.9.0
===================================
FIXED Makefiles so that the NeXus support will not be built if it has not been enabled during the configure stage
FIXED ASCII export from musrview in case of a Fourier-Power- or Fourier-Phase-difference plot
FIXED bug in asymmetry fit with fixed background

View File

@ -1,9 +1,13 @@
## Process this file with automake to create Makefile.in
if PNEXUS_ENABLED
PNEXUSDIRS = external/nexus
endif
SUBDIRS = external/TLemRunHeader \
external/MuSR_software \
external/mud \
external/nexus \
$(PNEXUSDIRS) \
classes \
external

View File

@ -1,9 +1,5 @@
## $Id$
if PNEXUS_ENABLED
PNEXUSDIRS = nexus
endif
if BUILD_ASLIBS
ASDIRS = Nonlocal \
MagProximity
@ -21,4 +17,4 @@ if BUILD_BMWLIBS
libCalcMeanFieldsLEM
endif
SUBDIRS = $(PNEXUSDIR) $(ASDIRS) $(CUBADIRS) $(BMWDIRS)
SUBDIRS = $(ASDIRS) $(CUBADIRS) $(BMWDIRS)

View File

@ -17,7 +17,7 @@ CLEANFILES = *~ core
lib_LTLIBRARIES = libPNeXus.la
libPNeXus_la_SOURCES = $(h_sources) $(cpp_sources)
libPNeXus_la_SOURCES = $(h_sources) $(cpp_sources)
libPNeXus_la_LIBADD = $(NEXUS_LIBS)
libPNeXus_la_LDFLAGS = -version-info $(PNEXUS_LIBRARY_VERSION) -release $(PNEXUS_RELEASE) $(AM_LDFLAGS)