1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-26 03:26:03 +02:00

add a note about testing in main.c

This commit is contained in:
Jack O'Connor 2020-01-27 16:21:34 -05:00
parent 8ce1cddedc
commit 6742722898
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@ NAME=blake3
CC=gcc
CFLAGS=-O3 -Wall -Wextra -std=c11 -pedantic
TARGETS=
EXTRAFLAGS=-DBLAKE3_TESTING
EXTRAFLAGS=
ifdef BLAKE3_NO_SSE41
EXTRAFLAGS += -DBLAKE3_NO_SSE41

View File

@ -1,3 +1,9 @@
/*
* This main file is intended for testing via `make test`. It does not build in
* other settings. See README.md in this directory for examples of how to build
* C code.
*/
#include <assert.h>
#include <errno.h>
#include <stdbool.h>