Skip to content

Commit

Permalink
Fix make
Browse files Browse the repository at this point in the history
  • Loading branch information
tisto committed Apr 9, 2019
1 parent 39b88cc commit 5954f23
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ GREEN=`tput setaf 2`
RESET=`tput sgr0`
YELLOW=`tput setaf 3`

# Add the following 'help' target to your Makefile
# And add help text after each target name starting with '\#\#'
.PHONY: help
help: ## This help message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: all
all: build code-analysis test test-acceptance
all: build

.PHONY: build
build: ## Create virtualenv and run buildout
Expand All @@ -26,6 +19,15 @@ build: ## Create virtualenv and run buildout
bin/pip install -r requirements.txt --upgrade
bin/buildout

# Add the following 'help' target to your Makefile
# And add help text after each target name starting with '\#\#'
.PHONY: help
help: ## This help message
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: all
all: build code-analysis test test-acceptance

.PHONY: clean
clean: ## Remove old virtualenv and creates a new one
@echo "Clean"
Expand Down

0 comments on commit 5954f23

Please sign in to comment.