1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/Makefile
Andy Green 7310e9c77b refactor-into-dirs.patch
Signed-off-by: Andy Green <andy@warmcat.com>
2010-11-01 09:12:17 +00:00

17 lines
318 B
Makefile

export CFLAGS= -Wall -Werror -rdynamic -fPIC -c
all:
make -C lib
make -C test-server
./scripts/kernel-doc -text \
./lib/libwebsockets.c \
./test-server/test-server.c > libwebsockets-api-doc.txt
clean:
make -C lib clean
make -C test-server clean
install:
make -C lib install
make -C test-server install