diff options
author | Thomas White <taw@bitwiz.org.uk> | 2012-01-20 12:50:09 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:43 +0100 |
commit | 4a56d62ddc2a710b3dfecfdfa134755fd3d6c521 (patch) | |
tree | 044990eae2a389bbf6ed2ddc3d8016fe499d121f /libcrystfel/Makefile.am | |
parent | 2bf4d1938789dd580ad266bd6dbce63f45991580 (diff) |
Don't compile or use ReAx if FFTW is not available
Diffstat (limited to 'libcrystfel/Makefile.am')
-rw-r--r-- | libcrystfel/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libcrystfel/Makefile.am b/libcrystfel/Makefile.am index 1dc9258f..cebb20e9 100644 --- a/libcrystfel/Makefile.am +++ b/libcrystfel/Makefile.am @@ -6,8 +6,11 @@ libcrystfel_la_SOURCES = src/reflist.c src/utils.c src/cell.c src/detector.c \ src/beam-parameters.c src/geometry.c src/statistics.c \ src/symmetry.c src/stream.c src/peaks.c \ src/reflist-utils.c src/filters.c \ - src/render.c src/index.c src/dirax.c src/mosflm.c \ - src/reax.c + src/render.c src/index.c src/dirax.c src/mosflm.c + +if HAVE_FFTW +libcrystfel_la_SOURCES += src/reax.c +endif libcrystfel_la_includedir=$(includedir)/crystfel/ |