From c46e74daa5b09f9d1fad90eb5a6a0d698d47066a Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 12 Jul 2018 15:48:22 +0200 Subject: [PATCH] Fix Bernina make file --- sf_bernina/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sf_bernina/Makefile b/sf_bernina/Makefile index 8b8de07..84e4c24 100644 --- a/sf_bernina/Makefile +++ b/sf_bernina/Makefile @@ -4,8 +4,8 @@ BIN_DIR = ./bin MKDIR = mkdir -p CC = g++ -CFLAGS = -Wall -Wfatal-errors -fPIC -pthread -std=c++11 -I../../src -I${CONDA_PREFIX}/include -LDFLAGS = -L../../bin -L${CONDA_PREFIX}/lib -L/usr/lib64 -lcpp_h5_writer -lzmq -lhdf5 -lhdf5_hl -lhdf5_cpp -lhdf5_hl_cpp -lboost_system -lboost_regex -lboost_thread -lpthread +CFLAGS = -Wall -Wfatal-errors -std=c++11 -I${CONDA_PREFIX}/include -I${CONDA_PREFIX}/include/cpp_h5_writer +LDFLAGS = -L${CONDA_PREFIX}/lib -L/usr/lib64 -lcpp_h5_writer -lzmq -lhdf5 -lhdf5_hl -lhdf5_cpp -lhdf5_hl_cpp -lboost_system -lboost_regex -lboost_thread -lpthread HEADERS = $(wildcard $(SRC_DIR)/*.hpp) SRCS = $(wildcard $(SRC_DIR)/*.cpp)