VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/Makefile@ 282

Last change on this file since 282 was 282, checked in by vboxsync, 18 years ago

more simple heap stuff.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1#
2# Makefile for the IPRT testcases.
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
21DEPTH = ../../../..
22include $(PATH_KBUILD)/header.kmk
23
24ifdef VBOX_WITH_TESTCASES
25PROGRAMS = \
26 tstCritSect \
27 tstPrfRT \
28 tstLdr \
29 tstLdr-2 \
30 tstLdr-3 \
31 tstLdrLoad \
32 tstAvl \
33 tstTimer \
34 tstTime \
35 tstTime-2 \
36 tstTime-3 \
37 tstTimeSpec \
38 tstStrFormat \
39 tstPath \
40 tstLog \
41 tstFile \
42 tstFileLock \
43 tstBitOperations \
44 tstInlineAsm \
45 tstStrToNum \
46 tstDir \
47 tstDir-2 \
48 tstRTFsQueries \
49 tstMove \
50 tstUtf8 \
51 tstDeadlock \
52 tstUuid \
53 tstErrUnique \
54 tstHeapSimple
55PROGRAMS.win = \
56 tstRTProcWait \
57 tstCritSectW32 \
58 ntGetTimerResolution
59PROGRAMS.linux = \
60 tstRTProcWait \
61 tstBitOperationsPIC3 \
62 tstInlineAsmPIC \
63 tstInlineAsmPIC3
64PROGRAMS.l4 = \
65 tstIoCtl
66ifneq ($(BUILD_TARGET),darwin) #until we've figured out how to link R0/GC modules on Mac OS X.
67SYSMODS = tstLdrObj
68endif
69# tstSems
70endif # VBOX_WITH_TESTCASES
71
72
73TEMPLATE = VBOXR3TSTEXE
74
75
76tstTimer_SOURCES = tstTimer.cpp
77
78tstTime_SOURCES = tstTime.cpp
79
80tstTime-2_SOURCES = tstTime-2.cpp
81
82tstTime-3_SOURCES = tstTime-3.cpp
83
84tstTimeSpec_SOURCES = tstTimeSpec.cpp
85
86tstStrFormat_SOURCES = tstStrFormat.cpp
87
88tstLog_SOURCES = tstLog.cpp
89
90tstPath_SOURCES = tstPath.cpp
91
92tstSems_SOURCES = tstSems.cpp
93
94tstAvl_SOURCES = tstAvl.cpp
95
96tstFile_SOURCES = tstFile.cpp
97
98tstFileLock_SOURCES = tstFileLock.cpp
99
100tstBitOperations_SOURCES = tstBitOperations.cpp
101
102tstBitOperationsPIC3_SOURCES = tstBitOperations.cpp
103tstBitOperationsPIC3_CXXFLAGS = -fPIC -fomit-frame-pointer -O3
104tstBitOperationsPIC3_DEFS = PIC
105
106tstInlineAsm_SOURCES = tstInlineAsm.cpp
107
108tstInlineAsmPIC_SOURCES = tstInlineAsm.cpp
109tstInlineAsmPIC_CXXFLAGS = -fPIC
110tstInlineAsmPIC_DEFS = PIC
111
112tstInlineAsmPIC3_SOURCES = tstInlineAsm.cpp
113tstInlineAsmPIC3_CXXFLAGS = -fPIC -fomit-frame-pointer -O3
114tstInlineAsmPIC3_DEFS = PIC
115
116tstCritSect_SOURCES = tstCritSect.cpp
117
118tstCritSectW32_SOURCES = tstCritSect.cpp
119tstCritSectW32_DEFS = TRY_WIN32_CRIT
120
121tstLdr_SOURCES = tstLdr.cpp
122
123tstLdr-2_SOURCES = tstLdr-2.cpp
124tstLdr-2_DEFS = IN_DIS_R3
125tstLdr-2_LIBS = \
126 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB)
127
128tstLdrObj_TEMPLATE = VBOXGC
129tstLdrObj_INST = $(INST_TESTCASE)
130tstLdrObj_SYSSUFF = .gc
131tstLdrObj_SOURCES = tstLdrObj.cpp
132tstLdrObj_DEFS = IN_DIS_GC IN_RT_GC
133ifeq ($(VBOX_LDR_FMT32),elf)
134tstLdrObj_DEFS += VBOX_SOME_IMPORT_FUNCTION
135endif
136tstLdrObj_LIBS = \
137 $(PATH_LIB)/DisasmGC$(VBOX_SUFF_LIB) \
138 $(PATH_LIB)/RuntimeGC$(VBOX_SUFF_LIB) \
139 $(PATH_LIB)/VMMGCBuiltin$(VBOX_SUFF_LIB)
140ifeq ($(VBOX_LDR_FMT32),pe)
141tstLdrObj_LDFLAGS = -Entry:Entrypoint
142endif # PE
143ifeq ($(VBOX_LDR_FMT32),elf)
144tstLdrObj_LDFLAGS = -entry=Entrypoint
145endif
146
147tstLdr-3_SOURCES = tstLdr-3.cpp
148tstLdr-3_DEFS = IN_DIS_R3
149tstLdr-3_LIBS = \
150 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB)
151
152tstLdrLoad_SOURCES = tstLdrLoad.cpp
153
154tstPrfRT_SOURCES = tstPrfRT.cpp
155
156tstRTProcWait_SOURCES = tstRTProcWait.cpp
157
158tstStrToNum_SOURCES = tstStrToNum.cpp
159
160tstUtf8_SOURCES = tstUtf8.cpp
161
162tstDir_SOURCES = tstDir.cpp
163
164tstDir-2_SOURCES = tstDir-2.cpp
165
166tstRTFsQueries_SOURCES = tstRTFsQueries.cpp
167
168tstMove_SOURCES = tstMove.cpp
169
170ntGetTimerResolution_SOURCES = ntGetTimerResolution.cpp
171ntGetTimerResolution_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
172
173tstIoCtl_SOURCES = tstIoCtl.cpp
174
175tstDeadlock_SOURCES = tstDeadlock.cpp
176
177tstUuid_SOURCES = tstUuid.cpp
178
179tstErrUnique_SOURCES = tstErrUnique.cpp
180tstErrUnique_INCS = $(PATH_TARGET)/..
181## tstErrUnique.cpp depends on a generated header.
182tstErrUnique.cpp_DEPS = $(PATH_TARGET)/../errmsgdata.h
183
184tstHeapSimple_SOURCES = tstHeapSimple.cpp
185
186include $(PATH_KBUILD)/footer.kmk
187
Note: See TracBrowser for help on using the repository browser.

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