Makefile.kmk revision 039cd2c4871a00e51af909222a34695d9cec3000
1N/A# $Id$
1N/A## @file
1N/A# Sub-Makefile for the Shared Folders Host Service.
1N/A#
1N/A
1N/A#
1N/A# Copyright (C) 2006-2007 innotek GmbH
1N/A#
1N/A# This file is part of VirtualBox Open Source Edition (OSE), as
1N/A# available from http://www.virtualbox.org. This file is free software;
1N/A# you can redistribute it and/or modify it under the terms of the GNU
1N/A# General Public License as published by the Free Software Foundation,
1N/A# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
1N/A# distribution. VirtualBox OSE is distributed in the hope that it will
1N/A# be useful, but WITHOUT ANY WARRANTY of any kind.
1N/A#
1N/A# If you received this file as part of a commercial VirtualBox
1N/A# distribution, then only the terms of your commercial VirtualBox
1N/A# license agreement apply instead of the previous paragraph.
1N/A#
1N/A
1N/ADEPTH ?= ../../../..
1N/ASUB_DEPTH = ..
1N/Ainclude $(PATH_KBUILD)/subheader.kmk
1N/A
1N/A# Include sub-makefile(s).
1N/Ainclude $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
1N/A
1N/A#
1N/A# The shared folder service DLL.
1N/A#
1N/ADLLS += VBoxSharedFolders
1N/AVBoxSharedFolders_TEMPLATE = VBOXR3
1N/AVBoxSharedFolders_DEFS = VBOX_HGCM RTSHFL
1N/AVBoxSharedFolders_INCS.win = \
1N/A $(PATH_TOOL_$(VBOX_VCC_TOOL)_ATLMFC_INC) \
1N/A $(VBOX_PATH_SDK)
1N/A
1N/AVBoxSharedFolders_SOURCES = \
1N/A service.cpp \
1N/A shflhandle.cpp \
1N/A vbsf.cpp \
1N/A mappings.cpp
1N/A
1N/AVBoxSharedFolders_LIBS = \
1N/A $(LIB_VMM) \
1N/A $(LIB_RUNTIME) \
1N/A $(LIB_REM)
1N/A
1N/Ainclude $(PATH_KBUILD)/subfooter.kmk
1N/A
1N/A