1
2
3
4
5
6
|
all:
objfw-compile -Wall -Werror -g --lib 0.0 -o objxmpp *.m \
`pkg-config --cflags --libs libidn` -lobjopenssl
clean:
rm -f *.o *.so *.dylib *.dll
|
>
|
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
|
>
|
>
|
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
|
include ../extra.mk
LIB = ${OBJXMPP_SHARED_LIB}
LIB_MAJOR = 0
LIB_MINOR = 0
STATIC_LIB = ${OBJXMPP_STATIC_LIB}
SRCS = XMPPAuthenticator.m \
XMPPConnection.m \
XMPPExceptions.m \
XMPPIQ.m \
XMPPJID.m \
XMPPMessage.m \
XMPPPLAINAuth.m \
XMPPPresence.m \
XMPPRoster.m \
XMPPRosterItem.m \
XMPPSCRAMAuth.m \
XMPPStanza.m
INCLUDES := ${SRCS:.m=.h}
SRCS += arc4random_uniform.m
include ../buildsys.mk
LD = ${OBJC}
|