Skip to content
This repository was archived by the owner on Nov 7, 2019. It is now read-only.

Internalize codegen #133

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@ tag:
install-aws-codegen:
${MAKE} -C code-generation install

.PHONY: build-codegen
build-codegen:
${MAKE} -C code-generation rebuild

.PHONY: aws-codegen
aws-codegen:
aws-service-operator-codegen process
./code-generation/aws-service-operator-codegen process

.PHONY: k8s-codegen
k8s-codegen:
Expand All @@ -39,4 +43,4 @@ k8s-codegen:
codegen: aws-codegen k8s-codegen

.PHONY: rebuild
rebuild: codegen build
rebuild: build-codegen codegen build
1 change: 1 addition & 0 deletions code-generation/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ install-bindata:
.PHONY: update-bindata
update-bindata:
go generate ./pkg/codegen/
go fmt ./...

.PHONY: rebuild
rebuild: update-bindata build