pomo

A simple pomodoro timer
Log | Files | Refs | README | LICENSE

commit b98188e381e7d3338fe9f6f76954bd803e46b8e9
parent 65c181ec1d7b5a0497e53c874871d49e432ac3a0
Author: Daniel M. Capella <polyzen@users.noreply.github.com>
Date:   Fri, 16 Nov 2018 04:09:51 +0000

Respect CPPFLAGS environment variable

Diffstat:
Mconfig.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.mk b/config.mk @@ -16,7 +16,7 @@ INCS+= `pkg-config --cflags libnotify` LIBS+= `pkg-config --libs libnotify` # flags -CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=199309 +CPPFLAGS += -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=199309 CFLAGS += -g -std=c99 -pedantic -Wall -Os ${INCS} ${DEFS} ${CPPFLAGS} LDFLAGS += -g ${LIBS}