diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-07-06 23:20:17 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-07-06 23:20:17 +0200 |
| commit | 63104f0716dc2d60842f19fc145ea4bcb096292d (patch) | |
| tree | 17c18988744b842062c1d57db4101513aea6e9a6 /makefile | |
| download | use-argon2-63104f0716dc2d60842f19fc145ea4bcb096292d.tar.gz use-argon2-63104f0716dc2d60842f19fc145ea4bcb096292d.tar.bz2 use-argon2-63104f0716dc2d60842f19fc145ea4bcb096292d.zip | |
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 14 |
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 | |||
| 3 | all: argon-test | ||
| 4 | |||
| 5 | CFLAGS =-Wall -Werror -std=c99 -pedantic -g | ||
| 6 | |||
| 7 | argon-test: argon-test.o | ||
| 8 | cc $(LDFLAGS) argon-test.o -largon2 -o $@ | ||
| 9 | |||
| 10 | argon-test.o: argon-test.c | ||
| 11 | cc $(CFLAGS) -c $< -o $@ | ||
| 12 | |||
| 13 | clean: | ||
| 14 | rm -f argon-test.o argon-test | ||
