1 | # $Id: Makefile.kmk 102913 2024-01-17 10:35:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the shell frontend.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2023 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | SUB_DEPTH = ../../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 |
|
---|
31 | include $(PATH_SUB_CURRENT)/Config.kmk
|
---|
32 |
|
---|
33 | INSTALLS += VBoxShell
|
---|
34 | VBoxShell_INST = $(INST_SDK)/bindings/
|
---|
35 | VBoxShell_SOURCES = \
|
---|
36 | vboxshell.py=>glue/python/sample/vboxshell.py \
|
---|
37 | vboxinfo.vbs=>mscom/vbs/sample/vboxinfo.vbs \
|
---|
38 | vboxinfo.vb=>mscom/vb/sample/vboxinfo.vb
|
---|
39 |
|
---|
40 | #
|
---|
41 | # Automatically lint VBoxShell.
|
---|
42 | #
|
---|
43 | if defined(VBOX_WITH_PYLINT) && !defined(VBOX_WITHOUT_AUTO_PYLINT)
|
---|
44 | OTHERS += $(PATH_TARGET)/pylintVBoxShell.run
|
---|
45 | OTHER_CLEAN += $(PATH_TARGET)/pylintVBoxShell.run
|
---|
46 | $(PATH_TARGET)/pylintVBoxShell.run: vboxshell.py
|
---|
47 | $(QUIET)$(APPEND) -t "$@"
|
---|
48 | endif
|
---|
49 |
|
---|
50 | VBOX_VBOXSHELL_PYTHON_SOURCES := $(wildcard $(PATH_SUB_CURRENT)/*.py)
|
---|
51 |
|
---|
52 | $(evalcall def_vbox_vboxshell_process_python_sources,FORCE)
|
---|
53 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|