Makefile.kmk revision af94589ac6d270c3ce4519fcd0faa1b9daa24f07
af062818b47340eef15700d2f0211576ba3506eevboxsync# $Id$
af062818b47340eef15700d2f0211576ba3506eevboxsync## @file
af062818b47340eef15700d2f0211576ba3506eevboxsync# Sub-Makefile for the IPRT tools.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Copyright (C) 2006-2010 Oracle Corporation
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
af062818b47340eef15700d2f0211576ba3506eevboxsync# available from http://www.virtualbox.org. This file is free software;
af062818b47340eef15700d2f0211576ba3506eevboxsync# you can redistribute it and/or modify it under the terms of the GNU
af062818b47340eef15700d2f0211576ba3506eevboxsync# General Public License (GPL) as published by the Free Software
af062818b47340eef15700d2f0211576ba3506eevboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
af062818b47340eef15700d2f0211576ba3506eevboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
af062818b47340eef15700d2f0211576ba3506eevboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# The contents of this file may alternatively be used under the terms
af062818b47340eef15700d2f0211576ba3506eevboxsync# of the Common Development and Distribution License Version 1.0
af062818b47340eef15700d2f0211576ba3506eevboxsync# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
af062818b47340eef15700d2f0211576ba3506eevboxsync# VirtualBox OSE distribution, in which case the provisions of the
af062818b47340eef15700d2f0211576ba3506eevboxsync# CDDL are applicable instead of those of the GPL.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# You may elect to license modified versions of this file under the
af062818b47340eef15700d2f0211576ba3506eevboxsync# terms and conditions of either the GPL or the CDDL or both.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncSUB_DEPTH = ../../../..
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(KBUILD_PATH)/subheader.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync# RTManifest is a tool for creating and verifying manifest files - build version.
af062818b47340eef15700d2f0211576ba3506eevboxsyncBLDPROGS += bldRTManifest
af062818b47340eef15700d2f0211576ba3506eevboxsyncbldRTManifest_TEMPLATE = VBoxAdvBldProg
af062818b47340eef15700d2f0211576ba3506eevboxsyncbldRTManifest_SOURCES = RTManifest.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncifndef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync # RTManifest is a tool for creating and verifying manifest files.
af062818b47340eef15700d2f0211576ba3506eevboxsync PROGRAMS += RTManifest
af062818b47340eef15700d2f0211576ba3506eevboxsync RTManifest_TEMPLATE = VBOXR3TSTEXE
af062818b47340eef15700d2f0211576ba3506eevboxsync RTManifest_SOURCES = RTManifest.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync # RTLdrFlt is similar to c++filt, except that it's for VMMR0.r0 stacks.
af062818b47340eef15700d2f0211576ba3506eevboxsync PROGRAMS += RTLdrFlt
af062818b47340eef15700d2f0211576ba3506eevboxsync RTLdrFlt_TEMPLATE = VBOXR3TSTEXE
af062818b47340eef15700d2f0211576ba3506eevboxsync RTLdrFlt_SOURCES = RTLdrFlt.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync # RTGzip - our gzip clone (for testing the gzip/gunzip streaming code)
af062818b47340eef15700d2f0211576ba3506eevboxsync PROGRAMS += RTGzip
af062818b47340eef15700d2f0211576ba3506eevboxsync RTGzip_TEMPLATE = VBOXR3TSTEXE
af062818b47340eef15700d2f0211576ba3506eevboxsync RTGzip_SOURCES = RTGzip.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync # RTTar - our tar clone (for testing the tar/gzip/gunzip streaming code)
af062818b47340eef15700d2f0211576ba3506eevboxsync PROGRAMS += RTTar
af062818b47340eef15700d2f0211576ba3506eevboxsync RTTar_TEMPLATE = VBOXR3TSTEXE
af062818b47340eef15700d2f0211576ba3506eevboxsync RTTar_SOURCES = RTTar.cpp
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif # !VBOX_ONLY_EXTPACKS_USE_IMPLIBS
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(KBUILD_PATH)/subfooter.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync