source: lib/Makefile @ b6a2373

Last change on this file since b6a2373 was 77bfd07, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-11-23T23:07:44Z

Replaced GPL-incompatible SHA1 hashing code (and renamed the files in case
I ever need SHA256 ;-)).

  • Property mode set to 100644
File size: 754 bytes
Line 
1###########################
2## Makefile for BitlBee  ##
3##                       ##
4## Copyright 2006 Lintux ##
5###########################
6
7### DEFINITIONS
8
9-include ../Makefile.settings
10
11# [SH] Program variables
12objects = arc.o base64.o $(EVENT_HANDLER) http_client.o ini.o md5.o misc.o proxy.o sha1.o $(SSL_CLIENT) url.o
13
14CFLAGS += -Wall
15LFLAGS += -r
16
17# [SH] Phony targets
18all: lib.o
19check: all
20lcov:
21gcov:
22        gcov *.c
23
24.PHONY: all clean distclean
25
26clean: $(subdirs)
27        rm -f *.o $(OUTFILE) core
28
29distclean: clean $(subdirs)
30
31### MAIN PROGRAM
32
33lib.o: $(objects) $(subdirs)
34        @echo '*' Linking lib.o
35        @$(LD) $(LFLAGS) $(objects) -o lib.o
36
37$(objects): ../Makefile.settings Makefile
38
39$(objects): %.o: %.c
40        @echo '*' Compiling $<
41        @$(CC) -c $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.