diff options
author | Paul Duncan <pabs@pablotron.org> | 2024-05-03 22:29:17 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2024-05-03 22:29:17 -0400 |
commit | c8dd7e232a8f5166ee73ab1259ca239d830037d6 (patch) | |
tree | 160e2a89cc0e48363b23aae83a4accb61c9f0064 /tests/neon/Makefile | |
parent | 1a6d29a92333b2b0ab0e1bd363fb0243e2c030f0 (diff) | |
download | sha3-c8dd7e232a8f5166ee73ab1259ca239d830037d6.tar.bz2 sha3-c8dd7e232a8f5166ee73ab1259ca239d830037d6.zip |
add tests/neon
Diffstat (limited to 'tests/neon/Makefile')
-rw-r--r-- | tests/neon/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/neon/Makefile b/tests/neon/Makefile new file mode 100644 index 0000000..90bec21 --- /dev/null +++ b/tests/neon/Makefile @@ -0,0 +1,16 @@ +APP=neon +CFLAGS=-std=c11 -O2 -W -Wall -Wextra -pedantic -march=native -mtune=native +OBJS=neon.o + +.PHONY=all clean + +all: $(APP) + +$(APP): $(OBJS) + $(CC) $(CFLAGS) -o $(APP) $(OBJS) + +%.o: %.c + $(CC) $(CFLAGS) -c $< + +clean: + $(RM) -f $(APP) $(OBJS) |