Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}

lib_LIBRARIES = lib/libads.a
lib_libads_a_SOURCES = src/ads/isax_file_loaders.c src/ads/isax_first_buffer_layer.c src/ads/isax_index.c src/ads/isax_node.c src/ads/isax_node_buffer.c src/ads/isax_node_record.c src/ads/isax_node_split.c src/ads/isax_query_engine.c src/ads/isax_visualize_index.c src/ads/pqueue.c src/ads/sax/sax.c src/ads/sax/ts.c src/ads/inmemory_query_engine.c src/ads/parallel_inmemory_query_engine.c src/ads/inmemory_index_engine.c src/ads/parallel_index_engine.c src/ads/parallel_query_engine.c src/ads/inmemory_topk_engine.c src/ads/sfa/dft.c src/ads/sfa/sfa.c src/ads/calc_utils.c
lib_libads_a_CFLAGS =-I/opt/local/include -Iinclude/ -I/vol/home-vol3/wbi/schaefpa/fftw-3.3.10/include -march=native -mavx -mavx2 -msse3 -fopenmp

lib_LIBRARIES = lib/libads.a
lib_libads_a_SOURCES = src/ads/isax_file_loaders.c src/ads/isax_first_buffer_layer.c src/ads/isax_index.c src/ads/isax_node.c src/ads/isax_node_buffer.c src/ads/isax_node_record.c src/ads/isax_node_split.c src/ads/isax_query_engine.c src/ads/isax_visualize_index.c src/ads/pqueue.c src/ads/sax/sax.c src/ads/sax/ts.c src/ads/inmemory_query_engine.c src/ads/parallel_inmemory_query_engine.c src/ads/inmemory_index_engine.c src/ads/parallel_index_engine.c src/ads/parallel_query_engine.c src/ads/inmemory_topk_engine.c src/ads/sfa/dft.c src/ads/sfa/sfa.c src/ads/calc_utils.c
lib_libads_a_CFLAGS = -Iinclude/ -I/usr/include ${APPLE_OMP} ${APPLE_NOWARN_CONV} -march=${BUILD_ARCH} -fopenmp -fcommon -std=gnu11
#lib_libads_a_CFLAGS = -Iinclude/ -I/usr/include -fopenmp -fcommon -std=gnu11

bin_PROGRAMS = bin/MESSI



bin_MESSI_SOURCES = src/utils/MESSI.c
bin_MESSI_CFLAGS = -I/opt/local/include -I/usr/include/ -Iinclude/ -I/usr/local/include/ -I/vol/home-vol3/wbi/schaefpa/fftw-3.3.10/include -march=native
bin_MESSI_LDADD = -lm -lreadline -lads -lfftw3f -lm -lpthread
bin_MESSI_LDFLAGS = -L/opt/local/lib -Llib/ -L/vol/home-vol3/wbi/schaefpa/fftw-3.3.10/.libs -mavx -mavx2 -msse3 -fopenmp
bin_MESSI_CFLAGS = -I/usr/include/ -Iinclude/ ${APPLE_OMP} ${APPLE_FFTW} -march=${BUILD_ARCH} -std=gnu11
#bin_MESSI_CFLAGS = -I/usr/include/ -Iinclude/ -std=gnu11
bin_MESSI_LDADD = -lm -lads -lfftw3f -lpthread ${NUMA}
bin_MESSI_LDFLAGS = -Llib/ -L/usr/lib${LIB64} -fopenmp

293 changes: 197 additions & 96 deletions Makefile.in

Large diffs are not rendered by default.

Loading