Merge branch 'master' into readme

This commit is contained in:
Daan Sprenkels
2018-01-22 13:35:51 +01:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
CFLAGS += -m64 -std=c99 -pedantic -Wall -Wshadow -Wpointer-arith -Wcast-qual \
-Wstrict-prototypes -Wmissing-prototypes -g -O2
CFLAGS += -g -O2 -m64 -std=c99 -pedantic \
-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wformat -Wformat-security \
-Werror=format-security -Wstrict-prototypes -Wmissing-prototypes \
-D_FORTIFY_SOURCE=2 -fPIC -fno-strict-overflow
SRCS = hazmat.c randombytes.c sss.c tweetnacl.c
OBJS := ${SRCS:.c=.o}