diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-04-04 11:41:40 -0700 |
---|---|---|
committer | Girish Havaldar <hg0071052@techmahindra.com> | 2018-04-05 04:24:24 +0000 |
commit | 709adb713bb1bf790021abe3f98f9d1713b082c4 (patch) | |
tree | 0c5eeacb2a01221ff6ef83bb6ac515e326e7d077 | |
parent | 468de91f0284758fcab69b7e022b6a8ce748c1af (diff) |
Adding a new parent Makefile
This patch adds a new parent Makefile that will be called
by the jenkins job once the smsquorum code also comes under
this GOPATH
Issue-ID: AAF-213
Change-Id: I50d5f72b91455c501505130fbbf41ba245f1800a
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
-rw-r--r-- | sms-service/src/Makefile | 5 | ||||
-rw-r--r-- | sms-service/src/sms/Makefile | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sms-service/src/Makefile b/sms-service/src/Makefile new file mode 100644 index 0000000..4091a3e --- /dev/null +++ b/sms-service/src/Makefile @@ -0,0 +1,5 @@ +build: + $(MAKE) -C sms build + +deploy: + $(MAKE) -C sms deploy
\ No newline at end of file diff --git a/sms-service/src/sms/Makefile b/sms-service/src/sms/Makefile index 25c12e1..a0add45 100644 --- a/sms-service/src/sms/Makefile +++ b/sms-service/src/sms/Makefile @@ -1,4 +1,4 @@ -GOPATH := $(shell realpath "$(PWD)/../../") +GOPATH := $(shell realpath "$(CURDIR)/../../") BINARY := sms PLATFORM := linux DEPENDENCIES := github.com/golang/dep/cmd/dep |