1 | # $Id: Makefile.kmk 96407 2022-08-22 17:43:14Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top-level makefile for src/VBox/Main/UnattendedTemplates.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2017-2022 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 | ifdef VBOX_WITH_UNATTENDED
|
---|
32 |
|
---|
33 | # Note! When updating the source list here, VBOX_UNATTENDED_TEMPLATES in
|
---|
34 | # ../../Installer/Config.kmk must be updated too!
|
---|
35 | INSTALLS += VBoxUnattendedTemplates
|
---|
36 | VBoxUnattendedTemplates_INST = $(INST_UNATTENDED_TEMPLATES)
|
---|
37 | VBoxUnattendedTemplates_MODE = a+r,u+w
|
---|
38 | VBoxUnattendedTemplates_SOURCES = \
|
---|
39 | debian_preseed.cfg \
|
---|
40 | ubuntu_preseed.cfg \
|
---|
41 | rhel3_ks.cfg \
|
---|
42 | rhel4_ks.cfg \
|
---|
43 | rhel5_ks.cfg \
|
---|
44 | redhat67_ks.cfg \
|
---|
45 | ol_ks.cfg \
|
---|
46 | fedora_ks.cfg \
|
---|
47 | suse_autoinstall.xml \
|
---|
48 | os2_response_files.rsp \
|
---|
49 | win_nt5_unattended.sif \
|
---|
50 | win_nt6_unattended.xml \
|
---|
51 | \
|
---|
52 | debian_postinstall.sh \
|
---|
53 | redhat_postinstall.sh \
|
---|
54 | ol_postinstall.sh \
|
---|
55 | os2_cid_install.cmd \
|
---|
56 | win_postinstall.cmd \
|
---|
57 | freebsd_installer.cfg \
|
---|
58 | freebsd_postinstall.sh
|
---|
59 |
|
---|
60 | ifndef VBOX_WITH_OPEN_WATCOM
|
---|
61 | VBoxUnattendedTemplates_SOURCES += \
|
---|
62 | os2_util.exe
|
---|
63 | endif
|
---|
64 |
|
---|
65 | ifndef VBOX_OSE
|
---|
66 | VBoxUnattendedTemplates_SOURCES += \
|
---|
67 | lgw_ks.cfg \
|
---|
68 | lgw_postinstall.sh
|
---|
69 | endif
|
---|
70 |
|
---|
71 | endif # VBOX_WITH_UNATTENDED
|
---|
72 |
|
---|
73 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
74 |
|
---|