From 428d3f90cedb4064a108f4297098f77f97af477e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 13 Nov 2014 21:50:34 +0100 Subject: add build rules to the makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c873690..364f3c0 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,40 @@ # [GNU All Permissive License] +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 -Wlogical-op \ + -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 + +LDOPTIMISE = +COPTIMISE = -O3 + +FLAGS = $(WARN) -std=gnu99 + + +CMDS = keccak-224sum keccak-256sum keccak-384sum keccak-512sum keccaksum \ + sha3-224sum sha3-256sum sha3-384sum sha3-512sum \ + rawshake256sum rawshake512sum shake256sum shake512sum + + + +.PHONY: all +all: $(foreach C,$(CMDS),bin/$(C)) + + +bin/%: obj/%.o obj/common.o + @mkdir -p bin + $(CC) $(FLAGS) $(LDOPTIMISE) -lkeccak -largparser -o $@ $^ $(LDFLAGS) + +obj/%.o: src/%.c src/*.h + @mkdir -p obj + $(CC) $(FLAGS) $(COPTIMISE) -c -o $@ $< $(CFLAGS) $(CPPFLAGS) + + .PHONY: clean clean: -rm -r bin obj -- cgit v1.2.3-70-g09d2