source: protocols/Makefile @ c998255

Last change on this file since c998255 was b7d3cc34, checked in by Wilmer van der Gaast <wilmer@…>, at 2005-11-06T18:23:18Z

Initial repository (0.99 release tree)

  • Property mode set to 100644
File size: 1.2 KB
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 = md5.o nogaim.o proxy.o sha.o util.o $(SSL_CLIENT)
13
14# [SH] The next two lines should contain the directory name (in $(subdirs))
15#      and the name of the object file, which should be linked into
16#      protocols.o (in $(subdirobjs)). These need to be in order, i.e. the
17#      first object file should be in the first directory.
18subdirs = $(PROTOCOLS)
19subdirobjs = $(PROTOOBJS)
20
21# Expansion of variables
22subdirobjs := $(join $(subdirs),$(addprefix /,$(subdirobjs)))
23CFLAGS += -Wall
24LFLAGS += -r
25
26# [SH] Phony targets
27all: protocols.o
28
29.PHONY: all clean distclean $(subdirs)
30
31clean: $(subdirs)
32        rm -f *.o $(OUTFILE) core
33
34distclean: clean $(subdirs)
35
36$(subdirs):
37        @$(MAKE) -C $@ $(MAKECMDGOALS)
38
39### MAIN PROGRAM
40
41protocols.o: $(objects) $(subdirs)
42        @echo '*' Linking protocols.o
43        @$(LD) $(LFLAGS) $(objects) $(subdirobjs) -o protocols.o
44
45$(objects): ../Makefile.settings Makefile
46
47$(objects): %.o: %.c
48        @echo '*' Compiling $<
49        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.