Only sends the sync, does not do anything with the response yet. Handling the response will be implemented in the next several commits, piece by piece. FossilOrigin-Name: 17e299f073f39e55dfe0b8a4bd1b34c8529400138d147df5a7229336df6ba04f
19 lines
481 B
Makefile
19 lines
481 B
Makefile
include ../../extra.mk
|
|
|
|
STATIC_PIC_LIB_NOINST = ${EXCEPTIONS_LIB_A}
|
|
STATIC_LIB_NOINST = ${EXCEPTIONS_A}
|
|
|
|
SRCS = MTXClientException.m \
|
|
MTXFetchRoomListFailedException.m \
|
|
MTXJoinRoomFailedException.m \
|
|
MTXLeaveRoomFailedException.m \
|
|
MTXLoginFailedException.m \
|
|
MTXLogoutFailedException.m \
|
|
MTXSendMessageFailedException.m \
|
|
MTXSyncFailedException.m
|
|
INCLUDES = ${SRCS:.m=.h}
|
|
|
|
include ../../buildsys.mk
|
|
|
|
CPPFLAGS += -I. -I..
|
|
|