From 509bd52d3232557c85f5d63bcc75e8ebbd7853be Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Tue, 7 May 2024 21:31:35 -0400 Subject: tests/neon/Makefile: add all target --- tests/neon/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/neon/Makefile b/tests/neon/Makefile index 90bec21..503be80 100644 --- a/tests/neon/Makefile +++ b/tests/neon/Makefile @@ -1,11 +1,14 @@ APP=neon -CFLAGS=-std=c11 -O2 -W -Wall -Wextra -pedantic -march=native -mtune=native +CFLAGS=-std=c11 -O2 -W -Wall -Wextra -Werror -pedantic -march=native -mtune=native OBJS=neon.o -.PHONY=all clean +.PHONY=all clean test all: $(APP) +test: all + ./neon + $(APP): $(OBJS) $(CC) $(CFLAGS) -o $(APP) $(OBJS) -- cgit v1.2.3