diff options
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) |