Skip to content

Commit 1be4e43

Browse files
authored
Meta: (Makefile) Add serve-dev rule (#436)
This rule serves as an alias to the existing doc-serve rule. This change harmonizes with, e.g. the numpy.org Makefile (which doesn't have a doc-serve rule).
1 parent e38cbcf commit 1be4e43

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: doc-serve shortcode-docs docs scipy main blog learn
1+
.PHONY: doc-serve shortcode-docs docs scipy main blog learn serve-dev
22
.DEFAULT_GOAL := doc-serve
33

44
GH_ORG = scientific-python
@@ -24,6 +24,7 @@ doc/content/shortcodes.md: $(wildcard layouts/shortcodes/*.html)
2424
(cd layouts && python ../tools/render_shortcode_docs.py > ../doc/content/shortcodes.md)
2525

2626
# Serve for development purposes.
27+
serve-dev: doc-serve
2728
doc-serve: doc/content/shortcodes.md
2829
(cd doc && hugo --printI18nWarnings serve --themesDir="../.." --disableFastRender --poll 1000ms)
2930

0 commit comments

Comments
 (0)