forked from vmware-archive/vsphere-storage-for-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
70 lines (58 loc) · 1.9 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 2016 VMware, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This Makefile has 2 purposes:
# - convenience: redirects targets to ./vmdk_plugin so 'make'
# can be run from the top
# - drone invariant: defines deb/rpm/build/testasroot targets so drone.yml
# can be kept as-is
TARGETS := all \
deploy-all deploy-esx deploy-vm deploy-vm-test deploy\
test-all test-vm test-esx testremote testasroot\
clean-all clean-vm clean-esx \
dockerbuild \
deb rpm package gvt documentation
BUILD := ./misc/scripts/build.sh
#
# kill switch for UI
# To override default here export env variable before make
# export INCLUDE_UI=true
INCLUDE_UI ?= false
export INCLUDE_UI
# default target, build ui then build vib, rpm, deb
default: build-all
build-all: dockerized-build-ui
$(MAKE) --directory=vmdk_plugin $@
# clean inside docker run to avoid sudo make clean
# dev builds are inside docker which creates folders
# as root.
clean: dockerized-clean-ui
$(MAKE) --directory=vmdk_plugin $@
# Non dockerized build, used by CI
build:
ifeq ($(INCLUDE_UI), true)
$(MAKE) --directory=ui $@
endif
$(MAKE) --directory=vmdk_plugin $@
# Forward to UI inside docker run
dockerized-build-ui:
ifeq ($(INCLUDE_UI), true)
$(BUILD) ui build
endif
dockerized-clean-ui:
ifeq ($(INCLUDE_UI), true)
$(BUILD) ui clean
endif
# redirect all
$(TARGETS):
$(MAKE) --directory=vmdk_plugin $@