blob: eef85d77a719c73d3ca27be4751aae7967cd707c (
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
|
#
# Makefile
#
# Version: $Id$
#
TARGET := libfreeradius-radius.a
SOURCES := cbuff.c \
cursor.c \
debug.c \
dict.c \
filters.c \
hash.c \
hmacmd5.c \
hmacsha1.c \
isaac.c \
log.c \
misc.c \
missing.c \
md4.c \
md5.c \
net.c \
pair.c \
pcap.c \
print.c \
radius.c \
rbtree.c \
regex.c \
sha1.c \
snprintf.c \
strlcat.c \
strlcpy.c \
socket.c \
token.c \
udpfromto.c \
value.c \
fifo.c \
packet.c \
event.c \
getaddrinfo.c \
heap.c \
tcp.c \
base64.c \
version.c \
atomic_queue.c \
talloc.c
SRC_CFLAGS := -D_LIBRADIUS -I$(top_builddir)/src
# System libraries discovered by our top level configure script, links things
# like pthread and the regexp libraries.
TGT_LDLIBS := $(LIBS) $(PCAP_LIBS)
TGT_LDFLAGS := $(LDFLAGS) $(PCAP_LDFLAGS)
|