summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-07-06 23:20:17 +0200
committerThomas Schmucker <ts@its1.de>2026-07-06 23:20:17 +0200
commit63104f0716dc2d60842f19fc145ea4bcb096292d (patch)
tree17c18988744b842062c1d57db4101513aea6e9a6 /makefile
downloaduse-argon2-63104f0716dc2d60842f19fc145ea4bcb096292d.tar.gz
use-argon2-63104f0716dc2d60842f19fc145ea4bcb096292d.tar.bz2
use-argon2-63104f0716dc2d60842f19fc145ea4bcb096292d.zip
initial commitHEADmaster
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