VirtualBox

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

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

Ported IPRT to ring-0 OS/2.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 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 tstLdr-4 \
32 tstLdrLoad \
33 tstAvl \
34 tstTimer \
35 tstTime \
36 tstTime-2 \
37 tstTime-3 \
38 tstTimeSpec \
39 tstStrFormat \
40 tstPath \
41 tstLog \
42 tstFile \
43 tstFileLock \
44 tstBitOperations \
45 tstInlineAsm \
46 tstStrToNum \
47 tstDir \
48 tstDir-2 \
49 tstRTFsQueries \
50 tstMove \
51 tstUtf8 \
52 tstDeadlock \
53 tstUuid \
54 tstErrUnique \
55 tstHeapSimple
56PROGRAMS.win = \
57 tstRTProcWait \
58 tstCritSectW32 \
59 ntGetTimerResolution
60PROGRAMS.linux = \
61 tstRTProcWait \
62 tstBitOperationsPIC3 \
63 tstInlineAsmPIC \
64 tstInlineAsmPIC3
65PROGRAMS.l4 = \
66 tstIoCtl
67SYSMODS = \
68 tstLdrObj \
69 tstLdrObjR0
70ifeq ($(filter-out lx pe,$(VBOX_LDR_FMT)), )
71LIBRARIES += \
72 tstLdr-4Imp
73endif
74
75# tstSems
76endif # VBOX_WITH_TESTCASES
77
78
79TEMPLATE = VBOXR3TSTEXE
80
81
82tstTimer_SOURCES = tstTimer.cpp
83
84tstTime_SOURCES = tstTime.cpp
85
86tstTime-2_SOURCES = tstTime-2.cpp
87
88tstTime-3_SOURCES = tstTime-3.cpp
89
90tstTimeSpec_SOURCES = tstTimeSpec.cpp
91
92tstStrFormat_SOURCES = tstStrFormat.cpp
93
94tstLog_SOURCES = tstLog.cpp
95
96tstPath_SOURCES = tstPath.cpp
97
98tstSems_SOURCES = tstSems.cpp
99
100tstAvl_SOURCES = tstAvl.cpp
101
102tstFile_SOURCES = tstFile.cpp
103
104tstFileLock_SOURCES = tstFileLock.cpp
105
106tstBitOperations_SOURCES = tstBitOperations.cpp
107
108tstBitOperationsPIC3_SOURCES = tstBitOperations.cpp
109tstBitOperationsPIC3_CXXFLAGS = -fPIC -fomit-frame-pointer -O3
110tstBitOperationsPIC3_DEFS = PIC
111
112tstInlineAsm_SOURCES = tstInlineAsm.cpp
113
114tstInlineAsmPIC_SOURCES = tstInlineAsm.cpp
115tstInlineAsmPIC_CXXFLAGS = -fPIC
116tstInlineAsmPIC_DEFS = PIC
117
118tstInlineAsmPIC3_SOURCES = tstInlineAsm.cpp
119tstInlineAsmPIC3_CXXFLAGS = -fPIC -fomit-frame-pointer -O3
120tstInlineAsmPIC3_DEFS = PIC
121
122tstCritSect_SOURCES = tstCritSect.cpp
123
124tstCritSectW32_SOURCES = tstCritSect.cpp
125tstCritSectW32_DEFS = TRY_WIN32_CRIT
126
127tstLdr_SOURCES = tstLdr.cpp
128
129tstLdr-2_SOURCES = tstLdr-2.cpp
130tstLdr-2_DEFS = IN_DIS_R3
131tstLdr-2_LIBS = \
132 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB)
133
134tstLdrObj_TEMPLATE = VBOXGC
135tstLdrObj_INST = $(INST_TESTCASE)
136tstLdrObj_SYSSUFF = .gc
137tstLdrObj_SOURCES = tstLdrObj.cpp
138tstLdrObj_DEFS = IN_DIS_GC IN_RT_GC DIS_CORE_ONLY
139ifeq ($(VBOX_LDR_FMT32),elf)
140tstLdrObj_DEFS += VBOX_SOME_IMPORT_FUNCTION
141endif
142tstLdrObj_LIBS = \
143 $(PATH_LIB)/DisasmGC$(VBOX_SUFF_LIB) \
144 $(PATH_LIB)/RuntimeGC$(VBOX_SUFF_LIB)
145ifeq ($(VBOX_LDR_FMT32),pe)
146tstLdrObj_LDFLAGS = -Entry:Entrypoint
147tstLdrObj_LIBS += \
148 $(PATH_LIB)/VMMGCBuiltin$(VBOX_SUFF_LIB)
149endif # PE
150ifeq ($(VBOX_LDR_FMT32),elf)
151tstLdrObj_LDFLAGS = -entry=Entrypoint
152tstLdrObj_LIBS += \
153 $(PATH_LIB)/VMMGCBuiltin$(VBOX_SUFF_LIB)
154endif
155ifeq ($(VBOX_LDR_FMT32),lx)
156tstLdrObj_LIBS += \
157 $(PATH_LIB)/VMMGCBuiltin$(VBOX_SUFF_LIB)
158endif
159
160
161tstLdr-3_SOURCES = tstLdr-3.cpp
162tstLdr-3_DEFS = IN_DIS_R3
163tstLdr-3_LIBS = \
164 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB)
165
166tstLdr-4Imp_TEMPLATE = VBOXR0
167ifeq ($(VBOX_LDR_FMT),lx)
168 tstLdr-4Imp_SOURCES = tstLdr-4Imp-os2.def
169else ifeq ($(VBOX_LDR_FMT),pe)
170 tstLdr-4Imp_SOURCES.win = tstLdr-4Imp-win.def
171endif
172
173tstLdrObjR0_TEMPLATE = VBOXR0
174tstLdrObjR0_INST = $(INST_TESTCASE)
175tstLdrObjR0_SYSSUFF = .r0
176tstLdrObjR0_SOURCES = tstLdrObjR0.cpp tstLdrDisasmTest.cpp
177tstLdrObjR0_DEFS = IN_DIS_R0 IN_RT_R0 DIS_CORE_ONLY
178ifeq ($(VBOX_LDR_FMT32),elf)
179 tstLdrObjR0_DEFS += VBOX_SOME_IMPORT_FUNCTION
180endif
181tstLdrObjR0_LIBS = \
182 $(PATH_LIB)/DisasmR0$(VBOX_SUFF_LIB) \
183 $(PATH_LIB)/RuntimeR0$(VBOX_SUFF_LIB)
184ifeq ($(VBOX_LDR_FMT),pe)
185 tstLdrObjR0_LDFLAGS = -Entry:Entrypoint
186 tstLdrObjR0_LIBS += \
187 $(PATH_LIB)/SUPR0$(VBOX_SUFF_LIB) \
188 $(TARGET_tstLdr-4Imp)
189endif
190ifeq ($(VBOX_LDR_FMT),elf)
191 tstLdrObjR0_LDFLAGS = -entry=Entrypoint
192endif
193ifeq ($(VBOX_LDR_FMT),lx)
194 tstLdrObjR0_LIBS += \
195 $(PATH_LIB)/SUPR0$(VBOX_SUFF_LIB) \
196 $(TARGET_tstLdr-4Imp)
197endif
198
199tstLdr-4_SOURCES = tstLdr-4.cpp tstLdrDisasmTest.cpp
200tstLdr-4_DEFS = IN_DIS_R3
201tstLdr-4_LIBS = \
202 $(PATH_LIB)/DisasmR3$(VBOX_SUFF_LIB)
203
204tstLdrLoad_SOURCES = tstLdrLoad.cpp
205
206tstPrfRT_SOURCES = tstPrfRT.cpp
207
208tstRTProcWait_SOURCES = tstRTProcWait.cpp
209
210tstStrToNum_SOURCES = tstStrToNum.cpp
211
212tstUtf8_SOURCES = tstUtf8.cpp
213
214tstDir_SOURCES = tstDir.cpp
215
216tstDir-2_SOURCES = tstDir-2.cpp
217
218tstRTFsQueries_SOURCES = tstRTFsQueries.cpp
219
220tstMove_SOURCES = tstMove.cpp
221
222ntGetTimerResolution_SOURCES = ntGetTimerResolution.cpp
223ntGetTimerResolution_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
224
225tstIoCtl_SOURCES = tstIoCtl.cpp
226
227tstDeadlock_SOURCES = tstDeadlock.cpp
228
229tstUuid_SOURCES = tstUuid.cpp
230
231tstErrUnique_SOURCES = tstErrUnique.cpp
232tstErrUnique_INCS = $(PATH_TARGET)/..
233## tstErrUnique.cpp depends on a generated header.
234tstErrUnique.cpp_DEPS = $(PATH_TARGET)/../errmsgdata.h
235
236tstHeapSimple_SOURCES = tstHeapSimple.cpp
237
238include $(PATH_KBUILD)/footer.kmk
239
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