diff --git a/.gitignore b/.gitignore index 82a1a89..88da178 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ vendor -.vscode \ No newline at end of file +.vscode +terraschema \ No newline at end of file diff --git a/Makefile b/Makefile index f67a8a6..27d56f1 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ # Copyright 2024 Hewlett Packard Enterprise Development LP +.DEFAULT_GOAL := terraschema .PHONY: test test: @@ -9,4 +10,12 @@ lint: golangci-lint run .PHONY: all -all: test lint \ No newline at end of file +all: test lint + +.PHONY: terraschema +terraschema: + @go build . + +.PHONY: clean +clean: + @rm -f terraschema \ No newline at end of file