diff options
author | Christian Hesse <mail@eworm.de> | 2014-10-21 14:04:35 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-10-21 14:04:35 +0200 |
commit | 8351ead1d5972a53c7b2fecb839de7a9375a32c5 (patch) | |
tree | 8bfaf78d49b78eb5c8739b1c777038efd53778da /Makefile | |
parent | 1228fb573ea8155565257119ccd4b237d694d0ef (diff) | |
download | journal-notify-8351ead1d5972a53c7b2fecb839de7a9375a32c5.tar.gz journal-notify-8351ead1d5972a53c7b2fecb839de7a9375a32c5.tar.zst |
move compiler options to CFLAGS
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ # journal-notify - Notify about journal log entries -CC := gcc -std=c11 +CC := gcc MD := markdown INSTALL := install CP := cp RM := rm -CFLAGS += -O2 -Wall -Werror +CFLAGS += -std=c11 -O2 -Wall -Werror CFLAGS += $(shell pkg-config --cflags --libs libsystemd) CFLAGS += $(shell pkg-config --cflags --libs libnotify) # this is just a fallback in case you do not use git but downloaded |