Last change
on this file since 08135df was
2ff2076,
checked in by ulim <a.sporto+bee@…>, at 2007-12-03T14:28:45Z
|
Intermediate commit. Sending seems to work. TODOs:
- move from out_of_data to is_writable, eliminate buffers
- implement "transfers reject [id]"
- documentation in commands.xml
- implement throughput and cummulative throughput boundaries
- feature discovery before sending
- implement sending over a proxy
(proxy discovery, socks5 client handshake for sending, activate message)
- integrate toxik-mek-ft
|
-
Property mode set to
100644
|
File size:
749 bytes
|
Rev | Line | |
---|
[b7d3cc34] | 1 | ########################### |
---|
| 2 | ## Makefile for BitlBee ## |
---|
| 3 | ## ## |
---|
| 4 | ## Copyright 2002 Lintux ## |
---|
| 5 | ########################### |
---|
| 6 | |
---|
| 7 | ### DEFINITIONS |
---|
| 8 | |
---|
| 9 | -include ../../Makefile.settings |
---|
| 10 | |
---|
| 11 | # [SH] Program variables |
---|
[2ff2076] | 12 | objects = conference.o io.o iq.o jabber.o jabber_util.o message.o presence.o sasl.o xmltree.o si.o s5bytestream.o |
---|
[b7d3cc34] | 13 | |
---|
| 14 | CFLAGS += -Wall |
---|
| 15 | LFLAGS += -r |
---|
| 16 | |
---|
| 17 | # [SH] Phony targets |
---|
[afe0764] | 18 | all: jabber_mod.o |
---|
[66b9e86e] | 19 | check: all |
---|
[348c11b] | 20 | lcov: |
---|
[a51be64] | 21 | gcov: |
---|
| 22 | gcov *.c |
---|
[b7d3cc34] | 23 | |
---|
| 24 | .PHONY: all clean distclean |
---|
| 25 | |
---|
| 26 | clean: |
---|
| 27 | rm -f *.o core |
---|
| 28 | |
---|
| 29 | distclean: 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 | |
---|
[afe0764] | 39 | jabber_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.