Merge pull request #3950 from hashicorp/f-make-core

Add `core` target to Makefile
This commit is contained in:
James Nugent 2015-11-18 17:09:05 +02:00
commit 00824d2ea9
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,12 @@ dev: generate
quickdev: generate
@TF_QUICKDEV=1 TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
# Shorthand for quickly building the core of Terraform. Note that some
# changes will require a rebuild of everything, in which case the dev
# target should be used.
core-dev: generate
go install github.com/hashicorp/terraform
# Shorthand for building and installing just one plugin for local testing.
# Run as (for example): make plugin-dev PLUGIN=provider-aws
plugin-dev: generate