Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 0193bb9

Browse files
committed
Adding Controller Framework that is used by Controller and Provisioner as common code
1 parent e21c3b6 commit 0193bb9

File tree

5 files changed

+637
-0
lines changed

5 files changed

+637
-0
lines changed

Diff for: Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
PROJECTNAME := $(shell basename "$(PWD)")
16+
GOFILES := $(wildcard controller/*.go)
17+
GOBIN := $(GOBASE)/bin
18+
19+
1520
#CMDS=cosi-controller-manager
1621
all: unit build
1722
#.PHONY: reltools
@@ -26,6 +31,8 @@ release-tools/build.make:
2631

2732

2833
build:
34+
@echo " > Building binary..."
35+
go build $(GOFILES)
2936
test:
3037
unit:
3138
codegen:

0 commit comments

Comments
 (0)