VirtualBox

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

Last change on this file since 66769 was 66769, checked in by vboxsync, 8 years ago

RTLs: VFS test tool and some fun.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1# $Id: Makefile.kmk 66769 2017-05-04 00:59:45Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT tools.
4#
5
6#
7# Copyright (C) 2006-2016 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27SUB_DEPTH = ../../../..
28include $(KBUILD_PATH)/subheader.kmk
29
30
31# RTManifest is a tool for creating and verifying manifest files - build version.
32BLDPROGS += bldRTManifest
33bldRTManifest_TEMPLATE = VBoxAdvBldProg
34bldRTManifest_SOURCES = RTManifest.cpp
35
36# RTSignTool - Signing utility - build version. Signed on windows so we can get the certificate from it.
37BLDPROGS += bldRTSignTool
38bldRTSignTool_TEMPLATE = VBoxAdvBldProg
39bldRTSignTool_SOURCES = RTSignTool.cpp
40bldRTSignTool_DEFS = IPRT_IN_BUILD_TOOL
41bldRTSignTool_POST_CMDS.win = $(VBOX_SIGN_IMAGE_CMDS)
42
43if !defined(VBOX_ONLY_ADDITIONS) \
44 && !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS) \
45 && !defined(VBOX_ONLY_VALIDATIONKIT)
46
47 # RTCat is a tool for displaying files.
48 PROGRAMS += RTCat
49 RTCat_TEMPLATE = VBoxR3Tool
50 RTCat_SOURCES = RTCat.cpp
51
52 # RTLs is a tool for listing file information.
53 PROGRAMS += RTLs
54 RTLs_TEMPLATE = VBoxR3Tool
55 RTLs_SOURCES = RTLs.cpp
56
57 # RTRm is a tool for removing files and directories.
58 PROGRAMS += RTRm
59 RTRm_TEMPLATE = VBoxR3Tool
60 RTRm_SOURCES = RTRm.cpp
61
62 # RTManifest is a tool for creating and verifying manifest files.
63 PROGRAMS += RTManifest
64 RTManifest_TEMPLATE = VBoxR3Tool
65 RTManifest_SOURCES = RTManifest.cpp
66
67 # RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks.
68 PROGRAMS += RTLdrFlt
69 RTLdrFlt_TEMPLATE = VBoxR3Tool
70 RTLdrFlt_SOURCES = RTLdrFlt.cpp
71
72 # RTGzip - our gzip clone (for testing the gzip/gunzip streaming code)
73 PROGRAMS += RTGzip
74 RTGzip_TEMPLATE = VBoxR3Tool
75 RTGzip_SOURCES = RTGzip.cpp
76
77 ifdef VBOX_WITH_LIBCURL
78 # RTHttp - our http/https fetcher (for testing the http client API).
79 PROGRAMS += RTHttp
80 RTHttp_TEMPLATE = VBoxR3Tool
81 RTHttp_SOURCES = RTHttp.cpp
82 endif
83
84 # RTShutdown - similar (but not identical) to a typical unix shutdown command.
85 PROGRAMS += RTShutdown
86 RTShutdown_TEMPLATE = VBoxR3Tool
87 RTShutdown_SOURCES = RTShutdown.cpp
88
89 # RTTar - our tar clone (for testing the tar/gzip/gunzip streaming code)
90 PROGRAMS += RTTar
91 RTTar_TEMPLATE = VBoxR3Tool
92 RTTar_SOURCES = RTTar.cpp
93
94 # RTUnzip - our unzip clone (for testing the unzip streaming code)
95 PROGRAMS += RTUnzip
96 RTUnzip_TEMPLATE = VBoxR3Tool
97 RTUnzip_SOURCES = RTUnzip.cpp
98
99 # RTNtDbgHelp - our tar clone (for testing the tar/gzip/gunzip streaming code)
100 PROGRAMS.win += RTNtDbgHelp
101 RTNtDbgHelp_TEMPLATE = VBoxR3Tool
102 RTNtDbgHelp_SOURCES = RTNtDbgHelp.cpp
103
104 # RTDbgSymCache - Symbol cache manager.
105 PROGRAMS += RTDbgSymCache
106 RTDbgSymCache_TEMPLATE = VBoxR3Tool
107 RTDbgSymCache_SOURCES = RTDbgSymCache.cpp
108
109 # RTSignTool - Signing utility.
110 PROGRAMS += RTSignTool
111 RTSignTool_TEMPLATE = VBoxR3Tool
112 RTSignTool_SOURCES = RTSignTool.cpp
113 RTSignTool_LIBS = $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
114
115endif # !VBOX_ONLY_EXTPACKS_USE_IMPLIBS
116
117include $(FILE_KBUILD_SUB_FOOTER)
118
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