diff options
author | Christian Hesse <mail@eworm.de> | 2013-07-04 22:08:37 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-07-04 22:08:37 +0200 |
commit | 090cc6357193c723187dc1e567101852cd8a24de (patch) | |
tree | 866be9743d40f883092cd13b11a2c7411392d0b4 /Makefile | |
parent | 2743aed543a5d41d5fbe33e192e75047bdbb23d7 (diff) | |
download | cqrlogo-090cc6357193c723187dc1e567101852cd8a24de.tar.gz cqrlogo-090cc6357193c723187dc1e567101852cd8a24de.tar.zst |
add -O2, -Wall and -Werror to CFLAGS, fix warnings in code
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ # cqrlogo - CGI QR-Code logo for web services CC := gcc +CFLAGS += -O2 -Wall -Werror CFLAGS += $(shell pkg-config --cflags --libs gdk-pixbuf-2.0) \ $(shell pkg-config --cflags --libs libqrencode) |