1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/Makefile

27 lines
547 B
Makefile
Raw Normal View History

2012-03-07 11:35:18 -05:00
#!/usr/bin/make
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
all: clean docs
2012-04-12 21:38:47 -04:00
docs: clean
./build-site.py
viewdocs: clean
./build-site.py view
2012-03-07 11:35:18 -05:00
htmldocs:
./build-site.py rst
2012-03-07 11:35:18 -05:00
clean:
-rm -f .buildinfo
-rm -f *.inv
2012-03-11 04:21:19 -04:00
-rm -rf *.doctrees
2012-03-07 11:35:18 -05:00
@echo "Cleaning up byte compiled python stuff"
find . -regex ".*\.py[co]$$" -delete
@echo "Cleaning up editor backup files"
find . -type f \( -name "*~" -or -name "#*" \) -delete
find . -type f \( -name "*.swp" \) -delete
2012-04-12 21:38:47 -04:00
.PHONEY: docs clean
2012-03-07 11:35:18 -05:00