diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-04 20:18:16 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-04 20:18:16 +0100 |
commit | 0d701311af17fa683e042e6d60920af02a86f641 (patch) | |
tree | b7737b8c2ba496204a40d6da585bdc87673b30b2 /Makefile | |
parent | m (diff) | |
download | libkeccak-0d701311af17fa683e042e6d60920af02a86f641.tar.gz libkeccak-0d701311af17fa683e042e6d60920af02a86f641.tar.bz2 libkeccak-0d701311af17fa683e042e6d60920af02a86f641.tar.xz |
add and fix more warnings
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -1,4 +1,14 @@ -FLAGS = -std=gnu99 +WARN = -Wall -Wextra -pedantic -Wdouble-promotion -Wformat=2 -Winit-self -Wmissing-include-dirs \ + -Wtrampolines -Wfloat-equal -Wshadow -Wmissing-prototypes -Wmissing-declarations \ + -Wredundant-decls -Wnested-externs -Winline -Wno-variadic-macros -Wswitch-default \ + -Wpadded -Wsync-nand -Wunsafe-loop-optimizations -Wcast-align -Wstrict-overflow \ + -Wdeclaration-after-statement -Wundef -Wbad-function-cast -Wcast-qual -Wwrite-strings \ + -Wlogical-op -Waggregate-return -Wstrict-prototypes -Wold-style-definition -Wpacked \ + -Wvector-operation-performance -Wunsuffixed-float-constants -Wsuggest-attribute=const \ + -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wsuggest-attribute=format \ + -Wnormalized=nfkc + +FLAGS = -std=gnu99 $(WARN) OBJ = digest files generalised-spec hex state @@ -11,3 +21,8 @@ obj/libkeccak/%.o: src/libkeccak/%.c src/libkeccak.h src/libkeccak/*.h @mkdir -p obj/libkeccak $(CC) $(FLAGS) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< + +.PHONY: clean +clean: + -rm -r obj bin + |