summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..ff2440a
--- /dev/null
+++ b/makefile
@@ -0,0 +1,14 @@
1.PHONY: clean all
2
3all: argon-test
4
5CFLAGS =-Wall -Werror -std=c99 -pedantic -g
6
7argon-test: argon-test.o
8 cc $(LDFLAGS) argon-test.o -largon2 -o $@
9
10argon-test.o: argon-test.c
11 cc $(CFLAGS) -c $< -o $@
12
13clean:
14 rm -f argon-test.o argon-test