-
Notifications
You must be signed in to change notification settings - Fork 28
/
Makefile.am
157 lines (149 loc) · 5.59 KB
/
Makefile.am
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
SUBDIRS=\
netconf/src/ncx \
netconf/src/mgr \
netconf/src/agt \
netconf/src/netconfd \
netconf/src/subsys \
netconf/src/yangcli \
libtoaster/src \
netconf/modules \
example-modules/helloworld \
example-modules/ietf-interfaces \
example-modules/ietf-system \
example-modules/yangcli-to-rpc \
netconf/src/yangrpc \
netconf/src/yangrpc/example \
netconf/man \
netconf/src/yangdump
#example-modules/ietf-network-bridge
#netconf/src/yangdiff
if WITH_TECLA
SUBDIRS+=libtecla
endif
platform_netconf_include_HEADERS= \
$(top_srcdir)/netconf/src/platform/procdefs.h
ncx_netconf_include_HEADERS= \
$(top_srcdir)/netconf/src/ncx/ncxconst.h \
$(top_srcdir)/netconf/src/ncx/val_util.h \
$(top_srcdir)/netconf/src/ncx/getcb.h \
$(top_srcdir)/netconf/src/ncx/rpc_err.h \
$(top_srcdir)/netconf/src/ncx/yinyang.h \
$(top_srcdir)/netconf/src/ncx/ncx.h \
$(top_srcdir)/netconf/src/ncx/bobhash.h \
$(top_srcdir)/netconf/src/ncx/log.h \
$(top_srcdir)/netconf/src/ncx/grp.h \
$(top_srcdir)/netconf/src/ncx/tstamp.h \
$(top_srcdir)/netconf/src/ncx/xpath_yang.h \
$(top_srcdir)/netconf/src/ncx/status.h \
$(top_srcdir)/netconf/src/ncx/yang_obj.h \
$(top_srcdir)/netconf/src/ncx/ncx_str.h \
$(top_srcdir)/netconf/src/ncx/yang_ext.h \
$(top_srcdir)/netconf/src/ncx/conf.h \
$(top_srcdir)/netconf/src/ncx/b64.h \
$(top_srcdir)/netconf/src/ncx/ncxmod.h \
$(top_srcdir)/netconf/src/ncx/top.h \
$(top_srcdir)/netconf/src/ncx/obj.h \
$(top_srcdir)/netconf/src/ncx/json_wr.h \
$(top_srcdir)/netconf/src/ncx/xml_wr.h \
$(top_srcdir)/netconf/src/ncx/xml_rd.h \
$(top_srcdir)/netconf/src/ncx/def_reg.h \
$(top_srcdir)/netconf/src/ncx/ncx_num.h \
$(top_srcdir)/netconf/src/ncx/op.h \
$(top_srcdir)/netconf/src/ncx/xpath1.h \
$(top_srcdir)/netconf/src/ncx/ses.h \
$(top_srcdir)/netconf/src/ncx/yin.h \
$(top_srcdir)/netconf/src/ncx/runstack.h \
$(top_srcdir)/netconf/src/ncx/val.h \
$(top_srcdir)/netconf/src/ncx/val_set_cplxval_obj.h \
$(top_srcdir)/netconf/src/ncx/val_get_leafref_targval.h \
$(top_srcdir)/netconf/src/ncx/version.h \
$(top_srcdir)/netconf/src/ncx/ext.h \
$(top_srcdir)/netconf/src/ncx/yangconst.h \
$(top_srcdir)/netconf/src/ncx/yang.h \
$(top_srcdir)/netconf/src/ncx/send_buff.h \
$(top_srcdir)/netconf/src/ncx/plock.h \
$(top_srcdir)/netconf/src/ncx/ncx_list.h \
$(top_srcdir)/netconf/src/ncx/ncxtypes.h \
$(top_srcdir)/netconf/src/ncx/xmlns.h \
$(top_srcdir)/netconf/src/ncx/yang_typ.h \
$(top_srcdir)/netconf/src/ncx/tk.h \
$(top_srcdir)/netconf/src/ncx/cli.h \
$(top_srcdir)/netconf/src/ncx/plock_cb.h \
$(top_srcdir)/netconf/src/ncx/dlq.h \
$(top_srcdir)/netconf/src/ncx/ncx_feature.h \
$(top_srcdir)/netconf/src/ncx/var.h \
$(top_srcdir)/netconf/src/ncx/blob.h \
$(top_srcdir)/netconf/src/ncx/obj_help.h \
$(top_srcdir)/netconf/src/ncx/xml_msg.h \
$(top_srcdir)/netconf/src/ncx/cap.h \
$(top_srcdir)/netconf/src/ncx/yang_grp.h \
$(top_srcdir)/netconf/src/ncx/typ.h \
$(top_srcdir)/netconf/src/ncx/xpath.h \
$(top_srcdir)/netconf/src/ncx/ses_msg.h \
$(top_srcdir)/netconf/src/ncx/ncx_appinfo.h \
$(top_srcdir)/netconf/src/ncx/xml_util.h \
$(top_srcdir)/netconf/src/ncx/xpath_wr.h \
$(top_srcdir)/netconf/src/ncx/rpc.h \
$(top_srcdir)/netconf/src/ncx/xml_val.h \
$(top_srcdir)/netconf/src/ncx/cfg.h \
$(top_srcdir)/netconf/src/ncx/help.h \
$(top_srcdir)/netconf/src/ncx/yang_parse.h \
$(top_srcdir)/netconf/src/ncx/libncx.h \
$(top_srcdir)/netconf/src/ncx/val123.h \
$(top_srcdir)/netconf/src/ncx/val_parse.h \
$(top_srcdir)/netconf/src/ncx/uptime.h
agt_netconf_include_HEADERS= \
$(top_srcdir)/netconf/src/agt/agt_val_parse.h \
$(top_srcdir)/netconf/src/agt/agt_rpcerr.h \
$(top_srcdir)/netconf/src/agt/agt_connect.h \
$(top_srcdir)/netconf/src/agt/agt_rpc.h \
$(top_srcdir)/netconf/src/agt/agt_cb.h \
$(top_srcdir)/netconf/src/agt/agt_hello.h \
$(top_srcdir)/netconf/src/agt/agt_acm.h \
$(top_srcdir)/netconf/src/agt/agt_sys.h \
$(top_srcdir)/netconf/src/agt/agt_xml.h \
$(top_srcdir)/netconf/src/agt/agt_ncxserver.h \
$(top_srcdir)/netconf/src/agt/agt_if.h \
$(top_srcdir)/netconf/src/agt/agt_tree.h \
$(top_srcdir)/netconf/src/agt/agt_ncx.h \
$(top_srcdir)/netconf/src/agt/agt_state.h \
$(top_srcdir)/netconf/src/agt/agt_time_filter.h \
$(top_srcdir)/netconf/src/agt/agt_cap.h \
$(top_srcdir)/netconf/src/agt/agt_plock.h \
$(top_srcdir)/netconf/src/agt/agt_signal.h \
$(top_srcdir)/netconf/src/agt/agt_val.h \
$(top_srcdir)/netconf/src/agt/agt_xpath.h \
$(top_srcdir)/netconf/src/agt/agt_proc.h \
$(top_srcdir)/netconf/src/agt/agt_not.h \
$(top_srcdir)/netconf/src/agt/agt_timer.h \
$(top_srcdir)/netconf/src/agt/agt_util.h \
$(top_srcdir)/netconf/src/agt/agt_ses.h \
$(top_srcdir)/netconf/src/agt/agt.h \
$(top_srcdir)/netconf/src/agt/agt_top.h \
$(top_srcdir)/netconf/src/agt/agt_cli.h \
$(top_srcdir)/netconf/src/agt/agt_commit_complete.h \
$(top_srcdir)/netconf/src/agt/agt_commit_validate.h \
$(top_srcdir)/netconf/src/agt/agt_not_queue_notification_cb.h \
$(top_srcdir)/netconf/src/agt/agt_nmda.h \
$(top_srcdir)/netconf/src/agt/agt_cfg.h \
$(top_srcdir)/netconf/src/agt/agt_yang_library.h
mgr_netconf_include_HEADERS= \
$(top_srcdir)/netconf/src/mgr/mgr.h \
$(top_srcdir)/netconf/src/mgr/mgr_hello.h \
$(top_srcdir)/netconf/src/mgr/mgr_io.h \
$(top_srcdir)/netconf/src/mgr/mgr_not.h \
$(top_srcdir)/netconf/src/mgr/mgr_rpc.h \
$(top_srcdir)/netconf/src/mgr/mgr_ses.h \
$(top_srcdir)/netconf/src/mgr/mgr_val_parse.h \
$(top_srcdir)/netconf/src/mgr/mgr_xml.h \
$(top_srcdir)/netconf/src/mgr/mgr_cap.h \
$(top_srcdir)/netconf/src/mgr/mgr_signal.h \
$(top_srcdir)/netconf/src/mgr/mgr_load.h \
$(top_srcdir)/netconf/src/mgr/mgr_top.h
yangrpc_netconf_include_HEADERS= \
$(top_srcdir)/netconf/src/yangrpc/yangrpc.h
EXTRA_DIST= \
netconf/src/yangdiff \
example-modules/ietf-interfaces \
example-modules/ietf-system \
rpm