summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2012-02-27 00:07:14 +0000
committererdgeist <>2012-02-27 00:07:14 +0000
commite5e7c3786d07e6c3979f11ab8908dab9f4dd344b (patch)
tree700b48c3cabb58e568601dc925644cdc2e20d8c5
parent7dbafe3f0fa465949ef66d800a8cbd0b191c9519 (diff)
Revert debug Makefile changes
-rwxr-xr-xMakefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index ae11362..81c4fbe 100755
--- a/Makefile
+++ b/Makefile
@@ -6,19 +6,18 @@
6# configuration # 6# configuration #
7############################################## 7##############################################
8 8
9#CFLAGS = -Wall -Os 9CFLAGS = -Wall -Os
10CFLAGS = -Wall -g -ggdb 10#CFLAGS = -Wall -g -ggdb
11 11
12## use this line when you've got an readline before 4.(x|2) 12## use this line when you've got an readline before 4.(x|2)
13#CFLAGS += -DOLDREADLINE 13#CFLAGS += -DOLDREADLINE
14 14
15#CFLAGS += $(OLDREADLINE) 15CFLAGS += $(OLDREADLINE)
16 16
17## you might need one or more of these: 17## you might need one or more of these:
18#CFLAGS += -I/usr/local/ssl/include -L/usr/local/ssl/lib 18#CFLAGS += -I/usr/local/ssl/include -L/usr/local/ssl/lib
19#CFLAGS += -I/usr/local/include -L/usr/local/lib 19#CFLAGS += -I/usr/local/include -L/usr/local/lib
20#CFLAGS += -I/usr/pkg/include -L/usr/pkg/lib 20#CFLAGS += -I/usr/pkg/include -L/usr/pkg/lib
21CFLAGS+=-I../readline-6.2/
22 21
23## enable dietlibc 22## enable dietlibc
24#CC = diet cc 23#CC = diet cc
@@ -30,7 +29,7 @@ CFLAGS+=-I../readline-6.2/
30## the install prefix best is /usr/local 29## the install prefix best is /usr/local
31PREFIX=/usr/local 30PREFIX=/usr/local
32 31
33LIBS = ../readline-6.2/libreadline.a -lncurses -lssl -lcrypto 32LIBS = -lreadline -lncurses -lssl -lcrypto
34OBJS = vchat-client.o vchat-ui.o vchat-protocol.o vchat-user.o vchat-commands.o vchat-ssl.o 33OBJS = vchat-client.o vchat-ui.o vchat-protocol.o vchat-user.o vchat-commands.o vchat-ssl.o
35 34
36 35