mirror of
https://github.com/RGBCube/serenity
synced 2025-10-18 01:12:24 +00:00

This commit splits the TLSv12 file into multiple files, and also removes some magic values, to make the code less horrible. :^)
21 lines
495 B
Makefile
21 lines
495 B
Makefile
LIBTLS_OBJS = TLSv12.o \
|
|
ClientHandshake.o \
|
|
Exchange.o \
|
|
Handshake.o \
|
|
Record.o \
|
|
Socket.o
|
|
|
|
OBJS = $(LIBTLS_OBJS)
|
|
|
|
LIBRARY = libtls.a
|
|
|
|
install:
|
|
for dir in .; do \
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibTLS/$$dir; \
|
|
cp $$dir/*.h $(SERENITY_BASE_DIR)/Root/usr/include/LibTLS/$$dir/; \
|
|
done
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|
|
|
|
include ../../Makefile.subdir
|