From 3585013d33a51960325ab089587d7af25844f657 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 8 Jan 2018 18:39:58 +0100 Subject: [PATCH] Add DEBUG to make file --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 934c58d..5338632 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,9 @@ OBJS = $(patsubst $(SRC_DIR)/%.cpp, $(OBJ_DIR)/%.o, $(SRCS)) all: build_dirs h5_zmq_writer +debug: CPPFLAGS += -DDEBUG -g +debug: all + h5_zmq_writer: $(OBJS) $(CPP) $(LDFLAGS) -o $(BIN_DIR)/h5_zmq_writer $(OBJS) $(LDLIBS)