comparison mcabber/src/Makefile @ 29:86837ff0554c

[/trunk] Changeset 45 by mikael * Switch to libjabber. (Does NOT work at all yet) jabglue.c is a wrapper around the libjabber library.
author mikael
date Mon, 28 Mar 2005 20:12:48 +0000
parents 0cd8025eebee
children a8ceaa3005fd
comparison
equal deleted inserted replaced
28:0cd8025eebee 29:86837ff0554c
31 ifndef CC 31 ifndef CC
32 CC = gcc 32 CC = gcc
33 endif 33 endif
34 CFLAGS = -Wall -W -pedantic 34 CFLAGS = -Wall -W -pedantic
35 LD = $(CC) 35 LD = $(CC)
36 LDLIBS = -lncurses -lpanel 36 LDLIBS = -lncurses -lpanel -L../libjabber -L../connwrap -llibjabber -lconnwrap -lssl
37 37
38 ifeq ($(DEBUG),1) 38 ifeq ($(DEBUG),1)
39 CFLAGS += -O0 -g -DDEBUG=1 39 CFLAGS += -O0 -g -DDEBUG=1
40 else 40 else
41 CFLAGS += -O2 -mcpu=$(CPU) 41 CFLAGS += -O2 -mcpu=$(CPU)
52 main.c \ 52 main.c \
53 screen.c \ 53 screen.c \
54 utils.c \ 54 utils.c \
55 buddies.c \ 55 buddies.c \
56 parsecfg.c \ 56 parsecfg.c \
57 jabglue.c \
57 server.c \ 58 server.c \
58 socket.c \ 59 socket.c \
59 lang.c \ 60 lang.c \
60 utf8.c 61 utf8.c
61 62