cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# $Id$
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync## @file
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# VirtualBox Validation Kit - The Basic Remote Execution Service.
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync#
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync#
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# Copyright (C) 2010-2014 Oracle Corporation
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync#
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# available from http://www.virtualbox.org. This file is free software;
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# you can redistribute it and/or modify it under the terms of the GNU
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# General Public License (GPL) as published by the Free Software
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync#
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# The contents of this file may alternatively be used under the terms
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# of the Common Development and Distribution License Version 1.0
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# VirtualBox OSE distribution, in which case the provisions of the
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# CDDL are applicable instead of those of the GPL.
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync#
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# You may elect to license modified versions of this file under the
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync# terms and conditions of either the GPL or the CDDL or both.
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync#
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncSUB_DEPTH = ../../../../..
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncinclude $(KBUILD_PATH)/subheader.kmk
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncPROGRAMS += TestExecService
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecService_TEMPLATE = VBoxValidationKitR3
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecService_DEFS = \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync KBUILD_TARGET=\"$(KBUILD_TARGET)\" \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync KBUILD_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\"
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecService_SOURCES = \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync TestExecService.cpp \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync TestExecServiceTcp.cpp
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncINSTALLS += TestExecServiceFiles
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_TEMPLATE = VBoxValidationKitR3
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_INST = $(INST_VALIDATIONKIT)
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_SOURCES := \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync vboxtxs-readme.txt
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_EXEC_SOURCES.linux := \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/linux/vboxtxs.sh=>linux/vboxtxs \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/linux/vboxtxs-nat.sh=>linux/vboxtxs-nat
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_SOURCES.solaris := \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/solaris/vboxtxs.xml=>solaris/vboxtxs.xml \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/solaris/vboxtxs-sol10.xml=>solaris/vboxtxs-sol10.xml
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_EXEC_SOURCES.solaris := \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/solaris/vboxtxs.sh=>solaris/vboxtxs.sh
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_SOURCES.win := \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/win/vboxtxs.reg=>win/vboxtxs.reg \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/win/vboxtxs-nat.reg=>win/vboxtxs-nat.reg
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncTestExecServiceFiles_EXEC_SOURCES.win := \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/win/vboxtxs.cmd=>win/vboxtxs.cmd \
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync $(PATH_SUB_CURRENT)/win/vboxtxs-nat.cmd=>win/vboxtxs-nat.cmd
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsyncinclude $(FILE_KBUILD_SUB_FOOTER)
cf22150eaeeb72431bf1cf65c309a431454fb22bvboxsync