blob: e213024239a28f3ec930ea2082a4e5c7ef1c6c54 (
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
|
lib_LTLIBRARIES = libinterchange.la
libinterchange_la_SOURCES = \
client.c \
request.c \
ord.c \
login.c \
member.c \
admin.c
if WASM
libinterchange_la_LDFLAGS = -static
else
libinterchange_la_CPPFLAGS = $(CURL_CFLAGS)
endif
if IOS
libinterchange_la_LDFLAGS = -static
endif
if STRAP
libinterchange_la_SOURCES += handler.c
libinterchange_la_CPPFLAGS = $(libinterchange_la_CPPFLAGS) $(TIDY_CFLAGS)
endif
include_HEADERS = icclient.h
pkginclude_HEADERS = \
icclient/typedefs.h \
icclient/ord.h \
icclient/member.h \
icclient/admin.h
|