1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-18 01:12:24 +00:00
serenity/Libraries/LibTLS/Makefile
AnotherTest dace14e70d LibTLS: Split TLSv12 to sensible categorical files
This commit splits the TLSv12 file into multiple files, and also removes
some magic values, to make the code less horrible. :^)
2020-05-02 12:24:10 +02:00

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