Change build target name

This commit is contained in:
2018-07-06 15:00:00 +02:00
parent 33ac487fda
commit d0546e707e
+2 -2
View File
@@ -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)