X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=Makefile;h=567ea2e901db2f001cd6df47add8dc6bbd397223;hb=15b011800902faf9966a7d7c4dd35a77aa66050e;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=308b84a2851e9a16458e5aebfd9f0341ca7530bd;p=icn.git diff --git a/Makefile b/Makefile index e69de29..567ea2e 100644 --- a/Makefile +++ b/Makefile @@ -0,0 +1,12 @@ +SHELL:=/bin/bash +BMDIR:=$(CURDIR)/env/metal3 +METAL3DIR:=$(CURDIR)/deploy/metal3/scripts +all: bm_install + +bm_preinstall: + pushd $(BMDIR) && ./01_install_package.sh && ./02_configure.sh && ./03_launch_prereq.sh && popd + +bm_install: + pushd $(METAL3DIR) && ./metal3.sh && popd + +.PHONY: all bm_preinstall bm_install