VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/Makefile.kmk@ 4475

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

Some adjustments to RTEnv and RTProcCreate. Should work on darwin now.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1# $Id: Makefile.kmk 4475 2007-09-01 01:21:19Z vboxsync $
2## @file
3# Makefile for the IPRT testcases.
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14# distribution. VirtualBox OSE is distributed in the hope that it will
15# be useful, but WITHOUT ANY WARRANTY of any kind.
16
17DEPTH = ../../../..
18include $(PATH_KBUILD)/header.kmk
19
20ifdef VBOX_WITH_TESTCASES
21PROGRAMS = \
22 tstAvl \
23 tstBitOperations \
24 tstCritSect \
25 tstDeadlock \
26 tstDir \
27 tstDir-2 \
28 tstEnv \
29 tstErrUnique \
30 tstFile \
31 tstFileLock \
32 tstHeapSimple \
33 tstInlineAsm \
34 tstLdr \
35 tstLdr-2 \
36 tstLdr-3 \
37 tstLdr-4 \
38 tstLdrLoad \
39 tstLog \
40 tstMove \
41 tstPath \
42 tstPrfRT \
43 tstRTFsQueries \
44 tstStrFormat \
45 tstStrToNum \
46 tstTime \
47 tstTime-2 \
48 tstTime-3 \
49 tstTimer \
50 tstTimeSpec \
51 tstTSC \
52 tstUtf8 \
53 tstUuid
54PROGRAMS.win = \
55 tstRTProcWait \
56 tstCritSectW32 \
57 ntGetTimerResolution
58PROGRAMS.linux = \
59 tstRTProcWait \
60 tstBitOperationsPIC3 \
61 tstInlineAsmPIC \
62 tstInlineAsmPIC3
63PROGRAMS.l4 = \
64 tstIoCtl
65SYSMODS = \
66 tstLdrObj \
67 tstLdrObjR0
68ifeq ($(filter-out lx pe,$(VBOX_LDR_FMT)), )
69LIBRARIES += \
70 tstLdr-4Imp
71endif
72
73# tstSems
74endif # VBOX_WITH_TESTCASES
75
76
77TEMPLATE = VBOXR3TSTEXE
78
79
80tstTimer_SOURCES = tstTimer.cpp
81
82tstTSC_SOURCES = tstTSC.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)
151 tstLdrObj_LDFLAGS = -e 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 = -e 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
231tstEnv_SOURCES = tstEnv.cpp
232
233tstErrUnique_SOURCES = tstErrUnique.cpp
234tstErrUnique_INCS = $(PATH_TARGET)/..
235## tstErrUnique.cpp depends on a generated header.
236tstErrUnique.cpp_DEPS = $(PATH_TARGET)/../errmsgdata.h
237
238tstHeapSimple_SOURCES = tstHeapSimple.cpp
239
240include $(PATH_KBUILD)/footer.kmk
241
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