source: protocols/msn/Makefile @ e8c8d00

Last change on this file since e8c8d00 was 1c3008a, checked in by Wilmer van der Gaast <wilmer@…>, at 2009-12-13T14:48:56Z

No functional changes, just some style "fixes". Although I admit I'm
somewhat growing out of my own coding style, I do try to keep things
consistent at least within files.

Comments are now in reviewboard:

http://code.bitlbee.org/rb/r/13/

  • Property mode set to 100644
File size: 703 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
[1c3008a]12objects = invitation.o msn.o msn_util.o ns.o passport.o sb.o tables.o
[b7d3cc34]13
14CFLAGS += -Wall
15LFLAGS += -r
16
17# [SH] Phony targets
[afe0764]18all: msn_mod.o
[66b9e86e]19check: all
[fc5cf88]20lcov: check
[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]39msn_mod.o: $(objects)
40        @echo '*' Linking msn_mod.o
41        @$(LD) $(LFLAGS) $(objects) -o msn_mod.o
[b7d3cc34]42       
43
Note: See TracBrowser for help on using the repository browser.