diff options
Diffstat (limited to 'compat/libtls/Makefile')
-rw-r--r-- | compat/libtls/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/compat/libtls/Makefile b/compat/libtls/Makefile new file mode 100644 index 0000000..4af6e93 --- /dev/null +++ b/compat/libtls/Makefile @@ -0,0 +1,27 @@ +DISTFILES = Makefile \ + asn.c \ + by_mem.c \ + openssl.c \ + tls.c \ + tls.h \ + tls_bio_cb.c \ + tls_client.c \ + tls_config.c \ + tls_conninfo.c \ + tls_internal.h \ + tls_keypair.c \ + tls_ocsp.c \ + tls_peer.c \ + tls_server.c \ + tls_util.c \ + tls_verify.c + +all: + false + +dist: ${DISTFILES} + mkdir -p ${DESTDIR}/ + ${INSTALL} -m 0644 ${DISTFILES} ${DESTDIR}/ + +.PHONY: all dist +include ../../config.mk |