blob: 29482b72687fbce1494a59a517ad564da1d7f036 (
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
|
include .defs.mk
#
# This "kernel" type should be removed (only need types)
#
TYPE := repserver kernel
DIRS := adapters storage state transfer repapi
BIN_TARGET := ndb_rep
BIN_TARGET_LIBS :=
BIN_TARGET_ARCHIVES += editline repstorage repadapters reprequestor reptransfer mgmapi NDB_API mgmsrvcommon
LDFLAGS_LOC = -lpthread
SOURCES = \
RepMain.cpp \
Requestor.cpp \
RequestorSubscriptions.cpp \
\
RepComponents.cpp \
RepCommandInterpreter.cpp \
RepApiService.cpp \
RepApiInterpreter.cpp \
SignalQueue.cpp \
ExtSender.cpp \
dbug_hack.cpp
include $(NDB_TOP)/Epilogue.mk
|