diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-07-03 14:52:58 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-07-03 14:52:58 -0400 |
commit | 5a1218db7ab170690d5126491415e26c7a574b96 (patch) | |
tree | 9b422300d9819c1d74ad00412a2e05cf350ffd5d | |
parent | f46f300dc5851c22da29f37d8f7201563253aa87 (diff) | |
download | website-5a1218db7ab170690d5126491415e26c7a574b96.tar.gz |
rename install to deps
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 @@ -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. |