mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
18 lines
481 B
Makefile
18 lines
481 B
Makefile
lib_LTLIBRARIES=libwebsockets.la
|
|
include_HEADERS=libwebsockets.h
|
|
dist_libwebsockets_la_SOURCES=libwebsockets.c \
|
|
handshake.c \
|
|
parsers.c \
|
|
md5.c \
|
|
libwebsockets.h \
|
|
private-libwebsockets.h
|
|
libwebsockets_la_CFLAGS=-Wall -Werror -pedantic -rdynamic -fPIC -c
|
|
libwebsockets_la_LDFLAGS=-version-info 0:2
|
|
|
|
all-local:
|
|
../scripts/kernel-doc -html \
|
|
libwebsockets.c \
|
|
parsers.c \
|
|
libwebsockets.h \
|
|
> ../libwebsockets-api-doc.html
|
|
|