diff options
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 | ||
