diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | log.h | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -14,6 +14,10 @@ LDFLAGS ?= CCQ = @echo -e " CC\t$<" && $(CC) LDQ = @echo -e " LD\t$@" && $(CC) +ifeq ($(DEBUG), 1) + CFLAGS += -g -DDEBUG +endif + all: $(P) $(P): $(OBJS) @@ -24,5 +24,10 @@ #define log_err(fmt, args...) fprintf(stderr, "Error: " fmt, ##args) #define log_warn(fmt, args...) fprintf(stderr, "Warning: " fmt, ##args) #define log_info(fmt, args...) fprintf(stdout, fmt, ##args) +#ifdef DEBUG +# define log_dbg(fmt, args...) fprintf(stdout, fmt, ##args) +#else +# define log_dbg(fmt, args...) +#endif #endif /* LOG_H */ |