
Move server-only stuff into their own files and make building that depend on not having --without-server on the configure Make fragments in other places conditional as well Remove client-related members from struct libwebscket when building LWS_NO_CLIENT Apps: normal: build test server, client, fraggle, ping --without-client: build test server --without-server: build test client, ping Signed-off-by: Andy Green <andy.green@linaro.org>
63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
lib_LTLIBRARIES=libwebsockets.la
|
|
include_HEADERS=libwebsockets.h
|
|
dist_libwebsockets_la_SOURCES=libwebsockets.c \
|
|
parsers.c \
|
|
handshake.c \
|
|
libwebsockets.h \
|
|
base64-decode.c \
|
|
output.c \
|
|
extension.c \
|
|
extension-deflate-stream.c extension-deflate-stream.h \
|
|
extension-deflate-frame.c extension-deflate-frame.h\
|
|
private-libwebsockets.h
|
|
|
|
if NO_DAEMONIZE
|
|
else
|
|
dist_libwebsockets_la_SOURCES+= daemonize.c
|
|
endif
|
|
|
|
if NO_CLIENT
|
|
else
|
|
dist_libwebsockets_la_SOURCES+= client.c \
|
|
client-parser.c \
|
|
client-handshake.c
|
|
endif
|
|
|
|
if NO_SERVER
|
|
else
|
|
dist_libwebsockets_la_SOURCES+= server.c \
|
|
server-handshake.c
|
|
endif
|
|
|
|
if USE_BUILTIN_GETIFADDRS
|
|
dist_libwebsockets_la_SOURCES += getifaddrs.c
|
|
endif
|
|
|
|
if LIBCRYPTO
|
|
else
|
|
dist_libwebsockets_la_SOURCES += md5.c sha-1.c
|
|
endif
|
|
|
|
libwebsockets_la_CFLAGS=-Wall -std=gnu99 -pedantic -g
|
|
libwebsockets_la_LDFLAGS=
|
|
|
|
if MINGW
|
|
libwebsockets_la_CFLAGS+= -w -I../win32port/win32helpers -I ../win32port/zlib/
|
|
libwebsockets_la_LDFLAGS+= -lm -luser32 -ladvapi32 -lkernel32 -lgcc
|
|
else
|
|
libwebsockets_la_CFLAGS+= -rdynamic -fPIC -Werror
|
|
libwebsockets_la_LDFLAGS+= -version-info 1:0
|
|
endif
|
|
|
|
libwebsockets_la_CFLAGS+= -c \
|
|
-DINSTALL_DATADIR=\"@datadir@\" -DLWS_OPENSSL_CLIENT_CERTS=\"@clientcertdir@\"
|
|
libwebsockets_la_LDFLAGS+= -lz
|
|
|
|
all-local:
|
|
../scripts/kernel-doc -html \
|
|
libwebsockets.c \
|
|
parsers.c \
|
|
client-handshake.c \
|
|
libwebsockets.h \
|
|
> ../libwebsockets-api-doc.html
|
|
|