mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-12 20:39:59 +00:00
misc: totally remove misc folder
misc now has a new home: https://github.com/intel/ioc-cbc-tools. The "Execstop" patch will be synced to new git tree soon. ioc-cbc-tools was just added to Clear Linux, and will be added to software-defined-cockpit bundle after this patch merged. Merging this patch may cause some IOC releated feature block until we get a new Clear Linux release. This is the switch window ... Signed-off-by: Alek Du <alek.du@intel.com>
This commit is contained in:
14
Makefile
14
Makefile
@@ -9,14 +9,13 @@ ROOT_OUT := $(shell mkdir -p $(O);cd $(O);pwd)
|
||||
HV_OUT := $(ROOT_OUT)/hypervisor
|
||||
DM_OUT := $(ROOT_OUT)/devicemodel
|
||||
TOOLS_OUT := $(ROOT_OUT)/tools
|
||||
MISC_OUT := $(ROOT_OUT)/misc
|
||||
DOC_OUT := $(ROOT_OUT)/doc
|
||||
BUILD_VERSION ?=
|
||||
BUILD_TAG ?=
|
||||
export TOOLS_OUT
|
||||
|
||||
.PHONY: all hypervisor devicemodel tools misc doc
|
||||
all: hypervisor devicemodel tools misc
|
||||
.PHONY: all hypervisor devicemodel tools doc
|
||||
all: hypervisor devicemodel tools
|
||||
|
||||
hypervisor:
|
||||
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLATFORM) RELEASE=$(RELEASE) clean
|
||||
@@ -35,10 +34,6 @@ tools:
|
||||
mkdir -p $(TOOLS_OUT)
|
||||
make -C $(T)/tools OUT_DIR=$(TOOLS_OUT) RELEASE=$(RELEASE)
|
||||
|
||||
misc: tools
|
||||
mkdir -p $(MISC_OUT)
|
||||
make -C $(T)/misc OUT_DIR=$(MISC_OUT)
|
||||
|
||||
doc:
|
||||
make -C $(T)/doc html BUILDDIR=$(DOC_OUT)
|
||||
|
||||
@@ -49,7 +44,7 @@ clean:
|
||||
rm -rf $(ROOT_OUT)
|
||||
|
||||
.PHONY: install
|
||||
install: hypervisor-install devicemodel-install tools-install misc-install
|
||||
install: hypervisor-install devicemodel-install tools-install
|
||||
|
||||
hypervisor-install:
|
||||
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLATFORM) RELEASE=$(RELEASE) install
|
||||
@@ -62,6 +57,3 @@ devicemodel-install:
|
||||
|
||||
tools-install:
|
||||
make -C $(T)/tools OUT_DIR=$(TOOLS_OUT) install
|
||||
|
||||
misc-install:
|
||||
make -C $(T)/misc OUT_DIR=$(MISC_OUT) install
|
||||
|
Reference in New Issue
Block a user