aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-02-09 20:02:16 +0100
committerMattias Andrée <maandree@kth.se>2019-02-09 20:02:16 +0100
commit9475c19921162986119ee69eba8bfa2a9832d551 (patch)
tree285c9cbd0a824d2bfb480431b33099e2a80e35bf /Makefile
parentAdd HMAC to TODO (diff)
downloadlibsha2-9475c19921162986119ee69eba8bfa2a9832d551.tar.gz
libsha2-9475c19921162986119ee69eba8bfa2a9832d551.tar.bz2
libsha2-9475c19921162986119ee69eba8bfa2a9832d551.tar.xz
Minor changes, add man pages, rename libsha2_state_initialise to libsha2_init
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 566907e..893704a 100644
--- a/Makefile
+++ b/Makefile
@@ -21,12 +21,26 @@ OBJ =\
behex_lower.o\
behex_upper.o\
digest.o\
- state_initialise.o\
+ init.o\
state_output_size.o\
sum_fd.o\
unhex.o\
update.o\
+MAN0 =\
+ libsha2.h.0
+
+MAN3 =\
+ libsha2_algorithm_output_size.3\
+ libsha2_behex_lower.3\
+ libsha2_behex_upper.3\
+ libsha2_digest.3\
+ libsha2_init.3\
+ libsha2_state_output_size.3\
+ libsha2_sum_fd.3\
+ libsha2_unhex.3\
+ libsha2_update.3
+
all: libsha2.a libsha2.$(LIBEXT)
$(OBJ): $(@:.o=.c) $(HDR)