From 31ad202d59c116058a465fb6baaf2ae761fc0ae2 Mon Sep 17 00:00:00 2001 From: Alexander Koch Date: Thu, 16 Jun 2016 20:20:28 +0200 Subject: [PATCH] makefile: Add debug build target Add phony target to provide debugging symbols in binary. Usable via 'make debug'. --- makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index a205390..6a24c9b 100644 --- a/makefile +++ b/makefile @@ -3,15 +3,17 @@ CFLAGS=-Wall -O2 -std=gnu++11 LDFLAGS=-lusb-1.0 PROGN=g810-led -.PHONY: all clean +.PHONY: all debug clean all: bin/$(PROGN) - bin/$(PROGN): src/main.cpp src/classes/*.cpp @mkdir -p bin $(CC) -o $@ $(CFLAGS) $^ $(LDFLAGS) +debug: CFLAGS += -g +debug: bin/$(PROGN) + clean: rm -rf bin