Last change
on this file since f959495 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:
828 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 |
---|
[66c57924] | 12 | objects = admin.o auth.o bos.o buddylist.o chat.o chatnav.o conn.o icq.o im.o info.o misc.o msgcookie.o rxhandlers.o rxqueue.o search.o service.o snac.o ssi.o stats.o tlv.o txqueue.o oscar_util.o oscar.o |
---|
[b7d3cc34] | 13 | |
---|
| 14 | CFLAGS += -Wall |
---|
| 15 | LFLAGS += -r |
---|
| 16 | |
---|
| 17 | # [SH] Phony targets |
---|
[afe0764] | 18 | all: oscar_mod.o |
---|
[66b9e86e] | 19 | check: all |
---|
| 20 | gcov: |
---|
| 21 | gcov *.c |
---|
[b7d3cc34] | 22 | |
---|
| 23 | .PHONY: all clean distclean |
---|
| 24 | |
---|
| 25 | clean: |
---|
| 26 | rm -f *.o core |
---|
| 27 | |
---|
| 28 | distclean: 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] | 38 | oscar_mod.o: $(objects) |
---|
| 39 | @echo '*' Linking oscar_mod.o |
---|
| 40 | @$(LD) $(LFLAGS) $(objects) -o oscar_mod.o |
---|
Note: See
TracBrowser
for help on using the repository browser.