-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
18 lines (14 loc) · 885 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Commonly used targets (see each target for more information):
# run: Build code.
SHELL := /usr/bin/env bash
.PHONY: all
all: help
.PHONY: help
help:
@echo "make run"
.PHONY: run
run:
rm -rf site
python3 -m mkdocs build
python3 -m mkdocs serve