summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2012-10-04 18:08:46 +0100
committerReuben Thomas <rrt@sc3d.org>2012-10-04 18:08:46 +0100
commit145fc81aa9b2dd6ea6d53eb18e0f948991773ecb (patch)
treeec540abd93a8a967d0b2d4f56fe44f9918f8f22a
parent41d9fad85070f354b097b8be9aa34bd588314cdb (diff)
downloadlrexlib-145fc81aa9b2dd6ea6d53eb18e0f948991773ecb.tar.gz
Makefile: rename doc target to docs, to avoid clash with doc directory
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dab648f..0458835 100644
--- a/Makefile
+++ b/Makefile
@@ -13,10 +13,10 @@ check:
cd src/$$i && LUA_PATH="../../test/?.lua;$(LUA_PATH)" $(LUA) ../../test/runtest.lua -d. $$i && cd ../..; \
done
-doc:
+docs:
@make -C doc
-dist: doc
+dist: docs
git2cl > ChangeLog
cd .. && rm -f $(DISTFILE) && zip $(DISTFILE) -r $(PROJECT) -x "lrexlib/.git/*" "*.gitignore" "*.o" "*.a" "*.so" "*.so.*" "*.zip" "*SciTE.properties" "*scite.properties" && mv $(DISTFILE) $(PROJECT) && cd $(PROJECT) && unzip $(DISTFILE) && mv $(PROJECT) $(PROJECT_VERSIONED) && rm -f $(DISTFILE) && zip $(DISTFILE) -r $(PROJECT_VERSIONED) && rm -rf $(PROJECT_VERSIONED)