source: protocols/jabber/Makefile @ 66b9e86e

Last change on this file since 66b9e86e was 66b9e86e, checked in by Jelmer Vernooij <jelmer@…>, at 2006-07-07T13:33:31Z

Add support for checking test suite coverage using gcov.

  • Property mode set to 100644
File size: 734 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 = expat.o hashtable.o jid.o jpacket.o jutil.o log.o pool.o str.o xmlnode.o xmlparse.o xmlrole.o xmltok.o jabber.o
13
14CFLAGS += -Wall
15LFLAGS += -r
16
17# [SH] Phony targets
18all: jabber_mod.o
19check: all
20
21.PHONY: all clean distclean
22
23clean:
24        rm -f *.o core
25
26distclean: clean
27
28### MAIN PROGRAM
29
30$(objects): ../../Makefile.settings Makefile
31
32$(objects): %.o: %.c
33        @echo '*' Compiling $<
34        @$(CC) -c $(CFLAGS) $< -o $@
35
36jabber_mod.o: $(objects)
37        @echo '*' Linking jabber_mod.o
38        @$(LD) $(LFLAGS) $(objects) -o jabber_mod.o
Note: See TracBrowser for help on using the repository browser.