diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-07 11:42:40 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-07 11:42:40 +0100 |
commit | 222f009731176e3d54d2e45e1c7fd9ccf0f97dd2 (patch) | |
tree | 14145dfbd589c05c46a7c6a0902339960ddb6d04 /config.mk | |
download | blakesum-222f009731176e3d54d2e45e1c7fd9ccf0f97dd2.tar.gz blakesum-222f009731176e3d54d2e45e1c7fd9ccf0f97dd2.tar.bz2 blakesum-222f009731176e3d54d2e45e1c7fd9ccf0f97dd2.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | config.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..5656df1 --- /dev/null +++ b/config.mk @@ -0,0 +1,8 @@ +PREFIX = /usr +MANPREFIX = $(PREFIX)/share/man + +CC = c99 + +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE +CFLAGS = -Wall -O3 +LDFLAGS = -s -lblake |