ff1f40a6cd
This fixes some small issues with the unit tests and adding a test case to the Makefile so that all tests can easily be invoked by running: make test Signed-off-by: Lars Kiesow <lkiesow@uos.de>
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
sdist: doc
|
|
python setup.py sdist
|
|
|
|
clean: doc-clean
|
|
@echo Removing binary files...
|
|
@rm -f `find feedgen -name '*.pyc'`
|
|
@rm -f `find feedgen -name '*.pyo'`
|
|
@echo Removing source distribution files...
|
|
@rm -rf dist/
|
|
@rm -f MANIFEST
|
|
|
|
doc: doc-clean doc-html doc-man doc-latexpdf
|
|
|
|
doc-clean:
|
|
@echo Removing docs...
|
|
@make -C doc clean
|
|
@rm -rf docs
|
|
|
|
doc-html:
|
|
@echo 'Generating HTML'
|
|
@make -C doc html
|
|
@mkdir -p docs/html
|
|
@echo 'Copying html to into docs dir'
|
|
@cp doc/_build/html/*.html docs/html/
|
|
@cp doc/_build/html/*.js docs/html/
|
|
@cp -r doc/_build/html/_static/ docs/html/
|
|
@cp -r doc/_build/html/ext/ docs/html/
|
|
|
|
doc-man:
|
|
@echo 'Generating manpage'
|
|
@make -C doc man
|
|
@mkdir -p docs/man
|
|
@echo 'Copying manpage to into docs dir'
|
|
@cp doc/_build/man/*.1 docs/man/
|
|
|
|
doc-latexpdf:
|
|
@echo 'Generating pdf'
|
|
@make -C doc latexpdf
|
|
@mkdir -p docs/pdf
|
|
@echo 'Copying pdf to into docs dir'
|
|
@cp doc/_build/latex/*.pdf docs/pdf/
|
|
|
|
publish: sdist
|
|
python setup.py register sdist upload
|
|
|
|
test:
|
|
python -m unittest feedgen.tests.test_feed
|
|
python -m unittest feedgen.tests.test_entry
|
|
python -m unittest feedgen.tests.test_extension
|