Merge "inital Makefile struct with bm metal3" into dev/icn-v0.1.0
[icn.git] / Makefile
1 SHELL:=/bin/bash
2 BMDIR:=$(CURDIR)/env/metal3
3 METAL3DIR:=$(CURDIR)/deploy/metal3/scripts
4 all: bm_install
5
6 bm_preinstall:
7         pushd $(BMDIR) && ./01_install_package.sh && ./02_configure.sh && ./03_launch_prereq.sh && popd
8
9 bm_install:
10         pushd $(METAL3DIR) && ./metal3.sh && popd 
11
12 .PHONY: all bm_preinstall bm_install