Makefile.kmk revision 6eb6d0439d67fd4833f1d058b63bc9a56277b0b2
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync# $Id$
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync## @file
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync# Sub-Makefile for VBoxInstallHelper.dll.
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync#
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync#
6eb6d0439d67fd4833f1d058b63bc9a56277b0b2vboxsync# Copyright (C) 2008-2010 Oracle Corporation
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync#
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# available from http://www.virtualbox.org. This file is free software;
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# you can redistribute it and/or modify it under the terms of the GNU
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# General Public License (GPL) as published by the Free Software
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
e06c59a0dd265fb36fc3ade96b83ced3aec14c37vboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync#
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncSUB_DEPTH = ../../../../..
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncinclude $(KBUILD_PATH)/subheader.kmk
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncDLLS += VBoxInstallHelper
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_TEMPLATE = VBOXR3STATIC
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_DEFS = _WIN32_WINNT=0x0501 _UNICODE UNICODE
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_DEPS = $(VBOX_SVN_REV_KMK)
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncifdef VBOX_WITH_NETFLT
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync VBoxInstallHelper_DEFS += VBOX_WITH_NETFLT=1
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncendif
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_SOURCES = \
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync VBoxInstallHelper.cpp \
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync VBoxInstallHelper.def \
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync VBoxCommon.cpp
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncifndef VBOX_OSE
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync VBoxInstallHelper_SOURCES += internal/VBoxSerial.cpp
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncendif
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_SDKS = WINPSDK W2K3DDK
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncVBoxInstallHelper_LIBS = $(PATH_SDK_W2K3DDK_LIB)/Msi.lib
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncifdef VBOX_WITH_NETFLT
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync VBoxInstallHelper_LIBS += $(PATH_LIB)/WinNetConfig.lib \
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/comsupp.lib \
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync $(PATH_SDK_WINPSDK_LIB)/WbemUuid.Lib
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncendif
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncifeq ($(KBUILD_TARGET),win)
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync ifdef VBOX_WITH_TESTCASES
512facdec74744adf03a688eae5ae00628d89d82vboxsync ifndef VBOX_OSE
512facdec74744adf03a688eae5ae00628d89d82vboxsync include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
512facdec74744adf03a688eae5ae00628d89d82vboxsync endif
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync endif
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncendif
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsync
18470279db8a9fdd714617adbe1aa8b63cc80aeevboxsyncinclude $(KBUILD_PATH)/subfooter.kmk
6eb6d0439d67fd4833f1d058b63bc9a56277b0b2vboxsync