mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-05-13 10:23:37 +00:00
Standardize Makefile
This commit is contained in:
20
Makefile
20
Makefile
@@ -5,38 +5,38 @@ SHELL := /bin/bash
|
|||||||
PY_VERSION ?= 3.6
|
PY_VERSION ?= 3.6
|
||||||
|
|
||||||
all:
|
all:
|
||||||
make -C source html
|
$(MAKE) -C source html
|
||||||
|
|
||||||
htmlall:
|
htmlall:
|
||||||
make -C source htmlall
|
$(MAKE) -C source htmlall
|
||||||
|
|
||||||
htmlzh:
|
htmlzh:
|
||||||
make -C source htmlzh
|
$(MAKE) -C source htmlzh
|
||||||
|
|
||||||
htmlde:
|
htmlde:
|
||||||
make -C source htmlde
|
$(MAKE) -C source htmlde
|
||||||
|
|
||||||
html:
|
html:
|
||||||
make -C source html
|
$(MAKE) -C source html
|
||||||
|
|
||||||
linkcheck:
|
linkcheck:
|
||||||
make -C source linkcheck
|
$(MAKE) -C source linkcheck
|
||||||
|
|
||||||
py:
|
py:
|
||||||
make -C source py
|
$(MAKE) -C source py
|
||||||
|
|
||||||
man:
|
man:
|
||||||
make -C source man
|
$(MAKE) -C source man
|
||||||
|
|
||||||
clean-man:
|
clean-man:
|
||||||
make -C source clean-man
|
$(MAKE) -C source clean-man
|
||||||
|
|
||||||
help:
|
help:
|
||||||
@echo "Please use \`make <target>' where <target> is one of"
|
@echo "Please use \`make <target>' where <target> is one of"
|
||||||
@echo " html to make standalone HTML files"
|
@echo " html to make standalone HTML files"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
make -C source clean
|
$(MAKE) -C source clean
|
||||||
rm -rf venv
|
rm -rf venv
|
||||||
|
|
||||||
venv:
|
venv:
|
||||||
|
|||||||
Reference in New Issue
Block a user