VirtualBox

source: vbox/trunk/src/VBox/Main/testcase/Makefile.kmk@ 11612

Last change on this file since 11612 was 11612, checked in by vboxsync, 16 years ago

major rework of sdk dirs layout

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1# $Id: Makefile.kmk 11612 2008-08-25 13:52:37Z 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
22ifdef VBOX_KBUILD_HACKING
23SUB_DEPTH = ../../../..
24else
25DEPTH ?= ../../../..
26SUB_DEPTH = ..
27endif
28include $(KBUILD_PATH)/subheader.kmk
29
30ifdef VBOX_WITH_TESTCASES
31 PROGRAMS += tstAPI
32 PROGRAMS.linux += tstVBoxAPILinux
33 # That testcase is actually not linux specific, it's generic XPCOM.
34 PROGRAMS.solaris += tstVBoxAPILinux
35 PROGRAMS.win += tstVBoxAPIWin
36ifdef VBOX_WITH_RESOURCE_USAGE_API
37 PROGRAMS += tstCollector
38endif
39else ifeq ($(USERNAME),dmik)
40 PROGRAMS += tstAPI
41 PROGRAMS.linux += tstVBoxAPILinux
42 # That testcase is actually not linux specific, it's generic XPCOM.
43 PROGRAMS.solaris += tstVBoxAPILinux
44 PROGRAMS.win += tstVBoxAPIWin
45endif # VBOX_WITH_TESTCASES
46
47INSTALLS += samples
48
49#
50# The samples
51#
52samples_INST = $(INST_SDK_SAMPLES)/API/
53samples_MODE = a+r,u+w
54ifeq ($(KBUILD_TARGET),win)
55 samples_SOURCES = tstVBoxAPIWin.cpp
56else
57 samples_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile
58 ifdef VBOX_WITH_TESTCASES
59 samples_SYMLINKS = tstVBoxAPILinux=>../../../tstVBoxAPILinux
60 endif
61endif
62
63#
64# tstAPI
65#
66tstAPI_TEMPLATE = VBOXMAINCLIENTEXE
67tstAPI_SOURCES = tstAPI.cpp
68ifeq ($(KBUILD_TARGET),win) ## @todo just add this to the template.
69tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
70else
71tstAPI_DEPS = $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
72endif
73ifdef VBOX_WITH_RESOURCE_USAGE_API
74tstAPI_DEFS += VBOX_WITH_RESOURCE_USAGE_API
75endif
76
77
78#
79# tstVBoxAPILinux
80#
81# We only build the testcase here to make sure it builds.
82# It comes with a custom makefile which should be tested as well!
83#
84tstVBoxAPILinux_TEMPLATE = VBOXR3
85tstVBoxAPILinux_SOURCES = tstVBoxAPILinux.cpp
86tstVBoxAPILinux_CXXFLAGS = -Wno-non-virtual-dtor -fshort-wchar
87tstVBoxAPILinux_LDFLAGS.solaris += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/../../..'
88ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
89 tstVBoxAPILinux_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
90endif
91tstVBoxAPILinux_INCS = \
92 $(VBOX_XPCOM_INCS) \
93 $(PATH_BIN)/sdk/include
94tstVBoxAPILinux_LIBPATH = $(LIBPATH_XPCOM)
95tstVBoxAPILinux_LIBS = $(LIB_XPCOM)
96tstVBoxAPILinux_DEPS = \
97 $(VBOX_PATH_SDK)/bindings/xpcom/include/VirtualBox_XPCOM.h
98
99#
100# tstVBoxAPIWin
101#
102tstVBoxAPIWin_TEMPLATE = VBOXMAINCLIENTEXE
103tstVBoxAPIWin_SOURCES = \
104 tstVBoxAPIWin.cpp \
105 $(PATH_BIN)/sdk/lib/VirtualBox_i.c
106tstVBoxAPIWin_DEPS = \
107 $(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h
108
109#
110# tstCollector
111#
112tstCollector_TEMPLATE = VBOXMAINCLIENTEXE
113tstCollector_SOURCES = \
114 tstCollector.cpp \
115 ../Performance.cpp
116tstCollector_INCS = ../include
117tstCollector_LDFLAGS.solaris += -lkstat
118tstCollector_LDFLAGS.win += wbemuuid.lib powrprof.lib
119
120
121# generate rules.
122include $(KBUILD_PATH)/subfooter.kmk
123
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette