From c8dd7e232a8f5166ee73ab1259ca239d830037d6 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Fri, 3 May 2024 22:29:17 -0400 Subject: add tests/neon --- tests/neon/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/neon/Makefile (limited to 'tests/neon/Makefile') 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) -- cgit v1.2.3