2012-02-25 02:05:05 +01:00
|
|
|
#!/usr/bin/make
|
|
|
|
|
|
|
|
ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $<
|
|
|
|
ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml
|
2012-02-27 03:01:29 +01:00
|
|
|
MANPAGES := docs/man/man1/ansible.1 docs/man/man5/ansible-modules.5 docs/man/man5/ansible-playbook.5
|
2012-02-25 02:05:05 +01:00
|
|
|
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
|
|
|
|
2012-02-28 10:15:52 +01:00
|
|
|
all: clean python
|
|
|
|
|
2012-02-25 02:05:05 +01:00
|
|
|
docs: manuals
|
|
|
|
|
|
|
|
manuals: $(MANPAGES)
|
|
|
|
|
|
|
|
%.1: %.1.asciidoc
|
|
|
|
$(ASCII2MAN)
|
|
|
|
|
|
|
|
%.5: %.5.asciidoc
|
|
|
|
$(ASCII2MAN)
|
|
|
|
|
|
|
|
pep8:
|
|
|
|
@echo "#############################################"
|
|
|
|
@echo "# Running PEP8 Compliance Tests"
|
|
|
|
@echo "#############################################"
|
|
|
|
pep8 lib/
|
|
|
|
|
|
|
|
clean:
|
|
|
|
find . -type f -name "*.pyc" -delete
|
|
|
|
find . -type f -name "*.pyo" -delete
|
|
|
|
find . -type f -name "*~" -delete
|
|
|
|
find ./docs/ -type f -name "*.xml" -delete
|
|
|
|
find . -type f -name "#*" -delete
|
|
|
|
|
2012-02-28 10:15:52 +01:00
|
|
|
python: docs
|
|
|
|
python setup.py build
|
|
|
|
|
|
|
|
install: docs
|
|
|
|
python setup.py install
|
|
|
|
|
2012-02-25 02:05:05 +01:00
|
|
|
.PHONEY: docs manual clean pep8
|
|
|
|
vpath %.asciidoc docs/man/man1
|
2012-02-28 10:15:52 +01:00
|
|
|
|
|
|
|
|