File tree 7 files changed +847
-1
lines changed
7 files changed +847
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ gearsyncd/gearsyncd
56
56
mclagsyncd /mclagsyncd
57
57
natsyncd /natsyncd
58
58
neighsyncd /neighsyncd
59
+ fdbsyncd /fdbsyncd
59
60
orchagent /orchagent
60
61
orchagent /orchagent_restart_check
61
62
orchagent /routeresync
Original file line number Diff line number Diff line change 1
- SUBDIRS = fpmsyncd neighsyncd portsyncd mclagsyncd natsyncd orchagent swssconfig cfgmgr tests gearsyncd
1
+ SUBDIRS = fpmsyncd neighsyncd fdbsyncd portsyncd mclagsyncd natsyncd orchagent swssconfig cfgmgr tests gearsyncd
2
2
3
3
if HAVE_LIBTEAM
4
4
SUBDIRS += teamsyncd tlm_teamd
Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ AC_CONFIG_FILES([
92
92
fpmsyncd/Makefile
93
93
neighsyncd/Makefile
94
94
gearsyncd/Makefile
95
+ fdbsyncd/Makefile
95
96
natsyncd/Makefile
96
97
portsyncd/Makefile
97
98
teamsyncd/Makefile
Original file line number Diff line number Diff line change
1
+ INCLUDES = -I $(top_srcdir ) -I $(top_srcdir ) /warmrestart -I ../nlapi/include -I ../cfgmgr
2
+ NLAPI_LIBS = ../nlapi/libnlapi.a
3
+
4
+ bin_PROGRAMS = fdbsyncd
5
+
6
+ if DEBUG
7
+ DBGFLAGS = -ggdb -DDEBUG
8
+ else
9
+ DBGFLAGS = -g
10
+ endif
11
+
12
+ fdbsyncd_SOURCES = fdbsyncd.cpp fdbsync.cpp $(top_srcdir ) /warmrestart/warmRestartAssist.cpp
13
+
14
+ fdbsyncd_CFLAGS = $(DBGFLAGS ) $(AM_CFLAGS ) $(CFLAGS_COMMON ) $(COV_CFLAGS )
15
+ fdbsyncd_CPPFLAGS = $(DBGFLAGS ) $(AM_CFLAGS ) $(CFLAGS_COMMON ) $(COV_CFLAGS )
16
+ fdbsyncd_LDADD = -lnl-3 -lnl-route-3 -lswsscommon $(NLAPI_LIBS ) $(COV_LDFLAGS )
17
+
You can’t perform that action at this time.
0 commit comments