summaryrefslogtreecommitdiff
path: root/examples/03-tuplehash128/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/03-tuplehash128/Makefile')
-rw-r--r--examples/03-tuplehash128/Makefile16
1 files changed, 16 insertions, 0 deletions
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)