Skip to content

Commit d79d641

Browse files
miguelinuxlijinxia
authored andcommitted
Makefile: fix typos and style
Remove the trailing ";" and "\" and fix a typo in install. Signed-off-by: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com>
1 parent ace25dd commit d79d641

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,33 @@ TOOLS_OUT := $(ROOT_OUT)/tools
1313
all: hypervisor devicemodel tools
1414

1515
hypervisor:
16-
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE) clean; \
16+
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE) clean
1717
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE)
1818

1919
devicemodel:
20-
make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT) clean; \
20+
make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT) clean
2121
make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT)
2222

2323
tools:
2424
mkdir -p $(TOOLS_OUT)
25-
make -C $(T)/tools/acrnlog OUT_DIR=$(TOOLS_OUT);
26-
make -C $(T)/tools/acrn-manager OUT_DIR=$(TOOLS_OUT);
27-
make -C $(T)/tools/acrntrace OUT_DIR=$(TOOLS_OUT);
25+
make -C $(T)/tools/acrnlog OUT_DIR=$(TOOLS_OUT)
26+
make -C $(T)/tools/acrn-manager OUT_DIR=$(TOOLS_OUT)
27+
make -C $(T)/tools/acrntrace OUT_DIR=$(TOOLS_OUT)
2828

2929
.PHONY: clean
3030
clean:
3131
rm -rf $(ROOT_OUT)
3232

3333
.PHONY: install
34-
install: hypervisor-install devicemodel-install tools-intall
34+
install: hypervisor-install devicemodel-install tools-install
3535

3636
hypervisor-install:
3737
make -C $(T)/hypervisor HV_OBJDIR=$(HV_OUT) PLATFORM=$(PLAT) RELEASE=$(RELEASE) install
3838

3939
devicemodel-install:
4040
make -C $(T)/devicemodel DM_OBJDIR=$(DM_OUT) install
4141

42-
tools-intall:
42+
tools-install:
4343
make -C $(T)/tools/acrnlog OUT_DIR=$(TOOLS_OUT) install
4444
make -C $(T)/tools/acrn-manager OUT_DIR=$(TOOLS_OUT) install
4545
make -C $(T)/tools/acrntrace OUT_DIR=$(TOOLS_OUT) install

0 commit comments

Comments
 (0)