Files
acrn-hypervisor/Makefile
Minggui Cao fb19b296ea add a makefile under project root directory
it can be used as following:
  make ==> to make hypervisor & devicemodel & tools
also modify tools makefile to support out-dir setting.

Signed-off-by: Minggui Cao <minggui.cao@intel.com>
Reviewed-by: Jack Ren <jack.ren@intel.com>
2018-05-15 18:03:34 +08:00

40 lines
780 B
Makefile

# global helper variables
T := $(CURDIR)
PLAT := uefi
RELEASE := 0
ROOT_OUT := $(T)/build
HV_OUT := $(ROOT_OUT)/hypervisor
DM_OUT := $(ROOT_OUT)/devicemodel
TOOLS_OUT := $(ROOT_OUT)/tools
.PHONY: all hypervisor devicemodel tools
all: hypervisor devicemodel tools
hypervisor:
cd $(T)/hypervisor; \
make HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE) clean; \
make HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE)
devicemodel:
cd $(T)/devicemodel; \
make DM_OBJDIR=$(DM_OUT) clean; \
make DM_OBJDIR=$(DM_OUT)
tools:
mkdir -p $(TOOLS_OUT)
cd $(T)/tools/acrnlog; \
make OUT_DIR=$(TOOLS_OUT);
cd $(T)/tools/acrn-manager; \
make OUT_DIR=$(TOOLS_OUT);
cd $(T)/tools/acrntrace; \
make OUT_DIR=$(TOOLS_OUT);
.PHONY: clean
clean:
rm -rf $(ROOT_OUT)