blob: 40ae9de4ba0be5c3729d760e0c5026668ea42352 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
###########################
## Makefile for BitlBee ##
## ##
## Copyright 2002 Lintux ##
###########################
### DEFINITIONS
-include ../../Makefile.settings
ifdef _SRCDIR_
_SRCDIR_ := $(_SRCDIR_)protocols/twitter/
endif
# [SH] Program variables
objects = twitter.o twitter_http.o twitter_lib.o
LFLAGS += -r
# [SH] Phony targets
all: twitter_mod.o
check: all
lcov: check
gcov:
gcov *.c
.PHONY: all clean distclean
clean:
rm -f *.o core
distclean: clean
rm -rf .depend
### MAIN PROGRAM
$(objects): ../../Makefile.settings Makefile
$(objects): %.o: $(_SRCDIR_)%.c
@echo '*' Compiling $<
$(VERBOSE) $(CC) -c $(CFLAGS) $(CFLAGS_BITLBEE) $< -o $@
twitter_mod.o: $(objects)
@echo '*' Linking twitter_mod.o
$(VERBOSE) $(LD) $(LFLAGS) $(objects) -o twitter_mod.o
-include .depend/*.d
|