-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathMakefile.am
More file actions
137 lines (127 loc) · 4.01 KB
/
Makefile.am
File metadata and controls
137 lines (127 loc) · 4.01 KB
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
##########################################################################
# If not stated otherwise in this file or this component's Licenses.txt
# file the following copyright and licenses apply:
#
# Copyright 2015 RDK Management
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##########################################################################
AM_CFLAGS =
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I$(top_srcdir)/source/include \
-I$(top_srcdir)/source/util/utils \
-I$(top_srcdir)/source/services/lib
AM_LDFLAGS = $(top_builddir)/source/util/utils/libutopiautil.la \
$(top_builddir)/source/services/lib/libsrvmgr.la \
$(top_builddir)/source/sysevent/lib/libsysevent.la \
$(top_builddir)/source/syscfg/lib/libsyscfg.la \
$(top_builddir)/source/ulog/libulog.la
LDFLAGS += -lsecure_wrapper
bin_PROGRAMS = \
02_bridge \
02_forwarding \
02_ipv4 \
02_ipv6 \
02_lanHandler \
02_multinet \
02_parodus \
02_wan \
02_systimesetevent \
03_connectcheck \
09_xdns \
10_firewall \
10_mcastproxy \
10_mldproxy \
10_ntpd \
15_ccsphs \
15_ddnsclient \
15_dhcp_server \
15_dhcpv6_client \
15_dhcpv6_server \
15_dynamic_dns \
15_igd \
15_misc \
15_ssh_server \
20_routing \
25_crond \
33_cosa
if FEATURE_RDKB_EXTENDER
bin_PROGRAMS += 02_devicemode
endif
if ENABLE_POTD_SERVICE
bin_PROGRAMS += 26_potd
endif
if ENABLE_HOTSPOT_SERVICE
bin_PROGRAMS += 15_hotspot
endif
01_system_SOURCES = 01_system.c
02_bridge_SOURCES = 02_bridge.c
02_forwarding_SOURCES = 02_forwarding.c
02_ipv4_SOURCES = 02_ipv4.c
02_ipv6_SOURCES = 02_ipv6.c
02_lanHandler_SOURCES = 02_lanHandler.c
02_lan_SOURCES = 02_lan.c
02_managed_SOURCES = 02_managed.c
02_multinet_SOURCES = 02_multinet.c
02_parodus_SOURCES = 02_parodus.c
02_wan_SOURCES = 02_wan.c
02_wlan_SOURCES = 02_wlan.c
03_wan_ipv6_SOURCES = 03_wan_ipv6.c
02_systimesetevent_SOURCES = 02_systimesetevent.c
03_connectcheck_SOURCES = 03_connectcheck.c
04_byoi_SOURCES = 04_byoi.c
04_byoi_gap_SOURCES = 04_byoi_gap.c
09_xdns_SOURCES = 09_xdns.c
10_bootstrap_dns_SOURCES = 10_bootstrap_dns.c
10_firewall_SOURCES = 10_firewall.c
10_fpm_SOURCES = 10_fpm.c
10_mcastproxy_SOURCES = 10_mcastproxy.c
10_mcastsnooper_SOURCES = 10_mcastsnooper.c
10_mldproxy_SOURCES = 10_mldproxy.c
10_ntpclient_SOURCES = 10_ntpclient.c
10_ntpd_SOURCES = 10_ntpd.c
10_sysevent_proxy_SOURCES = 10_sysevent_proxy.c
10_time_sync_peer_SOURCES = 10_time_sync_peer.c
15_ccsphs_SOURCES = 15_ccsphs.c
15_ddnsclient_SOURCES = 15_ddnsclient.c
15_dhcp_server_SOURCES = 15_dhcp_server.c
15_dhcpv6_client_SOURCES = 15_dhcpv6_client.c
15_dhcpv6_server_SOURCES = 15_dhcpv6_server.c
15_dnsforwarder_SOURCES = 15_dnsforwarder.c
15_dynamic_dns_SOURCES = 15_dynamic_dns.c
15_ftp_server_SOURCES = 15_ftp_server.c
15_http_server_SOURCES = 15_http_server.c
15_igd_SOURCES = 15_igd.c
15_misc_SOURCES = 15_misc.c
15_qos_SOURCES = 15_qos.c
15_ssh_server_SOURCES = 15_ssh_server.c
15_switchpmon_SOURCES = 15_switchpmon.c
15_xhs_SOURCES = 15_xhs.c
20_ciscoconnect_SOURCES = 20_ciscoconnect.c
20_factorydefault_SOURCES = 20_factorydefault.c
20_gwreset_SOURCES = 20_gwreset.c
20_routing_SOURCES = 20_routing.c
25_crond_SOURCES = 25_crond.c
33_cosa_SOURCES = 33_cosa.c
if FEATURE_RDKB_EXTENDER
02_devicemode_SOURCES = 02_devicemode.c
endif
if ENABLE_POTD_SERVICE
26_potd_SOURCES = 26_potd.c
endif
if ENABLE_HOTSPOT_SERVICE
15_hotspot_SOURCES = 15_hotspot.c
endif
if ONESTACK_PRODUCT_REQ
LDFLAGS += -lrdkb_feature_mode_gate -ldevicemode
endif