Skip to content

Commit

Permalink
Makefile init
Browse files Browse the repository at this point in the history
  • Loading branch information
kbarber committed May 24, 2018
1 parent ad3600e commit e68642c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
@@ -0,0 +1,4 @@
include make/*.mk

dev: ## Start rojo and any other dev necessary process
rojo serve
4 changes: 4 additions & 0 deletions make/README.md
@@ -0,0 +1,4 @@
# make

Make helpers and libraries are kept here, so they can be used by any Makefile
in the project.
1 change: 1 addition & 0 deletions make/config.mk
@@ -0,0 +1 @@
SHELL=/bin/bash
5 changes: 5 additions & 0 deletions make/help.mk
@@ -0,0 +1,5 @@
.DEFAULT_GOAL := help
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: help

0 comments on commit e68642c

Please sign in to comment.