summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 216f161..9e19425 100755
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,8 @@ CFLAGS = -Wall -Os
14 14
15CFLAGS += $(OLDREADLINE) 15CFLAGS += $(OLDREADLINE)
16 16
17CFLAGS += -I../readline-5.0 -I../ncurses-5.4/include/
18
17## you might need one or more of these: 19## you might need one or more of these:
18#CFLAGS += -I/usr/local/ssl/include -L/usr/local/ssl/lib 20#CFLAGS += -I/usr/local/ssl/include -L/usr/local/ssl/lib
19#CFLAGS += -I/usr/local/include -L/usr/local/lib 21#CFLAGS += -I/usr/local/include -L/usr/local/lib
@@ -29,7 +31,7 @@ CFLAGS += $(OLDREADLINE)
29## the install prefix best is /usr/local 31## the install prefix best is /usr/local
30PREFIX=/usr/local 32PREFIX=/usr/local
31 33
32LIBS = -lreadline -lncurses -lssl -lcrypto 34LIBS = ../readline-5.0/libreadline.a ../ncurses-5.4/lib/libncurses.a -lssl -lcrypto
33OBJS = vchat-client.o vchat-ui.o vchat-protocol.o vchat-user.o vchat-commands.o 35OBJS = vchat-client.o vchat-ui.o vchat-protocol.o vchat-user.o vchat-commands.o
34 36
35 37