forked from Metaswitch/sipp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
50 lines (43 loc) · 865 Bytes
/
Makefile.am
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
bin_PROGRAMS = sipp
if HAVE_OPENSSL
DEFS += -D_USE_OPENSSL
ssl_SOURCES = sslinit.c \
sslthreadsafe.c
endif
if HAVE_PCAP
DEFS += -DPCAPPLAY
pcap_SOURCES = prepare_pcap.c \
send_packets.c
endif
if HAVE_UNITTEST
DEFS += -DSIPP_UNITTEST
endif
if HAVE_SCTP
DEFS += -DUSE_SCTP
endif
sipp_SOURCES = comp.c \
xp_parser.c \
actions.cpp \
call.cpp \
deadcall.cpp \
infile.cpp \
listener.cpp \
message.cpp \
opentask.cpp \
reporttask.cpp \
scenario.cpp \
screen.cpp \
sipp.cpp \
socketowner.cpp \
stat.cpp \
task.cpp \
variables.cpp \
watchdog.cpp \
md5.c \
auth.c \
milenage.c \
rijndael.c \
$(ssl_SOURCES) \
$(pcap_SOURCES)
sipp_LDADD = @LIBOBJS@
# fortune.cpp