VirtualBox

source: vbox/trunk/src/VBox/Runtime/tools/Makefile.kmk@ 96442

Last change on this file since 96442 was 96407, checked in by vboxsync, 2 years ago

scm copyright and license note update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.6 KB
Line 
1# $Id: Makefile.kmk 96407 2022-08-22 17:43:14Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT tools.
4#
5
6#
7# Copyright (C) 2006-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# The contents of this file may alternatively be used under the terms
26# of the Common Development and Distribution License Version 1.0
27# (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28# in the VirtualBox distribution, in which case the provisions of the
29# CDDL are applicable instead of those of the GPL.
30#
31# You may elect to license modified versions of this file under the
32# terms and conditions of either the GPL or the CDDL or both.
33#
34# SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35#
36
37SUB_DEPTH = ../../../..
38include $(KBUILD_PATH)/subheader.kmk
39
40
41if !defined(VBOX_ONLY_EXTPACKS) && !defined(VBOX_ONLY_DOCS)
42 # RTIsoMaker - ISO image maker - build version.
43 ifeq ($(KBUILD_TARGET), win) # Needed for repacking guest additions.
44 PROGRAMS += bldRTIsoMaker
45 bldRTIsoMaker_INSTTYPE = stage
46 else
47 BLDPROGS += bldRTIsoMaker
48 endif
49 bldRTIsoMaker_TEMPLATE = VBoxAdvBldProg
50 bldRTIsoMaker_SOURCES = \
51 RTIsoMaker.cpp \
52 ../common/misc/buildconfig.cpp
53 bldRTIsoMaker_DEFS = \
54 IPRT_BLDCFG_SCM_REV=$(if $(VBOX_SVN_REV_FALLBACK),$(VBOX_SVN_REV_FALLBACK),$(VBOX_SVN_REV)) \
55 IPRT_BLDCFG_VERSION_MAJOR=$(VBOX_VERSION_MAJOR) \
56 IPRT_BLDCFG_VERSION_MINOR=$(VBOX_VERSION_MINOR) \
57 IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD)
58 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
59 bldRTIsoMaker_DEFS += \
60 IPRT_BLDCFG_VERSION_STRING="$(VBOX_VERSION_STRING)" \
61 IPRT_BLDCFG_TARGET="$(KBUILD_TARGET)" \
62 IPRT_BLDCFG_TARGET_ARCH="$(KBUILD_TARGET_ARCH)" \
63 IPRT_BLDCFG_TYPE="$(KBUILD_TYPE)"
64 else
65 bldRTIsoMaker_DEFS += \
66 IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \
67 IPRT_BLDCFG_TARGET=\"$(KBUILD_TARGET)\" \
68 IPRT_BLDCFG_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\" \
69 IPRT_BLDCFG_TYPE=\"$(KBUILD_TYPE)\"
70 endif
71 bldRTIsoMaker_INCS = ../include
72endif
73
74
75if !defined(VBOX_ONLY_DOCS)
76
77 # RTManifest is a tool for creating and verifying manifest files - build version.
78 BLDPROGS += bldRTManifest
79 bldRTManifest_TEMPLATE = VBoxAdvBldProg
80 bldRTManifest_SOURCES = RTManifest.cpp
81
82
83 if !defined(VBOX_ONLY_EXTPACKS) || "$(KBUILD_TARGET)" == "win" || "$(KBUILD_TARGET)" == "darwin"
84 # RTSignTool - Signing utility - build version. Signed on windows so we can get the certificate from it.
85 BLDPROGS += bldRTSignTool
86 bldRTSignTool_TEMPLATE := VBoxAdvBldProg
87 bldRTSignTool_INCS := ../include
88 bldRTSignTool_SOURCES := RTSignTool.cpp
89 bldRTSignTool_DEFS := IPRT_IN_BUILD_TOOL
90 bldRTSignTool_LIBS.win := Crypt32.lib NCrypt.lib
91 ifndef VBOX_WITH_BLD_RTSIGNTOOL_SIGNING
92 bldRTSignTool_DEFS += IPRT_SIGNTOOL_NO_SIGNING
93 else # RuntimeBldProg is missing a lot and is built w/o IPRT_WITH_OPENSSL. So, include missing and rebuilt openssl deps.
94 bldRTSignTool_SDKS += VBOX_OPENSSL_BLDPROG
95 bldRTSignTool_DEFS += IPRT_WITH_OPENSSL
96 bldRTSignTool_SOURCES += \
97 ../common/string/RTStrICmpAscii.cpp \
98 ../common/checksum/alt-sha3.cpp \
99 ../common/crypto/store-inmem.cpp \
100 ../common/crypto/store-cert-add-basic.cpp \
101 ../common/crypto/rsa-core.cpp \
102 ../common/crypto/rsa-asn1-decoder.cpp \
103 ../common/crypto/rsa-init.cpp \
104 ../common/crypto/rsa-sanity.cpp \
105 ../common/crypto/RTCrStoreCertAddFromJavaKeyStore.cpp \
106 ../common/crypto/pkix-signature-core.cpp \
107 ../common/crypto/pkix-signature-builtin.cpp \
108 ../common/crypto/pkix-signature-rsa.cpp \
109 \
110 ../common/crypto/store.cpp \
111 ../common/crypto/digest-builtin.cpp \
112 ../common/crypto/iprt-openssl.cpp\
113 ../common/crypto/key.cpp \
114 ../common/crypto/key-file.cpp \
115 ../common/crypto/key-openssl.cpp \
116 ../common/crypto/pkcs7-core.cpp \
117 ../common/crypto/pkcs7-sign.cpp \
118 ../common/crypto/RTCrRandBytes-openssl.cpp
119 if1of ($(KBUILD_HOST), darwin win)
120 bldRTSignTool_SOURCES += ../r3/$(KBUILD_HOST)/RTCrStoreCreateSnapshotById-$(KBUILD_HOST).cpp
121 else
122 bldRTSignTool_SOURCES += ../genericc/RTCrStoreCreateSnapshotById-generic.cpp
123 endif
124 endif
125 endif
126
127 if !defined(VBOX_ONLY_EXTPACKS)
128 # RTLdrCheckImports - import checker.
129 PROGRAMS += bldRTLdrCheckImports
130 bldRTLdrCheckImports_TEMPLATE = VBoxAdvBldProg
131 bldRTLdrCheckImports_DEFS = IPRT_IN_BUILD_TOOL
132 bldRTLdrCheckImports_SOURCES = RTLdrCheckImports.cpp
133 endif
134endif
135
136if !defined(VBOX_ONLY_BUILD)
137
138 # RTCat is a tool for displaying files.
139 PROGRAMS += RTCat
140 RTCat_TEMPLATE = VBoxR3Tool
141 RTCat_SOURCES = RTCat.cpp
142 RTCat_SOURCES += ../VBox/LoadVBoxDDU.cpp
143
144 # RTChMod - our chmod clone.
145 PROGRAMS += RTChMod
146 RTChMod_TEMPLATE = VBoxR3Tool
147 RTChMod_SOURCES = RTChMod.cpp
148
149 # RTCp - our cp clone.
150 PROGRAMS += RTCp
151 RTCp_TEMPLATE = VBoxR3Tool
152 RTCp_SOURCES = RTCp.cpp
153 RTCp_SOURCES += ../VBox/LoadVBoxDDU.cpp
154
155 # RTIsoMaker - ISO image maker - build version.
156 PROGRAMS += RTIsoMaker
157 RTIsoMaker_TEMPLATE = VBoxR3Tool
158 RTIsoMaker_SOURCES = RTIsoMaker.cpp
159 RTIsoMaker_SOURCES += ../VBox/LoadVBoxDDU.cpp
160
161 # RTLs is a tool for listing file information.
162 PROGRAMS += RTLs
163 RTLs_TEMPLATE = VBoxR3Tool
164 RTLs_SOURCES = RTLs.cpp
165 RTLs_SOURCES += ../VBox/LoadVBoxDDU.cpp
166
167 # RTRm is a tool for removing files and directories.
168 PROGRAMS += RTRm
169 RTRm_TEMPLATE = VBoxR3Tool
170 RTRm_SOURCES = RTRm.cpp
171 RTRm_SOURCES += ../VBox/LoadVBoxDDU.cpp
172
173 # RTManifest is a tool for creating and verifying manifest files.
174 PROGRAMS += RTManifest
175 RTManifest_TEMPLATE = VBoxR3Tool
176 RTManifest_SOURCES = RTManifest.cpp
177 RTManifest_SOURCES += ../VBox/LoadVBoxDDU.cpp
178
179 # RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks.
180 PROGRAMS += RTLdrFlt
181 RTLdrFlt_TEMPLATE = VBoxR3Tool
182 RTLdrFlt_SOURCES = RTLdrFlt.cpp
183
184 # RTFtpServer implements a simple FTP server.
185 PROGRAMS += RTFtpServer
186 RTFtpServer_TEMPLATE = VBoxR3Tool
187 RTFtpServer_SOURCES = RTFtpServer.cpp
188
189 # RTGzip - our gzip clone (for testing the gzip/gunzip streaming code)
190 PROGRAMS += RTGzip
191 RTGzip_TEMPLATE = VBoxR3Tool
192 RTGzip_SOURCES = RTGzip.cpp
193 RTGzip_SOURCES += ../VBox/LoadVBoxDDU.cpp
194
195 ifdef VBOX_WITH_LIBCURL
196 # RTHttp - our http/https fetcher (for testing the http client API).
197 PROGRAMS += RTHttp
198 RTHttp_TEMPLATE = VBoxR3Tool
199 RTHttp_SOURCES = RTHttp.cpp
200 endif
201
202 # RTHttpServer implements a simple HTTP server.
203 PROGRAMS += RTHttpServer
204 RTHttpServer_TEMPLATE = VBoxR3Tool
205 RTHttpServer_SOURCES = RTHttpServer.cpp
206 ifdef IPRT_HTTP_WITH_WEBDAV
207 RTHttpServer_DEFS += IPRT_HTTP_WITH_WEBDAV
208 endif
209
210 # RTLdrCheckImports - import checker.
211 PROGRAMS += RTLdrCheckImports
212 RTLdrCheckImports_TEMPLATE = VBoxR3Tool
213 RTLdrCheckImports_SOURCES = RTLdrCheckImports.cpp
214 RTLdrCheckImports_SOURCES += ../VBox/LoadVBoxDDU.cpp
215
216 # RTMkDir - our mkdir clone.
217 PROGRAMS += RTMkDir
218 RTMkDir_TEMPLATE = VBoxR3Tool
219 RTMkDir_SOURCES = RTMkDir.cpp
220
221 # RTRmDir - our mkdir clone.
222 PROGRAMS += RTRmDir
223 RTRmDir_TEMPLATE = VBoxR3Tool
224 RTRmDir_SOURCES = RTRmDir.cpp
225
226 # RTShutdown - similar (but not identical) to a typical unix shutdown command.
227 PROGRAMS += RTShutdown
228 RTShutdown_TEMPLATE = VBoxR3Tool
229 RTShutdown_SOURCES = RTShutdown.cpp
230
231 # RTTar - our tar clone (for testing the tar/gzip/gunzip streaming code)
232 PROGRAMS += RTTar
233 RTTar_TEMPLATE = VBoxR3Tool
234 RTTar_SOURCES = RTTar.cpp
235 RTTar_SOURCES += ../VBox/LoadVBoxDDU.cpp
236
237 # RTUnzip - our unzip clone (for testing the unzip streaming code)
238 PROGRAMS += RTUnzip
239 RTUnzip_TEMPLATE = VBoxR3Tool
240 RTUnzip_SOURCES = RTUnzip.cpp
241 RTUnzip_SOURCES += ../VBox/LoadVBoxDDU.cpp
242
243 # RTNtDbgHelp - our tar clone (for testing the tar/gzip/gunzip streaming code)
244 PROGRAMS.win += RTNtDbgHelp
245 RTNtDbgHelp_TEMPLATE = VBoxR3Tool
246 RTNtDbgHelp_SOURCES = RTNtDbgHelp.cpp
247
248 # RTDbgSymCache - Symbol cache manager.
249 PROGRAMS += RTDbgSymCache
250 RTDbgSymCache_TEMPLATE = VBoxR3Tool
251 RTDbgSymCache_SOURCES = RTDbgSymCache.cpp
252
253 # RTSignTool - Signing utility.
254 PROGRAMS += RTSignTool
255 RTSignTool_TEMPLATE := VBoxR3Tool
256 RTSignTool_INCS := ../include
257 RTSignTool_SOURCES := RTSignTool.cpp
258 RTSignTool_LIBS = $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
259 RTSignTool_LIBS.win = Crypt32.lib NCrypt.lib
260
261 # RTTraceLogTool - Trace log collection and dissection tool.
262 PROGRAMS += RTTraceLogTool
263 RTTraceLogTool_TEMPLATE = VBoxR3Tool
264 RTTraceLogTool_SOURCES = RTTraceLogTool.cpp
265
266 # RTFuzzMaster - Fuzzing master tool.
267 PROGRAMS += RTFuzzMaster
268 RTFuzzMaster_TEMPLATE = VBoxR3Tool
269 RTFuzzMaster_SOURCES = RTFuzzMaster.cpp
270
271 # RTFuzzClient - Fuzzing client tool.
272 PROGRAMS += RTFuzzClient
273 RTFuzzClient_TEMPLATE = VBoxR3Tool
274 RTFuzzClient_SOURCES = RTFuzzClient.cpp
275
276 # RTEfiFatExtract - Extracting single files from a fat EFI binary.
277 PROGRAMS += RTEfiFatExtract
278 RTEfiFatExtract_TEMPLATE = VBoxR3Tool
279 RTEfiFatExtract_SOURCES = RTEfiFatExtract.cpp
280
281 # RTEfiSigDb - EFI signature database management tool.
282 PROGRAMS += RTEfiSigDb
283 RTEfiSigDb_TEMPLATE = VBoxR3Tool
284 RTEfiSigDb_SOURCES = RTEfiSigDb.cpp
285
286 if1of ($(KBUILD_TARGET), darwin linux solaris win)
287 # RTKrnlModInfo - our lsmod/kextstat clone (for testing the RTKrnlMod code).
288 PROGRAMS += RTKrnlModInfo
289 RTKrnlModInfo_TEMPLATE = VBoxR3Tool
290 RTKrnlModInfo_SOURCES = RTKrnlModInfo.cpp
291 endif
292
293endif # !VBOX_ONLY_BUILD
294
295include $(FILE_KBUILD_SUB_FOOTER)
296
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette