aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index fc8945e..520aabf 100644
--- a/Makefile
+++ b/Makefile
@@ -32,6 +32,10 @@ $(LIB): $(LIB_OBJS)
test:
$(CC) -o $(TEST_APP) $(TEST_CFLAGS) -DSHA3_TEST sha3.c && $(TEST_APP)
+# build API documentation (requires doxygen)
+doc:
+ doxygen sha3.h
+
# remove build files
clean:
$(RM) -f $(TEST_APP) $(APP) $(APP_OBJS) $(LIB) $(LIB_OBJS)