Makefile 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. ########################################################
  2. # Makefile for OpenShift: Atomic Quick Installer
  3. #
  4. # useful targets (not all implemented yet!):
  5. # make clean -- Clean up garbage
  6. # make ci ------------------- Execute CI steps (for travis or jenkins)
  7. ########################################################
  8. # > VARIABLE = value
  9. #
  10. # Normal setting of a variable - values within it are recursively
  11. # expanded when the variable is USED, not when it's declared.
  12. #
  13. # > VARIABLE := value
  14. #
  15. # Setting of a variable with simple expansion of the values inside -
  16. # values within it are expanded at DECLARATION time.
  17. ########################################################
  18. NAME := oo-install
  19. VENV := $(NAME)env
  20. SHORTNAME := ooinstall
  21. # This doesn't evaluate until it's called. The -D argument is the
  22. # directory of the target file ($@), kinda like `dirname`.
  23. ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $<
  24. MANPAGES := docs/man/man1/atomic-openshift-installer.1
  25. # slipped into the manpage template before a2x processing
  26. VERSION := 1.4
  27. sdist: clean
  28. python setup.py sdist
  29. rm -fR $(SHORTNAME).egg-info
  30. clean:
  31. @find . -type f -regex ".*\.py[co]$$" -delete
  32. @find . -type f \( -name "*~" -or -name "#*" \) -delete
  33. @rm -fR build dist rpm-build MANIFEST htmlcov .coverage cover ooinstall.egg-info oo-install
  34. @rm -fR $(VENV)
  35. @rm -fR .tox
  36. # To force a rebuild of the docs run 'touch' on any *.in file under
  37. # docs/man/man1/
  38. docs: $(MANPAGES)
  39. # Regenerate %.1.asciidoc if %.1.asciidoc.in has been modified more
  40. # recently than %.1.asciidoc.
  41. %.1.asciidoc: %.1.asciidoc.in
  42. sed "s/%VERSION%/$(VERSION)/" $< > $@
  43. # Regenerate %.1 if %.1.asciidoc or VERSION has been modified more
  44. # recently than %.1. (Implicitly runs the %.1.asciidoc recipe)
  45. %.1: %.1.asciidoc
  46. $(ASCII2MAN)
  47. viewcover:
  48. xdg-open cover/index.html
  49. # Conditional virtualenv building strategy taken from this great post
  50. # by Marcel Hellkamp:
  51. # http://blog.bottlepy.org/2012/07/16/virtualenv-and-makefiles.html
  52. $(VENV): $(VENV)/bin/activate
  53. $(VENV)/bin/activate: test-requirements.txt
  54. @echo "#############################################"
  55. @echo "# Creating a virtualenv"
  56. @echo "#############################################"
  57. test -d $(VENV) || virtualenv $(VENV)
  58. . $(VENV)/bin/activate && pip install setuptools==17.1.1
  59. . $(VENV)/bin/activate && pip install -r test-requirements.txt
  60. touch $(VENV)/bin/activate
  61. # If there are any special things to install do it here
  62. # . $(VENV)/bin/activate && INSTALL STUFF
  63. ci-unittests: $(VENV)
  64. @echo "#############################################"
  65. @echo "# Running Unit Tests in virtualenv"
  66. @echo "#############################################"
  67. . $(VENV)/bin/activate && detox -e py27-unit,py35-unit
  68. @echo "VIEW CODE COVERAGE REPORT WITH 'xdg-open cover/index.html' or run 'make viewcover'"
  69. ci-pylint: $(VENV)
  70. @echo "#############################################"
  71. @echo "# Running PyLint Tests in virtualenv"
  72. @echo "#############################################"
  73. . $(VENV)/bin/activate && detox -e py27-pylint,py35-pylint
  74. ci-flake8: $(VENV)
  75. @echo "#############################################"
  76. @echo "# Running Flake8 Compliance Tests in virtualenv"
  77. @echo "#############################################"
  78. . $(VENV)/bin/activate && detox -e py27-flake8,py35-flake8
  79. ci-tox: $(VENV)
  80. . $(VENV)/bin/activate && detox
  81. ci: ci-tox
  82. @echo
  83. @echo "##################################################################################"
  84. @echo "VIEW CODE COVERAGE REPORT WITH 'xdg-open cover/index.html' or run 'make viewcover'"
  85. @echo "To clean your test environment run 'make clean'"
  86. @echo "Other targets you may run with 'make': 'ci-pylint', 'ci-tox', 'ci-unittests', 'ci-flake8'"