SEBA-767 Directory restructuring in accordance with best practices
Change-Id: Id651366a3545ad0141a7854e99fa46867e543295
diff --git a/Makefile b/Makefile
index 87b2df3..f55f82b 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@
build: dependencies
export GOOS=$(HOST_OS) ;\
export GOARCH=$(HOST_ARCH) ;\
- go build $(LDFLAGS) cmd/cordctl.go
+ go build $(LDFLAGS) cmd/cordctl/cordctl.go
dependencies:
[ -d "vendor" ] || dep ensure
@@ -91,7 +91,7 @@
$(RELEASE_BINS): dependencies
export GOOS=$(rel_os) ;\
export GOARCH=$(rel_arch) ;\
- go build -v $(LDFLAGS) -o "$@" cmd/cordctl.go
+ go build -v $(LDFLAGS) -o "$@" cmd/cordctl/cordctl.go
release: $(RELEASE_BINS)