VirtualBox

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

Last change on this file since 10466 was 10056, checked in by vboxsync, 17 years ago

VBOX_KBUILD_HACKING.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.8 KB
Line 
1# $Id: Makefile.kmk 10056 2008-07-01 01:45:03Z 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
36else ifeq ($(USERNAME),dmik)
37 PROGRAMS += tstAPI
38 PROGRAMS.linux += tstVBoxAPILinux
39 # That testcase is actually not linux specific, it's generic XPCOM.
40 PROGRAMS.solaris += tstVBoxAPILinux
41 PROGRAMS.win += tstVBoxAPIWin
42endif # VBOX_WITH_TESTCASES
43
44INSTALLS += samples
45
46#
47# The samples
48#
49samples_INST = $(INST_SDK_SAMPLES)/API/
50samples_MODE = a+r,u+w
51ifeq ($(KBUILD_TARGET),win)
52 samples_SOURCES = tstVBoxAPIWin.cpp
53else
54 samples_SOURCES = tstVBoxAPILinux.cpp makefile.tstVBoxAPILinux=>Makefile
55 ifdef VBOX_WITH_TESTCASES
56 samples_SYMLINKS = tstVBoxAPILinux=>../../../tstVBoxAPILinux
57 endif
58endif
59
60#
61# tstAPI
62#
63tstAPI_TEMPLATE = VBOXMAINCLIENTEXE
64tstAPI_SOURCES = tstAPI.cpp
65ifeq ($(KBUILD_TARGET),win) ## @todo just add this to the template.
66tstAPI_DEPS = $(VBOX_PATH_SDK)/include/VirtualBox.h
67else
68tstAPI_DEPS = $(VBOX_PATH_SDK)/include/VirtualBox_XPCOM.h
69endif
70
71
72#
73# tstVBoxAPILinux
74#
75# We only build the testcase here to make sure it builds.
76# It comes with a custom makefile which should be tested as well!
77#
78tstVBoxAPILinux_TEMPLATE = VBOXR3
79tstVBoxAPILinux_SOURCES = tstVBoxAPILinux.cpp
80tstVBoxAPILinux_CXXFLAGS = -Wno-non-virtual-dtor -fshort-wchar
81tstVBoxAPILinux_LDFLAGS.solaris += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/../../..'
82tstVBoxAPILinux_INCS = \
83 $(VBOX_XPCOM_INCS) \
84 $(PATH_BIN)/sdk/include
85tstVBoxAPILinux_LIBPATH = $(LIBPATH_XPCOM)
86tstVBoxAPILinux_LIBS = $(LIB_XPCOM)
87tstVBoxAPILinux_DEPS = \
88 $(VBOX_PATH_SDK)/include/VirtualBox_XPCOM.h
89
90#
91# tstVBoxAPIWin
92#
93tstVBoxAPIWin_TEMPLATE = VBOXMAINCLIENTEXE
94tstVBoxAPIWin_SOURCES = \
95 tstVBoxAPIWin.cpp \
96 $(PATH_BIN)/sdk/lib/VirtualBox_i.c
97tstVBoxAPIWin_DEPS = \
98 $(VBOX_PATH_SDK)/include/VirtualBox.h
99
100# generate rules.
101include $(KBUILD_PATH)/subfooter.kmk
102
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