From 63104f0716dc2d60842f19fc145ea4bcb096292d Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Mon, 6 Jul 2026 23:20:17 +0200 Subject: initial commit --- makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..ff2440a --- /dev/null +++ b/makefile @@ -0,0 +1,14 @@ +.PHONY: clean all + +all: argon-test + +CFLAGS =-Wall -Werror -std=c99 -pedantic -g + +argon-test: argon-test.o + cc $(LDFLAGS) argon-test.o -largon2 -o $@ + +argon-test.o: argon-test.c + cc $(CFLAGS) -c $< -o $@ + +clean: + rm -f argon-test.o argon-test -- cgit v1.3