1#-*-makefile-*-   ; force emacs to enter makefile-mode
2
3# %CopyrightBegin%
4#
5# Copyright Ericsson AB 2001-2017. All Rights Reserved.
6#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11#     http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19# %CopyrightEnd%
20
21XML_APPLICATION_FILES = \
22        ref_man.xml
23
24XML_APP_REF3_FILES = \
25        snmp.xml
26
27XML_COMP_REF1_FILES = \
28        snmpc_cmd.xml
29
30XML_COMP_REF3_FILES = \
31        snmpc.xml
32
33XML_MISC_REF3_FILES = \
34        snmp_pdus.xml
35
36XML_AGENT_REF3_FILES = \
37	snmpa.xml \
38	snmpa_conf.xml \
39	snmpa_discovery_handler.xml \
40	snmpa_error_report.xml \
41	snmpa_error.xml \
42	snmpa_error_io.xml \
43	snmpa_error_logger.xml \
44	snmpa_local_db.xml \
45	snmpa_mib_data.xml \
46	snmpa_mib_storage.xml \
47	snmpa_mpd.xml \
48	snmpa_network_interface.xml \
49	snmpa_network_interface_filter.xml \
50	snmpa_notification_delivery_info_receiver.xml \
51	snmpa_notification_filter.xml \
52	snmpa_supervisor.xml \
53	snmp_community_mib.xml \
54	snmp_framework_mib.xml \
55	snmp_generic.xml \
56	snmp_index.xml \
57	snmp_notification_mib.xml \
58	snmp_standard_mib.xml \
59	snmp_target_mib.xml \
60	snmp_user_based_sm_mib.xml \
61	snmp_view_based_acm_mib.xml
62
63XML_MANAGER_REF3_FILES = \
64        snmpm.xml \
65	snmpm_conf.xml \
66        snmpm_mpd.xml \
67	snmpm_network_interface.xml \
68	snmpm_network_interface_filter.xml \
69	snmpm_user.xml
70
71XML_REF1_FILES = \
72        $(XML_COMP_REF1_FILES)
73
74XML_REF3_FILES = \
75        $(XML_APP_REF3_FILES) \
76        $(XML_COMP_REF3_FILES) \
77        $(XML_MISC_REF3_FILES) \
78        $(XML_AGENT_REF3_FILES) \
79        $(XML_MANAGER_REF3_FILES)
80
81XML_REF6_FILES = snmp_app.xml
82
83XML_PART_FILES =  \
84	part.xml
85
86XML_CHAPTER_FILES = \
87	snmp_intro.xml \
88	snmp_agent_funct_descr.xml \
89	snmp_manager_funct_descr.xml \
90	snmp_mib_compiler.xml \
91	snmp_config.xml \
92	snmp_agent_config_files.xml \
93	snmp_manager_config_files.xml \
94	snmp_impl_example_agent.xml \
95	snmp_impl_example_manager.xml \
96	snmp_instr_functions.xml \
97	snmp_def_instr_functions.xml \
98	snmp_agent_netif.xml \
99	snmp_manager_netif.xml \
100	snmp_audit_trail_log.xml \
101	snmp_advanced_agent.xml \
102	snmp_app_a.xml \
103	snmp_app_b.xml \
104	notes.xml
105
106BOOK_FILES = book.xml
107
108XML_FILES = $(BOOK_FILES)        \
109            $(XML_CHAPTER_FILES) \
110            $(XML_PART_FILES)    \
111            $(XML_REF1_FILES)    \
112            $(XML_REF3_FILES)    \
113            $(XML_REF6_FILES)    \
114            $(XML_APPLICATION_FILES)
115
116IMAGE_FILES = \
117	getnext1.gif \
118	getnext2.gif \
119	getnext3.gif \
120	getnext4.gif \
121	snmp_agent_netif_1.gif \
122	snmp_manager_netif_1.gif \
123	snmp-um-1-image-1.gif \
124	snmp-um-1-image-2.gif \
125	snmp-um-1-image-3.gif \
126	MIB_mechanism.gif
127
128MIB_REF7_FILES = \
129	$(MIBSDIR)/RFC1213-MIB.mib \
130	$(MIBSDIR)/STANDARD-MIB.mib \
131	$(MIBSDIR)/SNMPv2-TM.mib \
132	$(MIBSDIR)/SNMPv2-MIB.mib \
133	$(MIBSDIR)/SNMP-FRAMEWORK-MIB.mib \
134	$(MIBSDIR)/SNMP-MPD-MIB.mib \
135	$(MIBSDIR)/SNMP-TARGET-MIB.mib \
136	$(MIBSDIR)/SNMP-NOTIFICATION-MIB.mib \
137	$(MIBSDIR)/SNMP-COMMUNITY-MIB.mib \
138	$(MIBSDIR)/SNMP-USER-BASED-SM-MIB.mib \
139	$(MIBSDIR)/SNMP-VIEW-BASED-ACM-MIB.mib \
140	$(MIBSDIR)/SNMP-USM-AES-MIB.mib \
141	$(MIBSDIR)/INET-ADDRESS-MIB.mib \
142	$(MIBSDIR)/TRANSPORT-ADDRESS-MIB.mib \
143	$(MIBSDIR)/OTP-SNMPEA-MIB.mib
144