Makefile.kmk revision 8502773207230763deba3e622495f2099398dcb0
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# $Id$
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync## @file
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# Sub-Makefile for the IPRT tools.
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# Copyright (C) 2006-2013 Oracle Corporation
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# available from http://www.virtualbox.org. This file is free software;
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# you can redistribute it and/or modify it under the terms of the GNU
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# General Public License (GPL) as published by the Free Software
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
ac153c99053f1edf42b00bf3a13475923bc4fcf1vboxsync#
ac153c99053f1edf42b00bf3a13475923bc4fcf1vboxsync# The contents of this file may alternatively be used under the terms
ac153c99053f1edf42b00bf3a13475923bc4fcf1vboxsync# of the Common Development and Distribution License Version 1.0
ac153c99053f1edf42b00bf3a13475923bc4fcf1vboxsync# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
ac153c99053f1edf42b00bf3a13475923bc4fcf1vboxsync# VirtualBox OSE distribution, in which case the provisions of the
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync# CDDL are applicable instead of those of the GPL.
6728a36898fd2be125a28e84d2115d19aa4923edvboxsync#
# 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
ifndef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
# RTManifest is a tool for creating and verifying manifest files.
PROGRAMS += RTRm
RTRm_TEMPLATE = VBOXR3TSTEXE
RTRm_SOURCES = RTRm.cpp
# RTManifest is a tool for creating and verifying manifest files.
PROGRAMS += RTManifest
RTManifest_TEMPLATE = VBOXR3TSTEXE
RTManifest_SOURCES = RTManifest.cpp
# RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks.
PROGRAMS += RTLdrFlt
RTLdrFlt_TEMPLATE = VBOXR3TSTEXE
RTLdrFlt_SOURCES = RTLdrFlt.cpp
# RTGzip - our gzip clone (for testing the gzip/gunzip streaming code)
PROGRAMS += RTGzip
RTGzip_TEMPLATE = VBOXR3TSTEXE
RTGzip_SOURCES = RTGzip.cpp
# RTShutdown - similar (but not identical) to a typical unix shutdown command.
PROGRAMS += RTShutdown
RTShutdown_TEMPLATE = VBOXR3TSTEXE
RTShutdown_SOURCES = RTShutdown.cpp
# RTTar - our tar clone (for testing the tar/gzip/gunzip streaming code)
PROGRAMS += RTTar
RTTar_TEMPLATE = VBOXR3TSTEXE
RTTar_SOURCES = RTTar.cpp
endif # !VBOX_ONLY_EXTPACKS_USE_IMPLIBS
include $(FILE_KBUILD_SUB_FOOTER)