source: protocols/oscar/Makefile @ 22bf64e

Last change on this file since 22bf64e was 66c57924, checked in by Jelmer Vernooij <jelmer@…>, at 2005-11-20T16:09:23Z

Remove OFT and rendez-vous support (not used anyway and implemented
in a way too complicated way)

  • Property mode set to 100644
File size: 789 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 = 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
13
14CFLAGS += -Wall
15LFLAGS += -r
16
17# [SH] Phony targets
18all: oscarr.o
19
20.PHONY: all clean distclean
21
22clean:
23        rm -f *.o core
24
25distclean: clean
26
27### MAIN PROGRAM
28
29$(objects): ../../Makefile.settings Makefile
30
31$(objects): %.o: %.c
32        @echo '*' Compiling $<
33        @$(CC) -c $(CFLAGS) $< -o $@
34
35oscarr.o: $(objects)
36        @echo '*' Linking oscarr.o
37        @$(LD) $(LFLAGS) $(objects) -o oscarr.o
Note: See TracBrowser for help on using the repository browser.