source: protocols/msn/Makefile @ 17a6ee9

Last change on this file since 17a6ee9 was 17a6ee9, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-11T14:37:06Z

Including DCC stuff again, with a wonderful extra layer of abstraction.
Some hooks are missing so sending files doesn't work yet. Receiving also
still seems to have some issues. On the plus side, at least the MSN/Jabber
modules work again.

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