source: protocols/jabber/Makefile @ 2c2df7d

Last change on this file since 2c2df7d was 2c2df7d, checked in by ulim <a.sporto+bee@…>, at 2007-11-28T21:07:30Z

Initial import of jabber file receive and DCC send support. This introduces
only a few changes to bitlbees code, mainly the addition of the "transfers"
command.

This is known to work with Kopete, Psi, and Pidgin (formerly known as gaim).
At least with Pidgin also over a proxy. DCC has only been tested with irssi.
IPV6 is untested but should work.

Currently, only receiving via SOCKS5BYTESREAMS is implemented. I'm not sure if
the alternative(in-band bytestreams IBB) is worth implementing since I didn't
see a client yet that can do it. Additionally, it is probably very slow and
needs support by the server as well.

  • Property mode set to 100644
File size: 743 bytes
Line 
1###########################
2## Makefile for BitlBee  ##
3##                       ##
4## Copyright 2002 Lintux ##
5###########################
6
7### DEFINITIONS
8
9-include ../../Makefile.settings
10
11# [SH] Program variables
12objects = conference.o io.o iq.o jabber.o jabber_util.o message.o presence.o sasl.o xmltree.o si.o stream.o
13
14CFLAGS += -Wall
15LFLAGS += -r
16
17# [SH] Phony targets
18all: jabber_mod.o
19check: all
20lcov:
21gcov: 
22        gcov *.c
23
24.PHONY: all clean distclean
25
26clean:
27        rm -f *.o core
28
29distclean: clean
30
31### MAIN PROGRAM
32
33$(objects): ../../Makefile.settings Makefile
34
35$(objects): %.o: %.c
36        @echo '*' Compiling $<
37        @$(CC) -c $(CFLAGS) $< -o $@
38
39jabber_mod.o: $(objects)
40        @echo '*' Linking jabber_mod.o
41        @$(LD) $(LFLAGS) $(objects) -o jabber_mod.o
Note: See TracBrowser for help on using the repository browser.