14 lines
115 B
Makefile
14 lines
115 B
Makefile
|
.PHONY: all default
|
||
|
|
||
|
default: all
|
||
|
|
||
|
all: build open
|
||
|
|
||
|
build:
|
||
|
sphinx-build . _build
|
||
|
|
||
|
open:
|
||
|
open _build/index.html
|
||
|
|
||
|
|