Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
178B

  1. DOC_DIR = doc
  2. .PHONY: doc
  3. doc:
  4. $(MAKE) -C $(DOC_DIR) html
  5. sdist:
  6. python setup.py build sdist
  7. deploy: sdist doc
  8. $(MAKE) -C $(DOC_DIR) deploy
  9. python setup.py sdist upload