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

Adding Controller Framework that is used by Controller and Provisione… #5

Merged
Merged
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
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

PROJECTNAME := $(shell basename "$(PWD)")
GOFILES := $(wildcard controller/*.go)
GOBIN := $(GOBASE)/bin


#CMDS=cosi-controller-manager
all: unit build
#.PHONY: reltools
Expand All @@ -26,6 +31,8 @@ release-tools/build.make:


build:
@echo " > Building binary..."
go build $(GOFILES)
test:
unit:
codegen:
Expand Down
Loading