source: protocols/yahoo/Makefile @ cd4723c

Last change on this file since cd4723c 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: 774 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 = yahoo.o crypt.o libyahoo2.o yahoo_fn.o yahoo_httplib.o yahoo_util.o
13
14CFLAGS += -Wall -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB
15LFLAGS += -r
16
17# [SH] Phony targets
18all: yahoo_mod.o
19check: all
20gcov: 
21        gcov *.c
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
38yahoo_mod.o: $(objects)
39        @echo '*' Linking yahoo_mod.o
40        @$(LD) $(LFLAGS) $(objects) -o yahoo_mod.o
Note: See TracBrowser for help on using the repository browser.