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