1 | # $Id: Makefile.kmk 18866 2009-04-10 14:13:10Z 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 += \
|
---|
31 | tstAPI \
|
---|
32 | $(if $(VBOX_WITH_XPCOM),tstVBoxAPILinux,tstVBoxAPIWin) \
|
---|
33 | $(if $(VBOX_WITH_RESOURCE_USAGE_API),tstCollector,)
|
---|
34 | PROGRAMS.linux += \
|
---|
35 | $(if $(VBOX_WITH_USB),tstHostHardwareLinux,)
|
---|
36 | endif # !VBOX_WITH_TESTCASES
|
---|
37 | endif # !VBOX_ONLY_SDK
|
---|
38 | if defined(VBOX_ONLY_SDK) || !defined(VBOX_WITH_XPCOM)
|
---|
39 | INSTALLS += samplesMSCOM
|
---|
40 | endif
|
---|
41 | if defined(VBOX_ONLY_SDK) || defined(VBOX_WITH_XPCOM)
|
---|
42 | INSTALLS += samplesXPCOM
|
---|
43 | endif
|
---|
44 |
|
---|
45 |
|
---|
46 | #
|
---|
47 | # The samples
|
---|
48 | #
|
---|
49 | samplesMSCOM_MODE = a+r,u+w
|
---|
50 | samplesMSCOM_INST = $(INST_SDK)bindings/mscom/samples/
|
---|
51 | samplesMSCOM_SOURCES = tstVBoxAPIWin.cpp
|
---|
52 |
|
---|
53 | samplesXPCOM_MODE = a+r,u+w
|
---|
54 | samplesXPCOM_INST = $(INST_SDK)bindings/xpcom/samples/
|
---|
55 | samplesXPCOM_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile
|
---|
56 |
|
---|
57 |
|
---|
58 | #
|
---|
59 | # tstAPI
|
---|
60 | #
|
---|
61 | tstAPI_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
62 | #tstAPI_INST = $(INST_SDK)bindings/gluecom/samples/
|
---|
63 | tstAPI_SOURCES = tstAPI.cpp
|
---|
64 | ifeq ($(KBUILD_TARGET),win) ## @todo just add this to the template.
|
---|
65 | tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
|
---|
66 | else
|
---|
67 | tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
|
---|
68 | endif
|
---|
69 | ifdef VBOX_WITH_RESOURCE_USAGE_API
|
---|
70 | tstAPI_DEFS += VBOX_WITH_RESOURCE_USAGE_API
|
---|
71 | endif
|
---|
72 |
|
---|
73 |
|
---|
74 | #
|
---|
75 | # tstVBoxAPILinux
|
---|
76 | #
|
---|
77 | # We only build the testcase here to make sure it builds.
|
---|
78 | # It comes with a custom makefile which should be tested as well!
|
---|
79 | #
|
---|
80 | tstVBoxAPILinux_TEMPLATE = VBOXR3EXE
|
---|
81 | tstVBoxAPILinux_SOURCES = tstVBoxAPILinux.cpp
|
---|
82 | tstVBoxAPILinux_CXXFLAGS = -Wno-non-virtual-dtor -fshort-wchar
|
---|
83 | tstVBoxAPILinux_LDFLAGS.solaris += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/../../..'
|
---|
84 | ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
85 | tstVBoxAPILinux_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
86 | endif
|
---|
87 | tstVBoxAPILinux_INCS = \
|
---|
88 | $(VBOX_XPCOM_INCS) \
|
---|
89 | $(VBOX_PATH_SDK)/bindings/xpcom/include
|
---|
90 | tstVBoxAPILinux_LIBPATH = $(LIBPATH_XPCOM)
|
---|
91 | tstVBoxAPILinux_LIBS = $(LIB_XPCOM) $(LIB_RUNTIME)
|
---|
92 | tstVBoxAPILinux_DEPS = \
|
---|
93 | $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
|
---|
94 |
|
---|
95 |
|
---|
96 | #
|
---|
97 | # tstVBoxAPIWin
|
---|
98 | #
|
---|
99 | tstVBoxAPIWin_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
100 | tstVBoxAPIWin_SOURCES = \
|
---|
101 | tstVBoxAPIWin.cpp \
|
---|
102 | $(VBOX_PATH_SDK)/bindings/mscom/lib/VirtualBox_i.c
|
---|
103 | tstVBoxAPIWin_DEPS = \
|
---|
104 | $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
|
---|
105 |
|
---|
106 |
|
---|
107 | #
|
---|
108 | # tstCollector
|
---|
109 | #
|
---|
110 | tstCollector_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
111 | tstCollector_SOURCES = \
|
---|
112 | tstCollector.cpp \
|
---|
113 | ../Performance.cpp
|
---|
114 | tstCollector_INCS = ../include
|
---|
115 | tstCollector_LDFLAGS.darwin += -lproc
|
---|
116 | tstCollector_LDFLAGS.solaris += -lkstat
|
---|
117 | tstCollector_LDFLAGS.win += psapi.lib powrprof.lib
|
---|
118 |
|
---|
119 |
|
---|
120 |
|
---|
121 | #
|
---|
122 | # tstHostHardwareLinux
|
---|
123 | #
|
---|
124 | tstHostHardwareLinux_TEMPLATE = VBOXR3TSTEXE
|
---|
125 | tstHostHardwareLinux_SOURCES = \
|
---|
126 | tstHostHardwareLinux.cpp \
|
---|
127 | ../linux/HostHardwareLinux.cpp \
|
---|
128 | ../linux/vbox-dbus.cpp
|
---|
129 | tstHostHardwareLinux_INCS = . ../include
|
---|
130 | tstHostHardwareLinux_DEFS = \
|
---|
131 | VBOX_TEST_USB_LINUX \
|
---|
132 | $(if $(VBOX_WITH_LINUX_COMPILER_H),VBOX_WITH_LINUX_COMPILER_H,) \
|
---|
133 | $(if $(VBOX_WITH_DBUS),VBOX_WITH_DBUS,) \
|
---|
134 | $(if $(VBOX_USB_WITH_SYSFS),VBOX_USB_WITH_SYSFS,)
|
---|
135 | tstHostHardwareLinux_LIBS += $(PATH_OUT)/lib/USBLib.a
|
---|
136 |
|
---|
137 |
|
---|
138 | # generate rules.
|
---|
139 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
140 |
|
---|