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