Calmcode - makefiles: help commands

Help Commands

1 2 3 4 5 6

The extra command we added is listed below.

help:
  @echo "available commands"
  @echo " - install    : installs all requirements"
  @echo " - dev        : installs all development requirements"
  @echo " - test       : run all unit tests"
  @echo " - clean      : cleans up all folders"
  @echo " - flake      : runs flake8 style checks"
  @echo " - check      : runs all checks (tests + style)"
  @echo " - docs       : generate docs locally in /docs folder"

Once again pay attention to the spaces before the @echo. These need to be tabs in order for them to work properly.

Note that you can also find the entire project on github. Feel free top clone/copy and adapt it to your liking.