VirtualBox

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

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

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.2 KB
Line 
1# $Id: Makefile.kmk 98103 2023-01-17 14:15:46Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT tools.
4#
5
6#
7# Copyright (C) 2006-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# 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_LDFLAGS.darwin := \
91 -framework CoreFoundation \
92 -framework Security
93 bldRTSignTool_LIBS.win := Crypt32.lib NCrypt.lib
94 ifndef VBOX_WITH_BLD_RTSIGNTOOL_SIGNING
95 bldRTSignTool_DEFS += IPRT_SIGNTOOL_NO_SIGNING
96 else # RuntimeBldProg is missing a lot and is built w/o IPRT_WITH_OPENSSL. So, include missing and rebuilt openssl deps.
97 bldRTSignTool_SDKS += VBOX_OPENSSL_BLDPROG
98 bldRTSignTool_DEFS += IPRT_WITH_OPENSSL
99 bldRTSignTool_SOURCES += \
100 ../common/crypto/pkix-signature-builtin.cpp \
101 ../common/crypto/store.cpp \
102 ../common/crypto/digest-builtin.cpp \
103 ../common/crypto/iprt-openssl.cpp\
104 ../common/crypto/key.cpp \
105 ../common/crypto/key-file.cpp \
106 ../common/crypto/key-openssl.cpp \
107 ../common/crypto/pkcs7-sign.cpp \
108 ../common/crypto/RTCrRandBytes-openssl.cpp
109 if1of ($(KBUILD_HOST), darwin win)
110 bldRTSignTool_SOURCES += ../r3/$(KBUILD_HOST)/RTCrStoreCreateSnapshotById-$(KBUILD_HOST).cpp
111 else
112 bldRTSignTool_SOURCES += ../generic/RTCrStoreCreateSnapshotById-generic.cpp
113 endif
114 endif
115 endif
116
117 if !defined(VBOX_ONLY_EXTPACKS)
118 # RTLdrCheckImports - import checker.
119 PROGRAMS += bldRTLdrCheckImports
120 bldRTLdrCheckImports_TEMPLATE = VBoxAdvBldProg
121 bldRTLdrCheckImports_DEFS = IPRT_IN_BUILD_TOOL
122 bldRTLdrCheckImports_SOURCES = RTLdrCheckImports.cpp
123 endif
124endif
125
126if !defined(VBOX_ONLY_BUILD)
127
128 # RTCat is a tool for displaying files.
129 PROGRAMS += RTCat
130 RTCat_TEMPLATE = VBoxR3Tool
131 RTCat_SOURCES = RTCat.cpp
132 RTCat_SOURCES += ../VBox/LoadVBoxDDU.cpp
133
134 # RTChMod - our chmod clone.
135 PROGRAMS += RTChMod
136 RTChMod_TEMPLATE = VBoxR3Tool
137 RTChMod_SOURCES = RTChMod.cpp
138
139 # RTCp - our cp clone.
140 PROGRAMS += RTCp
141 RTCp_TEMPLATE = VBoxR3Tool
142 RTCp_SOURCES = RTCp.cpp
143 RTCp_SOURCES += ../VBox/LoadVBoxDDU.cpp
144
145 # RTIsoMaker - ISO image maker - build version.
146 PROGRAMS += RTIsoMaker
147 RTIsoMaker_TEMPLATE = VBoxR3Tool
148 RTIsoMaker_SOURCES = RTIsoMaker.cpp
149 RTIsoMaker_SOURCES += ../VBox/LoadVBoxDDU.cpp
150
151 # RTLs is a tool for listing file information.
152 PROGRAMS += RTLs
153 RTLs_TEMPLATE = VBoxR3Tool
154 RTLs_SOURCES = RTLs.cpp
155 RTLs_SOURCES += ../VBox/LoadVBoxDDU.cpp
156
157 # RTRm is a tool for removing files and directories.
158 PROGRAMS += RTRm
159 RTRm_TEMPLATE = VBoxR3Tool
160 RTRm_SOURCES = RTRm.cpp
161 RTRm_SOURCES += ../VBox/LoadVBoxDDU.cpp
162
163 # RTManifest is a tool for creating and verifying manifest files.
164 PROGRAMS += RTManifest
165 RTManifest_TEMPLATE = VBoxR3Tool
166 RTManifest_SOURCES = RTManifest.cpp
167 RTManifest_SOURCES += ../VBox/LoadVBoxDDU.cpp
168
169 # RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks.
170 PROGRAMS += RTLdrFlt
171 RTLdrFlt_TEMPLATE = VBoxR3Tool
172 RTLdrFlt_SOURCES = RTLdrFlt.cpp
173
174 # RTFtpServer implements a simple FTP server.
175 PROGRAMS += RTFtpServer
176 RTFtpServer_TEMPLATE = VBoxR3Tool
177 RTFtpServer_SOURCES = RTFtpServer.cpp
178
179 # RTGzip - our gzip clone (for testing the gzip/gunzip streaming code)
180 PROGRAMS += RTGzip
181 RTGzip_TEMPLATE = VBoxR3Tool
182 RTGzip_SOURCES = RTGzip.cpp
183 RTGzip_SOURCES += ../VBox/LoadVBoxDDU.cpp
184
185 ifdef VBOX_WITH_LIBCURL
186 # RTHttp - our http/https fetcher (for testing the http client API).
187 PROGRAMS += RTHttp
188 RTHttp_TEMPLATE = VBoxR3Tool
189 RTHttp_SOURCES = RTHttp.cpp
190 endif
191
192 # RTHttpServer implements a simple HTTP server.
193 PROGRAMS += RTHttpServer
194 RTHttpServer_TEMPLATE = VBoxR3Tool
195 RTHttpServer_SOURCES = RTHttpServer.cpp
196 ifdef IPRT_HTTP_WITH_WEBDAV
197 RTHttpServer_DEFS += IPRT_HTTP_WITH_WEBDAV
198 endif
199
200 # RTLdrCheckImports - import checker.
201 PROGRAMS += RTLdrCheckImports
202 RTLdrCheckImports_TEMPLATE = VBoxR3Tool
203 RTLdrCheckImports_SOURCES = RTLdrCheckImports.cpp
204 RTLdrCheckImports_SOURCES += ../VBox/LoadVBoxDDU.cpp
205
206 # RTMkDir - our mkdir clone.
207 PROGRAMS += RTMkDir
208 RTMkDir_TEMPLATE = VBoxR3Tool
209 RTMkDir_SOURCES = RTMkDir.cpp
210
211 # RTRmDir - our mkdir clone.
212 PROGRAMS += RTRmDir
213 RTRmDir_TEMPLATE = VBoxR3Tool
214 RTRmDir_SOURCES = RTRmDir.cpp
215
216 # RTShutdown - similar (but not identical) to a typical unix shutdown command.
217 PROGRAMS += RTShutdown
218 RTShutdown_TEMPLATE = VBoxR3Tool
219 RTShutdown_SOURCES = RTShutdown.cpp
220
221 # RTTar - our tar clone (for testing the tar/gzip/gunzip streaming code)
222 PROGRAMS += RTTar
223 RTTar_TEMPLATE = VBoxR3Tool
224 RTTar_SOURCES = RTTar.cpp
225 RTTar_SOURCES += ../VBox/LoadVBoxDDU.cpp
226
227 # RTUnzip - our unzip clone (for testing the unzip streaming code)
228 PROGRAMS += RTUnzip
229 RTUnzip_TEMPLATE = VBoxR3Tool
230 RTUnzip_SOURCES = RTUnzip.cpp
231 RTUnzip_SOURCES += ../VBox/LoadVBoxDDU.cpp
232
233 # RTNtDbgHelp - our tar clone (for testing the tar/gzip/gunzip streaming code)
234 PROGRAMS.win += RTNtDbgHelp
235 RTNtDbgHelp_TEMPLATE = VBoxR3Tool
236 RTNtDbgHelp_SOURCES = RTNtDbgHelp.cpp
237
238 # RTDbgSymCache - Symbol cache manager.
239 PROGRAMS += RTDbgSymCache
240 RTDbgSymCache_TEMPLATE = VBoxR3Tool
241 RTDbgSymCache_SOURCES = RTDbgSymCache.cpp
242
243 # RTSignTool - Signing utility.
244 PROGRAMS += RTSignTool
245 RTSignTool_TEMPLATE := VBoxR3Tool
246 RTSignTool_INCS := ../include
247 RTSignTool_SOURCES := RTSignTool.cpp
248 RTSignTool_LIBS = $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
249 RTSignTool_LIBS.win = Crypt32.lib NCrypt.lib
250
251 # RTTraceLogTool - Trace log collection and dissection tool.
252 PROGRAMS += RTTraceLogTool
253 RTTraceLogTool_TEMPLATE = VBoxR3Tool
254 RTTraceLogTool_SOURCES = RTTraceLogTool.cpp
255
256 # RTFuzzMaster - Fuzzing master tool.
257 PROGRAMS += RTFuzzMaster
258 RTFuzzMaster_TEMPLATE = VBoxR3Tool
259 RTFuzzMaster_SOURCES = RTFuzzMaster.cpp
260
261 # RTFuzzClient - Fuzzing client tool.
262 PROGRAMS += RTFuzzClient
263 RTFuzzClient_TEMPLATE = VBoxR3Tool
264 RTFuzzClient_SOURCES = RTFuzzClient.cpp
265
266 # RTEfiFatExtract - Extracting single files from a fat EFI binary.
267 PROGRAMS += RTEfiFatExtract
268 RTEfiFatExtract_TEMPLATE = VBoxR3Tool
269 RTEfiFatExtract_SOURCES = RTEfiFatExtract.cpp
270
271 # RTEfiSigDb - EFI signature database management tool.
272 PROGRAMS += RTEfiSigDb
273 RTEfiSigDb_TEMPLATE = VBoxR3Tool
274 RTEfiSigDb_SOURCES = RTEfiSigDb.cpp
275
276 if1of ($(KBUILD_TARGET), darwin linux solaris win)
277 # RTKrnlModInfo - our lsmod/kextstat clone (for testing the RTKrnlMod code).
278 PROGRAMS += RTKrnlModInfo
279 RTKrnlModInfo_TEMPLATE = VBoxR3Tool
280 RTKrnlModInfo_SOURCES = RTKrnlModInfo.cpp
281 endif
282
283endif # !VBOX_ONLY_BUILD
284
285include $(FILE_KBUILD_SUB_FOOTER)
286
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