1 | #
|
---|
2 | # Sub-Makefile for the SUPLib testcase.
|
---|
3 | #
|
---|
4 |
|
---|
5 | #
|
---|
6 | # Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
7 | #
|
---|
8 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | # available from http://www.virtualbox.org. This file is free software;
|
---|
10 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | # General Public License as published by the Free Software Foundation,
|
---|
12 | # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | # distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | # be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | #
|
---|
16 | # If you received this file as part of a commercial VirtualBox
|
---|
17 | # distribution, then only the terms of your commercial VirtualBox
|
---|
18 | # license agreement apply instead of the previous paragraph.
|
---|
19 | #
|
---|
20 |
|
---|
21 | DEPTH = ../../../../..
|
---|
22 | SUB_DEPTH = ..
|
---|
23 | include $(PATH_KBUILD)/subheader.kmk
|
---|
24 |
|
---|
25 | PROGRAMS += \
|
---|
26 | SUPInstall \
|
---|
27 | SUPUninstall
|
---|
28 | ifdef VBOX_WITH_TESTCASES
|
---|
29 | PROGRAMS += \
|
---|
30 | tstPage \
|
---|
31 | tstContiguous \
|
---|
32 | tstInit \
|
---|
33 | tstInt \
|
---|
34 | tstLow \
|
---|
35 | tstPin \
|
---|
36 | tstGIP-2 \
|
---|
37 | tstGetPagingMode
|
---|
38 | endif # VBOX_WITH_TESTCASES
|
---|
39 |
|
---|
40 | SUPInstall_TEMPLATE = VBOXR3EXE
|
---|
41 | SUPInstall_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/SUPInstall.cpp
|
---|
42 | SUPInstall_LIBS = $(LIB_RUNTIME)
|
---|
43 |
|
---|
44 | SUPUninstall_TEMPLATE = VBOXR3EXE
|
---|
45 | SUPUninstall_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/SUPUninstall.cpp
|
---|
46 | SUPUninstall_LIBS = $(LIB_RUNTIME)
|
---|
47 |
|
---|
48 | tstInt_TEMPLATE = VBOXR3EXE
|
---|
49 | tstInt_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstInt.cpp
|
---|
50 | tstInt_LIBS = $(LIB_RUNTIME)
|
---|
51 |
|
---|
52 | tstContiguous_TEMPLATE= VBOXR3TSTEXE
|
---|
53 | tstContiguous_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstContiguous.cpp
|
---|
54 |
|
---|
55 | tstInit_TEMPLATE = VBOXR3TSTEXE
|
---|
56 | tstInit_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstInit.cpp
|
---|
57 |
|
---|
58 | tstLow_TEMPLATE = VBOXR3TSTEXE
|
---|
59 | tstLow_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstLow.cpp
|
---|
60 |
|
---|
61 | tstPin_TEMPLATE = VBOXR3TSTEXE
|
---|
62 | tstPin_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstPin.cpp
|
---|
63 |
|
---|
64 | tstPage_TEMPLATE = VBOXR3TSTEXE
|
---|
65 | tstPage_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstPage.cpp
|
---|
66 |
|
---|
67 | tstGIP-2_TEMPLATE = VBOXR3TSTEXE
|
---|
68 | tstGIP-2_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstGIP-2.cpp
|
---|
69 |
|
---|
70 | tstGetPagingMode_TEMPLATE = VBOXR3TSTEXE
|
---|
71 | tstGetPagingMode_SOURCES = $(VBOX_PATH_SUPPORT)/testcase/tstGetPagingMode.cpp
|
---|
72 |
|
---|
73 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
74 |
|
---|