source: protocols/jabber/Makefile @ e35d1a1

Last change on this file since e35d1a1 was e35d1a1, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-04-22T20:44:27Z

Read-only support for Jabber conferences (non-anonymous rooms only).
Just don't use this, you're really not going to like it. :-)

  • Property mode set to 100644
File size: 723 bytes
RevLine 
[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
[e35d1a1]12objects = conference.o io.o iq.o jabber.o jabber_util.o message.o presence.o sasl.o xmltree.o
[b7d3cc34]13
14CFLAGS += -Wall
15LFLAGS += -r
16
17# [SH] Phony targets
[afe0764]18all: jabber_mod.o
[66b9e86e]19check: all
[a51be64]20gcov: 
21        gcov *.c
[b7d3cc34]22
23.PHONY: all clean distclean
24
25clean:
26        rm -f *.o core
27
28distclean: clean
29
30### MAIN PROGRAM
31
32$(objects): ../../Makefile.settings Makefile
33
34$(objects): %.o: %.c
35        @echo '*' Compiling $<
36        @$(CC) -c $(CFLAGS) $< -o $@
37
[afe0764]38jabber_mod.o: $(objects)
39        @echo '*' Linking jabber_mod.o
40        @$(LD) $(LFLAGS) $(objects) -o jabber_mod.o
Note: See TracBrowser for help on using the repository browser.