1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

Add CFLAGS for strict warning checks

This commit is contained in:
Joost Rijneveld 2019-01-15 16:09:32 +01:00
parent b5e46c91b8
commit a2ee9cbadb
No known key found for this signature in database
GPG Key ID: A4FE39CF49CBC553

View File

@ -5,6 +5,8 @@ ifndef SCHEME
$(error SCHEME variable is not set) $(error SCHEME variable is not set)
endif endif
CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99
functest_kem: crypto_kem/test.c $(wildcard crypto_kem/$(SCHEME)/clean/*.c) $(wildcard crypto_kem/$(SCHEME)/clean/*.h) functest_kem: crypto_kem/test.c $(wildcard crypto_kem/$(SCHEME)/clean/*.c) $(wildcard crypto_kem/$(SCHEME)/clean/*.h)
mkdir -p bin mkdir -p bin
$(CC) $(CFLAGS)\ $(CC) $(CFLAGS)\