mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
8 lines
183 B
Makefile
8 lines
183 B
Makefile
.PHONY: build
|
|
build: html
|
|
|
|
# this pattern rule lets you run "make build" (or any other target
|
|
# in docs/Makefile) in this directory as though you were in docs/
|
|
%:
|
|
cd docs && make $@
|