blob: 33ab41b434a6d253852ffd35cf08b1296d1af7f2 (
plain) (
blame)
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
|
#-*-makefile-*- ; force emacs to enter makefile-mode
# %CopyrightBegin%
#
# Copyright Ericsson AB 2004-2009. All Rights Reserved.
#
# The contents of this file are subject to the Erlang Public License,
# Version 1.1, (the "License"); you may not use this file except in
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at http://www.erlang.org/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# %CopyrightEnd%
BEHAVIOUR_MODULES = \
snmpa_authentication_service \
snmpa_discovery_handler \
snmpa_error_report \
snmpa_network_interface \
snmpa_network_interface_filter \
snmpa_notification_delivery_info_receiver \
snmpa_notification_filter \
snmpa_set_mechanism
MODULES = \
$(BEHAVIOUR_MODULES) \
snmpa \
snmpa_acm \
snmpa_agent \
snmpa_agent_sup \
snmpa_app \
snmpa_conf \
snmpa_discovery_handler_default \
snmpa_error \
snmpa_error_io \
snmpa_error_logger \
snmpa_general_db \
snmpa_local_db \
snmpa_mib \
snmpa_mib_data \
snmpa_mib_lib \
snmpa_misc_sup \
snmpa_mpd \
snmpa_net_if \
snmpa_net_if_filter \
snmpa_set \
snmpa_set_lib \
snmpa_supervisor \
snmpa_svbl \
snmpa_symbolic_store \
snmpa_target_cache \
snmpa_trap \
snmpa_usm \
snmpa_vacm \
snmp_community_mib \
snmp_framework_mib \
snmp_generic \
snmp_generic_mnesia \
snmp_index \
snmp_notification_mib \
snmp_shadow_table \
snmp_standard_mib \
snmp_target_mib \
snmp_user_based_sm_mib \
snmp_view_based_acm_mib
INTERNAL_HRL_FILES = \
snmpa_vacm \
snmpa_atl \
snmpa_internal
EXT_HRL_FILES =
|