1 | # $Id: Makefile.kmk 31661 2010-08-13 15:49:24Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Guest Additions loader.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2008 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | # This has to be 32-bit, so don't include it in the 64-bit build.
|
---|
22 | if "$(KBUILD_TARGET_ARCH)" == "x86"
|
---|
23 | PROGRAMS.x86 += VBoxWindowsAdditions
|
---|
24 | VBoxWindowsAdditions_TEMPLATE= VBOXGUESTR3EXE
|
---|
25 | VBoxWindowsAdditions_DEFS = _WIN32_WINNT=0x0400 _UNICODE UNICODE
|
---|
26 | VBoxWindowsAdditions_SOURCES = \
|
---|
27 | VBoxWindowsAdditions.cpp \
|
---|
28 | VBoxWindowsAdditions.rc
|
---|
29 |
|
---|
30 | VBoxWindowsAdditions_LDFLAGS = \
|
---|
31 | /DISALLOWLIB:msvcrt.lib \
|
---|
32 | /DISALLOWLIB:msvcprt.lib \
|
---|
33 | /DISALLOWLIB:libcmt.lib
|
---|
34 |
|
---|
35 | VBoxWindowsAdditions_LIBS = \
|
---|
36 | $(PATH_TOOL_$(TEMPLATE_VBOXR3EXE_TOOL)_LIB)/oldnames.lib \
|
---|
37 | $(PATH_TOOL_$(TEMPLATE_VBOXR3EXE_TOOL)_LIB)/libcmt.lib \
|
---|
38 | $(PATH_TOOL_$(TEMPLATE_VBOXR3EXE_TOOL)_LIB)/libcpmt.lib
|
---|
39 |
|
---|
40 | # Version stuff.
|
---|
41 | VBoxWindowsAdditions.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
|
---|
42 | VBoxWindowsAdditions.cpp_DEPS = $(VBOX_SVN_REV_KMK)
|
---|
43 |
|
---|
44 | # The icon location is configurable.
|
---|
45 | VBoxWindowsAdditions.rc_INCS += $(PATH_VBoxWindowsAdditions)
|
---|
46 | VBoxWindowsAdditions.rc_DEPS += $(PATH_VBoxWindowsAdditions)/VBoxWindowsAdditions-icon.rc
|
---|
47 | VBoxWindowsAdditions.rc_CLEAN = $(PATH_VBoxWindowsAdditions)/VBoxWindowsAdditions-icon.rc
|
---|
48 |
|
---|
49 |
|
---|
50 | # Icon include file.
|
---|
51 | $$(PATH_VBoxWindowsAdditions)/VBoxWindowsAdditions-icon.rc: $(VBOX_WINDOWS_ADDITIONS_ICON_FILE) Makefile.kmk | $$(dir $$@)
|
---|
52 | $(RM) -f $@
|
---|
53 | $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"'
|
---|
54 |
|
---|
55 | endif # x86 only
|
---|
56 |
|
---|
57 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
58 |
|
---|