summaryrefslogtreecommitdiff
path: root/Libraries/LibTLS/Makefile
blob: f138bd517da7fc2afb63e487346e599cad14e729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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