File: Makefile.am

package info (click to toggle)
jabberd2 2.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,016 kB
  • sloc: ansic: 37,099; sh: 1,108; perl: 656; xml: 561; makefile: 511; python: 238; ruby: 145; sql: 55
file content (23 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
LIBTOOL += --quiet
AM_CPPFLAGS = -I@top_srcdir@

noinst_LTLIBRARIES = libsx.la
noinst_HEADERS = plugins.h sasl.h sx.h

libsx_la_SOURCES = callback.c chain.c client.c env.c error.c io.c server.c sx.c sasl.c ack.c
libsx_la_CFLAGS =
libsx_la_LIBADD = @LDFLAGS@

if HAVE_SSL
libsx_la_SOURCES += ssl.c
libsx_la_CFLAGS += $(SSL_CFLAGS)
libsx_la_LIBADD += $(SSL_LIBS)
endif

if HAVE_LIBZ
libsx_la_SOURCES += compress.c
endif

if USE_WEBSOCKET
libsx_la_SOURCES += websocket.c
endif