aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--README.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cf9cd3a..9a4ee0f 100644
--- a/Makefile
+++ b/Makefile
@@ -101,8 +101,8 @@ ${OUTPUT_MARKDOWN}: ${@:${HTML2SOURCE}} ${TEMPLATE}
${OUTPUT_STATIC}: ${@:${OUTPUT2SOURCE}}
${COPY} ${@:${OUTPUT2SOURCE}} $@
-.PHONY: install serve rsync clean
-install:
+.PHONY: deps serve rsync clean
+deps:
pip install -r requirements.txt
serve: public
diff --git a/README.md b/README.md
index 88fd812..f042d6b 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ It consists of Markdown files and a custom static site generator using pandoc an
First, install the `pip` requirements:
- make install
+ make deps
You'll want to edit the [Makefile](Makefile) to set your site URL,
RSS feed title, etc.