github.com/aws-cloudformation/cloudformation-cli-go-plugin@v1.2.0/python/rpdk/go/templates/Makefile (about) 1 .PHONY: build test clean 2 3 build: 4 make -f makebuild # this runs build steps required by the cfn cli 5 6 test: 7 cfn generate 8 env GOOS=linux go build -ldflags="-s -w" -o bin/handler cmd/main.go 9 10 clean: 11 rm -rf bin