From d0546e707e204dc1e8f06fd9560bdec721e01424 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Fri, 6 Jul 2018 15:00:00 +0200 Subject: [PATCH] Change build target name --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1eed3a2..a401cf2 100644 --- a/Makefile +++ b/Makefile @@ -21,11 +21,11 @@ HEADERS = $(wildcard $(SRC_DIR)/*.hpp) SRCS = $(wildcard $(SRC_DIR)/*.cpp) OBJS = $(patsubst $(SRC_DIR)/%.cpp, $(OBJ_DIR)/%.o, $(SRCS)) -all: build_dirs libcpp_h5_writer +lib: build_dirs libcpp_h5_writer test: build_dirs build_test debug: CPPFLAGS += -DDEBUG_OUTPUT -g -debug: all +debug: lib libcpp_h5_writer: $(OBJS) $(CPP) $(LDFLAGS) -o $(BIN_DIR)/libcpp_h5_writer.so $(OBJS) $(LDLIBS)