Today I Learned

hashrocket A Hashrocket project

Multiple names for a command in your Makefile

Say you wanted to have multiple names or aliases for the same command of a Makefile.

Something like this:

server:
  rails server

s:
  rails server

You can just separate them by spaces to achieve the same result, like so:

s server:
  rails server
See More #workflow TILs