From 4eebef1961a1c01890fe11dc5f1b9f3a1ea705e0 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Wed, 6 Sep 2023 23:23:31 -0400 Subject: add examples/ --- examples/03-tuplehash128/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/03-tuplehash128/Makefile (limited to 'examples/03-tuplehash128/Makefile') diff --git a/examples/03-tuplehash128/Makefile b/examples/03-tuplehash128/Makefile new file mode 100644 index 0000000..cbbd3a9 --- /dev/null +++ b/examples/03-tuplehash128/Makefile @@ -0,0 +1,16 @@ +CFLAGS=-W -Wall -Wextra -Werror -pedantic -std=c11 -O3 -march=native -mtune=native +APP=./tuplehash128-example +OBJS=sha3.o main.o + +.PHONY=all + +all: $(APP) + +$(APP): $(OBJS) + $(CC) -o $(APP) $(CFLAGS) $(OBJS) + +%.o: %.c + $(CC) -c $(CFLAGS) $< + +clean: + $(RM) -f $(APP) $(OBJS) -- cgit v1.2.3