summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile4
-rw-r--r--README2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index de85e55..4a956b2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 USER = chat
 CFLAGS += -Wall -Wextra -Wpedantic
-CFLAGS += -I/usr/local/include
-LDFLAGS += -L/usr/local/lib
+CFLAGS += -I/usr/local/include -I/usr/local/opt/libressl/include
+LDFLAGS += -L/usr/local/lib -L/usr/local/opt/libressl/lib
 LDLIBS = -lcursesw -ltls
 OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o ui.o
 
diff --git a/README b/README
index db03f11..b94a55a 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
 Simple IRC client for use over anonymous SSH.
 
-This software targets FreeBSD and requires LibreSSL.
+This software requires LibreSSL and targets FreeBSD and Darwin.
 
 	chat.h      Shared state and function prototypes
 	chat.c      Command line parsing and poll loop