Merge pull request #3950 from hashicorp/f-make-core
Add `core` target to Makefile
This commit is contained in:
commit
00824d2ea9
6
Makefile
6
Makefile
|
@ -15,6 +15,12 @@ dev: generate
|
||||||
quickdev: generate
|
quickdev: generate
|
||||||
@TF_QUICKDEV=1 TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'"
|
@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.
|
# Shorthand for building and installing just one plugin for local testing.
|
||||||
# Run as (for example): make plugin-dev PLUGIN=provider-aws
|
# Run as (for example): make plugin-dev PLUGIN=provider-aws
|
||||||
plugin-dev: generate
|
plugin-dev: generate
|
||||||
|
|
Loading…
Reference in New Issue