From 5897566492e2b2fb89b5761a809e786bc520ef67 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 21 Oct 2014 14:05:49 +0200 Subject: move compiler options to CFLAGS --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6c7049f..811b227 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # udev-block-notify - Notify about udev block events -CC := gcc -std=c11 +CC := gcc MD := markdown INSTALL := install RM := rm -CFLAGS += -O2 -Wall -Werror +CFLAGS += -std=c11 -O2 -Wall -Werror CFLAGS += $(shell pkg-config --cflags --libs libudev) CFLAGS += $(shell pkg-config --cflags --libs libnotify) # this is just a fallback in case you do not use git but downloaded -- cgit v1.2.3-54-g00ecf