Skip to content

Commit

Permalink
quick make fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ozerov_d committed Nov 21, 2019
1 parent 8915378 commit 57b7148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MKDIR = mkdir -p

CC = g++
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
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 -lboost_chrono

HEADERS = $(wildcard $(SRC_DIR)/*.hpp)
SRCS = $(wildcard $(SRC_DIR)/*.cpp)
Expand All @@ -31,4 +31,4 @@ build_dirs:
$(MKDIR) $(OBJ_DIR) $(BIN_DIR)

clean:
rm -rf $(OBJ_DIR) $(BIN_DIR)
rm -rf $(OBJ_DIR) $(BIN_DIR)

0 comments on commit 57b7148

Please sign in to comment.