Add Homebrew LibreSSL paths to Makefile

weechat-hashes
Curtis McEnroe 2018-08-08 19:36:02 -04:00
parent 6f9b928e53
commit eb035896bd
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
2 changed files with 3 additions and 3 deletions

View File

@ -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

2
README
View File

@ -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