diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-08-15 23:06:26 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-08-15 23:06:26 +0200 |
commit | 557565e33167d7fa93d0daa26cb19c182a4a942e (patch) | |
tree | 5bb4e17496170ee8c8394080bbf193eaa150031d /Makefile | |
parent | e95ab1e3f2fd5c9ab1f79e1ce5d910b812de395f (diff) |
Makefile: use CC from env if set
Allows us to run scan-build
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ MANDIR=$(PREFIX)/share/man BINDIR=$(PREFIX)/bin LIBDIR=$(PREFIX)/lib MY_LIBDIR=$(LIBDIR)/fb-client -CC=cc +CC?=cc CFLAGS:=-std=c99 -O2 -Wall -Wextra -pedantic $(CFLAGS) LIBCURL:=$(shell pkg-config --silence-errors --libs --cflags libcurl) |