summaryrefslogtreecommitdiff
path: root/lib/Makefile.am
blob: 69edc1b0c73de727c4153888610691aff8b09cec (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
lib_LTLIBRARIES=libwebsockets.la
include_HEADERS=libwebsockets.h
dist_libwebsockets_la_SOURCES=libwebsockets.c \
				handshake.c \
				parsers.c \
				libwebsockets.h \
				base64-decode.c \
				client-handshake.c \
				extension.c \
				extension-deflate-stream.c extension-deflate-stream.h \
				private-libwebsockets.h
				
if EXT_GOOGLE_MUX
dist_libwebsockets_la_SOURCES += extension-x-google-mux.c extension-x-google-mux.h
endif

if LIBCRYPTO
else
dist_libwebsockets_la_SOURCES += md5.c sha-1.c
endif

libwebsockets_la_CFLAGS=-Wall -std=gnu99 -pedantic
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 0:3
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