blob: aeba71482de2e6da7beac6009fe1ae97e167d46b (
plain)
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
|
noinst_LTLIBRARIES = libcommonslpd.la libcommonlibslp.la
EXTRA_DIST =
if ENABLE_SLPv1
slp_v1message_SRCS = slp_v1message.c slp_utf8.c
endif
if ENABLE_SLPv2_SECURITY
slp_security_SRCS = slp_auth.c slp_crypto.c slp_spi.c
endif
libcommonlibslp_la_SOURCES = \
slp_compare.c \
slp_buffer.c \
slp_message.c \
slp_property.c \
slp_linkedlist.c \
slp_xid.c \
slp_network.c \
slp_database.c \
slp_xmalloc.c \
slp_xcast.c \
slp_iface.c \
slp_parse.c \
slp_pid.c \
slp_dhcp.c \
$(slp_v1message_SRCS) \
$(slp_security_SRCS)
libcommonslpd_la_SOURCES = \
slp_compare.c \
slp_buffer.c \
slp_message.c \
slp_property.c \
slp_linkedlist.c \
slp_xid.c \
slp_database.c \
slp_xmalloc.c \
slp_parse.c \
slp_iface.c \
slp_net.c \
slp_pid.c \
slp_attr_y.y \
slp_attr_l.l \
slp_filter_y.y \
slp_filter_l.l \
slp_predicate.c \
slp_dhcp.c \
$(slp_v1message_SRCS) \
$(slp_security_SRCS)
noinst_HEADERS = \
slp_buffer.h \
slp_network.h \
slp_xid.h \
slp_compare.h \
slp_linkedlist.h \
slp_database.h \
slp_message.h \
slp_v1message.h \
slp_property.h \
slp_crypto.h \
slp_auth.h \
slp_spi.h \
slp_xmalloc.h \
slp_utf8.h \
slp_xcast.h \
slp_iface.h \
slp_parse.h \
slp_net.h \
slp_pid.h \
slp_attr.h \
slp_attr_y.h \
slp_filter.h \
slp_filter_y.h \
slp_predicate.h \
slp_dhcp.h
AM_YFLAGS = -d
|