# $Id: Makefile.kmk 62477 2016-07-22 18:27:37Z vboxsync $ ## @file # Sub-Makefile for the IPRT tools. # # # Copyright (C) 2006-2016 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; # you can redistribute it and/or modify it under the terms of the GNU # General Public License (GPL) as published by the Free Software # Foundation, in version 2 as it comes in the "COPYING" file of the # VirtualBox OSE distribution. VirtualBox OSE is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. # # The contents of this file may alternatively be used under the terms # of the Common Development and Distribution License Version 1.0 # (CDDL) only, as it comes in the "COPYING.CDDL" file of the # VirtualBox OSE distribution, in which case the provisions of the # CDDL are applicable instead of those of the GPL. # # You may elect to license modified versions of this file under the # terms and conditions of either the GPL or the CDDL or both. # SUB_DEPTH = ../../../.. include $(KBUILD_PATH)/subheader.kmk # RTManifest is a tool for creating and verifying manifest files - build version. BLDPROGS += bldRTManifest bldRTManifest_TEMPLATE = VBoxAdvBldProg bldRTManifest_SOURCES = RTManifest.cpp # RTSignTool - Signing utility - build version. Signed on windows so we can get the certificate from it. BLDPROGS += bldRTSignTool bldRTSignTool_TEMPLATE = VBoxAdvBldProg bldRTSignTool_SOURCES = RTSignTool.cpp bldRTSignTool_DEFS = IPRT_IN_BUILD_TOOL bldRTSignTool_POST_CMDS.win = $(VBOX_SIGN_IMAGE_CMDS) if !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS) && !defined(VBOX_ONLY_VALIDATIONKIT) # RTManifest is a tool for creating and verifying manifest files. PROGRAMS += RTRm RTRm_TEMPLATE = VBoxR3Tool RTRm_SOURCES = RTRm.cpp # RTManifest is a tool for creating and verifying manifest files. PROGRAMS += RTManifest RTManifest_TEMPLATE = VBoxR3Tool RTManifest_SOURCES = RTManifest.cpp # RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks. PROGRAMS += RTLdrFlt RTLdrFlt_TEMPLATE = VBoxR3Tool RTLdrFlt_SOURCES = RTLdrFlt.cpp # RTGzip - our gzip clone (for testing the gzip/gunzip streaming code) PROGRAMS += RTGzip RTGzip_TEMPLATE = VBoxR3Tool RTGzip_SOURCES = RTGzip.cpp ifdef VBOX_WITH_LIBCURL # RTHttp - our http/https fetcher (for testing the http client API). PROGRAMS += RTHttp RTHttp_TEMPLATE = VBoxR3Tool RTHttp_SOURCES = RTHttp.cpp endif # RTShutdown - similar (but not identical) to a typical unix shutdown command. PROGRAMS += RTShutdown RTShutdown_TEMPLATE = VBoxR3Tool RTShutdown_SOURCES = RTShutdown.cpp # RTTar - our tar clone (for testing the tar/gzip/gunzip streaming code) PROGRAMS += RTTar RTTar_TEMPLATE = VBoxR3Tool RTTar_SOURCES = RTTar.cpp # RTUnzip - our unzip clone (for testing the unzip streaming code) PROGRAMS += RTUnzip RTUnzip_TEMPLATE = VBoxR3Tool RTUnzip_SOURCES = RTUnzip.cpp # RTNtDbgHelp - our tar clone (for testing the tar/gzip/gunzip streaming code) PROGRAMS.win += RTNtDbgHelp RTNtDbgHelp_TEMPLATE = VBoxR3Tool RTNtDbgHelp_SOURCES = RTNtDbgHelp.cpp # RTDbgSymCache - Symbol cache manager. PROGRAMS += RTDbgSymCache RTDbgSymCache_TEMPLATE = VBoxR3Tool RTDbgSymCache_SOURCES = RTDbgSymCache.cpp # RTSignTool - Signing utility. PROGRAMS += RTSignTool RTSignTool_TEMPLATE = VBoxR3Tool RTSignTool_SOURCES = RTSignTool.cpp RTSignTool_LIBS = $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB) endif # !VBOX_ONLY_EXTPACKS_USE_IMPLIBS include $(FILE_KBUILD_SUB_FOOTER)