e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# $Id$
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync## @file
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# Sub-Makefile for the Host Channel Service.
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync#
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync#
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# Copyright (C) 2012 Oracle Corporation
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync#
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# available from http://www.virtualbox.org. This file is free software;
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# you can redistribute it and/or modify it under the terms of the GNU
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# General Public License (GPL) as published by the Free Software
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync#
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncSUB_DEPTH = ../../../..
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncinclude $(KBUILD_PATH)/subheader.kmk
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync#
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync# The service DLL.
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync#
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncDLLS += VBoxHostChannel
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncVBoxHostChannel_TEMPLATE = VBOXR3
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncVBoxHostChannel_DEFS = VBOX_WITH_HGCM
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncVBoxHostChannel_INCS.win = \
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync $(VBOX_PATH_SDK)
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncVBoxHostChannel_SOURCES = \
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync service.cpp \
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync HostChannel.cpp
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync
85fc7dbf8f928aea2a6fddde85a77950f69284ddvboxsyncVBoxHostChannel_SOURCES.win = \
85fc7dbf8f928aea2a6fddde85a77950f69284ddvboxsync VBoxHostChannel.rc
85fc7dbf8f928aea2a6fddde85a77950f69284ddvboxsync
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncVBoxHostChannel_LIBS = \
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync $(LIB_VMM) \
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync $(LIB_RUNTIME)
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsync
e2a4ff87ea2e2e95350793b5fccb143c1819fadcvboxsyncinclude $(FILE_KBUILD_SUB_FOOTER)