introduce-private-md5-sha1.patch
[profile/ivi/libwebsockets.git] / lib / Makefile.am
1 lib_LTLIBRARIES=libwebsockets.la
2 include_HEADERS=libwebsockets.h
3 dist_libwebsockets_la_SOURCES=libwebsockets.c \
4                                 handshake.c \
5                                 parsers.c \
6                                 libwebsockets.h \
7                                 base64-decode.c \
8                                 client-handshake.c \
9                                 private-libwebsockets.h
10 if LIBCRYPTO
11 else
12 dist_libwebsockets_la_SOURCES += md5.c sha-1.c
13 endif
14
15 libwebsockets_la_CFLAGS=-Wall -Werror -std=gnu99 -pedantic -rdynamic -fPIC -c
16 libwebsockets_la_LDFLAGS=-version-info 0:2
17
18 all-local:
19          ../scripts/kernel-doc -html \
20                 libwebsockets.c \
21                 parsers.c \
22                 client-handshake.c \
23                 libwebsockets.h \
24                         > ../libwebsockets-api-doc.html
25