source: protocols/yahoo/Makefile @ 348c11b

Last change on this file since 348c11b was 348c11b, checked in by Jelmer Vernooij <jelmer@…>, at 2007-01-22T09:42:55Z

Add lcov target

  • Property mode set to 100644
File size: 780 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
[277674c]12objects = yahoo.o crypt.o libyahoo2.o yahoo_fn.o yahoo_httplib.o yahoo_util.o
[b7d3cc34]13
14CFLAGS += -Wall -DSTDC_HEADERS -DHAVE_STRING_H -DHAVE_STRCHR -DHAVE_MEMCPY -DHAVE_GLIB
15LFLAGS += -r
16
17# [SH] Phony targets
[afe0764]18all: yahoo_mod.o
[66b9e86e]19check: all
[348c11b]20lcov:
[66b9e86e]21gcov: 
22        gcov *.c
[b7d3cc34]23
24.PHONY: all clean distclean
25
26clean:
27        rm -f *.o core
28
29distclean: 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]39yahoo_mod.o: $(objects)
40        @echo '*' Linking yahoo_mod.o
41        @$(LD) $(LFLAGS) $(objects) -o yahoo_mod.o
Note: See TracBrowser for help on using the repository browser.