1 | # $Id: Makefile.kmk 41477 2012-05-29 11:43:27Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Shared Folders Host Service testcases.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2012 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 | #
|
---|
22 | # Structure size testcase.
|
---|
23 | #
|
---|
24 | PROGRAMS += tstShflSizes
|
---|
25 | TESTING += $(tstShflSizes_0_OUTDIR)/tstShflSizes.run
|
---|
26 | ifndef VBOX_ONLY_SDK
|
---|
27 | ifeq ($(KBUILD_TARGET),$(KBUILD_HOST))
|
---|
28 | if1of ($(KBUILD_TARGET_ARCH).$(KBUILD_HOST_ARCH), x86.x86 amd64.amd64 x86.amd64)
|
---|
29 | OTHERS += $(tstShflSizes_0_OUTDIR)/tstShflSizes.run
|
---|
30 | endif
|
---|
31 | endif
|
---|
32 | endif
|
---|
33 | tstShflSizes_TEMPLATE = VBOXR3AUTOTST
|
---|
34 | tstShflSizes_DEFS = VBOX_WITH_HGCM
|
---|
35 | tstShflSizes_SOURCES = tstShflSizes.cpp
|
---|
36 | tstShflSizes_CLEAN = $(tstShflSizes_0_OUTDIR)/tstShflSizes.run
|
---|
37 |
|
---|
38 | $$(tstShflSizes_0_OUTDIR)/tstShflSizes.run: $$(tstShflSizes_1_STAGE_TARGET)
|
---|
39 | $(tstShflSizes_1_STAGE_TARGET) quiet
|
---|
40 | $(QUIET)$(APPEND) -t "$@" "done"
|
---|
41 |
|
---|
42 |
|
---|
43 | ifdef VBOX_WITH_TESTCASES
|
---|
44 | #
|
---|
45 | # Case conversion testcase.
|
---|
46 | #
|
---|
47 | PROGRAMS += tstShflCase
|
---|
48 | tstShflCase_TEMPLATE = VBOXR3TSTEXE
|
---|
49 | tstShflCase_DEFS = VBOX_WITH_HGCM
|
---|
50 | tstShflCase_SOURCES = tstShflCase.cpp
|
---|
51 | tstShflCase_LIBS = $(LIB_RUNTIME)
|
---|
52 |
|
---|
53 | #
|
---|
54 | # HGCM service testcase.
|
---|
55 | #
|
---|
56 |
|
---|
57 | # As there are differences between the Windows build of the service and others,
|
---|
58 | # we do an additional build with RT_OS_WINDOWS defined on non-Windows targets.
|
---|
59 | PROGRAMS += \
|
---|
60 | tstSharedFolderService \
|
---|
61 | $(if $(eq $(KBUILD_TARGET),win),,tstSharedFolderService-win)
|
---|
62 |
|
---|
63 | tstSharedFolderService_TEMPLATE = VBOXR3TSTEXE
|
---|
64 | tstSharedFolderService_DEFS = VBOX_WITH_HGCM UNITTEST
|
---|
65 | tstSharedFolderService_INCS = ..
|
---|
66 | tstSharedFolderService_SOURCES = \
|
---|
67 | tstSharedFolderService.cpp \
|
---|
68 | ../mappings.cpp \
|
---|
69 | ../service.cpp \
|
---|
70 | ../shflhandle.cpp \
|
---|
71 | ../vbsf.cpp
|
---|
72 | tstSharedFolderService_LDFLAGS.darwin = \
|
---|
73 | -framework Carbon
|
---|
74 | tstSharedFolderService_LIBS = $(LIB_RUNTIME)
|
---|
75 |
|
---|
76 | tstSharedFolderService-win_TEMPLATE = $(tstSharedFolderService_TEMPLATE)
|
---|
77 | tstSharedFolderService-win_DEFS = \
|
---|
78 | $(tstSharedFolderService_DEFS) \
|
---|
79 | RT_OS_WINDOWS
|
---|
80 | tstSharedFolderService-win_INCS = $(tstSharedFolderService_INCS)
|
---|
81 | tstSharedFolderService-win_SOURCES = $(tstSharedFolderService_SOURCES)
|
---|
82 | tstSharedFolderService-win_LDFLAGS.darwin = \
|
---|
83 | $(tstSharedFolderService_LDFLAGS.darwin)
|
---|
84 | tstSharedFolderService-win_LIBS = $(tstSharedFolderService_LIBS)
|
---|
85 |
|
---|
86 | endif # VBOX_WITH_TESTCASES
|
---|
87 |
|
---|
88 |
|
---|
89 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
90 |
|
---|