From be7f2ae3f10950604018b82134b798da7e5721c7 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 15 Oct 2019 00:52:25 -0400 Subject: Add argument parsing and dumb TLS server I can connect to this from Textual using a localhost certificate I manually made on macOS, at least. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9ae0ed7 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +LIBRESSL_PREFIX = /usr/local + +CFLAGS += -std=c11 -Wall -Wextra -Wpedantic +CFLAGS += -I${LIBRESSL_PREFIX}/include +LDFLAGS += -L${LIBRESSL_PREFIX}/lib +LDLIBS = -ltls + +-include config.mk + +linger: -- cgit 1.4.1