1 | # $Id: Makefile.kmk 12513 2008-09-16 19:11:15Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the VBox API testcases.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | # additional information or have any questions.
|
---|
20 | #
|
---|
21 |
|
---|
22 | SUB_DEPTH = ../../../..
|
---|
23 | include $(KBUILD_PATH)/subheader.kmk
|
---|
24 |
|
---|
25 | #
|
---|
26 | # Target and globals (small mess)
|
---|
27 | #
|
---|
28 | ifndef VBOX_ONLY_SDK
|
---|
29 | if defined(VBOX_WITH_TESTCASES) || "$(USERNAME)" == "dmik"
|
---|
30 | PROGRAMS += tstAPI
|
---|
31 | ifdef VBOX_WITH_XPCOM
|
---|
32 | PROGRAMS += tstVBoxAPILinux
|
---|
33 | else
|
---|
34 | PROGRAMS += tstVBoxAPIWin
|
---|
35 | endif
|
---|
36 | ifdef VBOX_WITH_RESOURCE_USAGE_API
|
---|
37 | PROGRAMS += tstCollector
|
---|
38 | endif
|
---|
39 | endif # !VBOX_WITH_TESTCASES
|
---|
40 | endif # !VBOX_ONLY_SDK
|
---|
41 | if defined(VBOX_ONLY_SDK) || !defined(VBOX_WITH_XPCOM)
|
---|
42 | INSTALLS += samplesMSCOM
|
---|
43 | endif
|
---|
44 | if defined(VBOX_ONLY_SDK) || defined(VBOX_WITH_XPCOM)
|
---|
45 | INSTALLS += samplesXPCOM
|
---|
46 | endif
|
---|
47 |
|
---|
48 |
|
---|
49 | #
|
---|
50 | # The samples
|
---|
51 | #
|
---|
52 | samplesMSCOM_MODE = a+r,u+w
|
---|
53 | samplesMSCOM_INST = $(INST_SDK)bindings/mscom/samples/
|
---|
54 | samplesMSCOM_SOURCES = tstVBoxAPIWin.cpp
|
---|
55 |
|
---|
56 | samplesXPCOM_MODE = a+r,u+w
|
---|
57 | samplesXPCOM_INST = $(INST_SDK)bindings/xpcom/samples/
|
---|
58 | samplesXPCOM_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile
|
---|
59 |
|
---|
60 |
|
---|
61 | #
|
---|
62 | # tstAPI
|
---|
63 | #
|
---|
64 | tstAPI_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
65 | #tstAPI_INST = $(INST_SDK)bindings/gluecom/samples/
|
---|
66 | tstAPI_SOURCES = tstAPI.cpp
|
---|
67 | ifeq ($(KBUILD_TARGET),win) ## @todo just add this to the template.
|
---|
68 | tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
|
---|
69 | else
|
---|
70 | tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
|
---|
71 | endif
|
---|
72 | ifdef VBOX_WITH_RESOURCE_USAGE_API
|
---|
73 | tstAPI_DEFS += VBOX_WITH_RESOURCE_USAGE_API
|
---|
74 | endif
|
---|
75 |
|
---|
76 |
|
---|
77 | #
|
---|
78 | # tstVBoxAPILinux
|
---|
79 | #
|
---|
80 | # We only build the testcase here to make sure it builds.
|
---|
81 | # It comes with a custom makefile which should be tested as well!
|
---|
82 | #
|
---|
83 | tstVBoxAPILinux_TEMPLATE = VBOXR3EXE
|
---|
84 | tstVBoxAPILinux_SOURCES = tstVBoxAPILinux.cpp
|
---|
85 | tstVBoxAPILinux_CXXFLAGS = -Wno-non-virtual-dtor -fshort-wchar
|
---|
86 | tstVBoxAPILinux_LDFLAGS.solaris += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/../../..'
|
---|
87 | ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
88 | tstVBoxAPILinux_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
89 | endif
|
---|
90 | tstVBoxAPILinux_INCS = \
|
---|
91 | $(VBOX_XPCOM_INCS) \
|
---|
92 | $(VBOX_PATH_SDK)/bindings/xpcom/include
|
---|
93 | tstVBoxAPILinux_LIBPATH = $(LIBPATH_XPCOM)
|
---|
94 | tstVBoxAPILinux_LIBS = $(LIB_XPCOM) $(LIB_RUNTIME)
|
---|
95 | tstVBoxAPILinux_DEPS = \
|
---|
96 | $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
|
---|
97 |
|
---|
98 |
|
---|
99 | #
|
---|
100 | # tstVBoxAPIWin
|
---|
101 | #
|
---|
102 | tstVBoxAPIWin_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
103 | tstVBoxAPIWin_SOURCES = \
|
---|
104 | tstVBoxAPIWin.cpp \
|
---|
105 | $(VBOX_PATH_SDK)/bindings/mscom/lib/VirtualBox_i.c
|
---|
106 | tstVBoxAPIWin_DEPS = \
|
---|
107 | $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
|
---|
108 |
|
---|
109 |
|
---|
110 | #
|
---|
111 | # tstCollector
|
---|
112 | #
|
---|
113 | tstCollector_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
114 | tstCollector_SOURCES = \
|
---|
115 | tstCollector.cpp \
|
---|
116 | ../Performance.cpp
|
---|
117 | tstCollector_INCS = ../include
|
---|
118 | tstCollector_LDFLAGS.darwin += -lproc
|
---|
119 | tstCollector_LDFLAGS.solaris += -lkstat
|
---|
120 | tstCollector_LDFLAGS.win += psapi.lib powrprof.lib
|
---|
121 |
|
---|
122 |
|
---|
123 | # generate rules.
|
---|
124 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
125 |
|
---|