Add Homebrew LibreSSL paths to Makefile
parent
6f9b928e53
commit
eb035896bd
4
Makefile
4
Makefile
|
@ -1,7 +1,7 @@
|
||||||
USER = chat
|
USER = chat
|
||||||
CFLAGS += -Wall -Wextra -Wpedantic
|
CFLAGS += -Wall -Wextra -Wpedantic
|
||||||
CFLAGS += -I/usr/local/include
|
CFLAGS += -I/usr/local/include -I/usr/local/opt/libressl/include
|
||||||
LDFLAGS += -L/usr/local/lib
|
LDFLAGS += -L/usr/local/lib -L/usr/local/opt/libressl/lib
|
||||||
LDLIBS = -lcursesw -ltls
|
LDLIBS = -lcursesw -ltls
|
||||||
OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o ui.o
|
OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o ui.o
|
||||||
|
|
||||||
|
|
2
README
2
README
|
@ -1,6 +1,6 @@
|
||||||
Simple IRC client for use over anonymous SSH.
|
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.h Shared state and function prototypes
|
||||||
chat.c Command line parsing and poll loop
|
chat.c Command line parsing and poll loop
|
||||||
|
|
Loading…
Reference in New Issue