blob: 67dbc120e694fabdad1936cfad38d5f9e481f845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
include .defs.mk
ifeq ($(NDB_OS), OSE)
DIRS = basic flexBench flexAsynch
else
DIRS = lmc-bench bank
BIN_DIRS = \
flexAsynch \
flexBench \
flexHammer \
flexScan \
flexTT \
nodeRecovery \
restartgci \
create_tab \
create_all_tabs \
drop_all_tabs \
bulk_copy \
restarter2 restarter \
restarts testScan testNdbApi \
testScanInterpreter testIndex \
testInterpreter \
testOIBasic \
testBackup \
testBasic \
basicAsynch \
testNodeRestart \
testOperations testTransactions \
testSystemRestart \
testTimeout \
testMgm \
testRestartGci \
testDataBuffers \
testDict \
initronja \
benchronja \
acid \
interpreterInTup \
telco \
indexTest \
test_event \
indexTest2 \
testGrep
# tables \
ifeq ($(NDB_OS), SOLARIS)
ifeq ($(NDB_COMPILER), FORTE6)
DIRS += flexTimedAsynch
endif
endif
endif
include ${NDB_TOP}/Epilogue.mk
|