diff options
author | Christian Hesse <mail@eworm.de> | 2013-07-04 22:11:05 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-07-04 22:11:05 +0200 |
commit | c65257f961a75d8738ffb114163a1992061fb6a6 (patch) | |
tree | 39a6fb65ddcb2ef1bc7cfe373ad3d8d096b41740 /Makefile | |
parent | e56ed2ffea0245eee3c08edd97d5e560a964c78d (diff) | |
download | nthash-c65257f961a75d8738ffb114163a1992061fb6a6.tar.gz nthash-c65257f961a75d8738ffb114163a1992061fb6a6.tar.zst |
add -O2, -Wall and -Werror to CFLAGS
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ # nthash - Generate NT Hash CC := gcc +CFLAGS += -O2 -Wall -Werror CFLAGS += $(shell pkg-config --cflags --libs nettle) VERSION = $(shell git describe --tags --long) |