-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (26 loc) · 795 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (26 loc) · 795 Bytes
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
# Makefile for SipSpeedLinux
#
# programmer : yee young han ( websearch@naver.com )
# : http://blog.naver.com/websearch
# start date : 2014/08/18
include ../Makefile.mk
INC=-I../SipUserAgent -I../SipStack -I../SipParser -I../SdpParser \
-I../XmlParser -I../SipPlatform $(OPENSSL_INC)
LIB=-L../SipUserAgent -lsipuseragent \
-L../SipStack -lsipstack \
-L../SipParser -lsipparser \
-L../SdpParser -lsdpparser \
-L../XmlParser -lxmlparser \
-L../SipPlatform -lsipplatform \
$(OPENSSL_LIB) -lssl -lcrypto -lpthread
.SUFFIXES: .o .cpp
%.o : %.cpp
$(CC) $(CFLAGS) -c $< $(INC)
all: SipSpeedLinux.exe
SRV_OBJ=SipClient.o SipSpeedLinux.o SipSpeedSetup.o
SipSpeedLinux.exe: $(SRV_OBJ)
$(CC) $(CFLAGS) -o $@ $(SRV_OBJ) $(INC) $(LIB)
clean:
rm -f *.exe
rm -f *.o
rm -f core.*