Skip to content

Commit c0b471d

Browse files
committed
Drop OCP and root Makefiles in favor of openshift-kni#54, rename targets in OCS/CNV Makefiles
Signed-off-by: Johnny Bieren <[email protected]>
1 parent 7508094 commit c0b471d

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

CNV/Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
.PHONY: all run upgrade
2-
all: run
1+
.PHONY: default all deploy upgrade
32

4-
run:
3+
default: deploy
4+
5+
all: deploy
6+
7+
deploy:
58
./cnv-2.1.0.sh
69

710
upgrade:

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@ all: OpenShift OCS CNV bell
66
OpenShift:
77
pushd OpenShift; make; popd
88

9-
OpenShift-virt:
10-
pushd OpenShift; make pre_install; make all; popd
11-
129
OCS: OpenShift
13-
pushd OCS; make; popd
10+
pushd OCS; ./customize-ocs.sh; popd
1411

1512
CNV: OpenShift
16-
pushd CNV; make; popd
13+
pushd CNV; ./deploy-cnv.sh; popd
1714

1815
bell:
1916
@echo "Done!" $$'\a'

OCS/Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
.PHONY: all run
2-
all: run
1+
.PHONY: default all deploy
32

4-
run:
3+
default: deploy
4+
5+
all: deploy
6+
7+
deploy:
58
./customize-ocs.sh

OpenShift/Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
.PHONY: default all requirements configure
22
default: requirements configure
33

4-
all: cluster post_install
4+
all: default
55

66
requirements:
77
./01_install_requirements.sh
88

99
configure:
1010
./02_configure_host.sh
1111

12-
pre_install: requirements configure
13-
14-
cluster:
15-
./03_create_cluster.sh
16-
1712
post_install:
1813
./99_post_install.sh
1914

0 commit comments

Comments
 (0)