aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-09-04 22:15:54 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-09-04 22:15:54 -0500
commit4ec9a073b8a87c1df954249c499f97a01d5c9281 (patch)
tree978ea8f606fe5695222d92cddcd9f1dfe3e532ab /Makefile
parent16a65213dcafa306f3d901762d36751a3f456979 (diff)
downloadluairc-4ec9a073b8a87c1df954249c499f97a01d5c9281.tar.gz
luairc-4ec9a073b8a87c1df954249c499f97a01d5c9281.zip
add a documentation file for the callback functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8e3047d..a4a2861 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ MOD_LUAS = src/irc/channel.lua \
src/irc/message.lua \
src/irc/misc.lua
TEST_LUAS = test/test.lua
+DOC_LUAS = src/callbacks.luadoc
VERSION = $(shell grep '^_VERSION =' $(MAIN_LUA) | sed "s/_VERSION = '\(.*\)'/\1/" | tr ' ' '-')
build :
@@ -21,9 +22,9 @@ install :
mkdir -p $(MOD_DIR)
cp $(MOD_LUAS) $(MOD_DIR)
-doc : $(MAIN_LUA) $(MOD_LUAS)
+doc : $(MAIN_LUA) $(MOD_LUAS) $(DOC_LUAS)
mkdir -p $(DOC_DIR)
- $(LUADOC) --nofiles -d $(DOC_DIR) $(MAIN_LUA) $(MOD_LUAS)
+ $(LUADOC) --nofiles -d $(DOC_DIR) $(MAIN_LUA) $(MOD_LUAS) $(DOC_LUAS)
@touch doc
clean :