Mercurial > pidgin-twitter
comparison Makefile.in @ 0:2413369d1b01
initial import
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Tue, 29 Apr 2008 14:35:36 +0900 |
parents | |
children | 799955af57ad |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2413369d1b01 |
---|---|
1 PIDGIN_CFLAGS = @PIDGIN_CFLAGS@ | |
2 PCRE_CFLAGS = @PCRE_CFLAGS@ | |
3 CFLAGS = -fPIC -shared -Wall $(PIDGIN_CFLAGS) $(PCRE_CFLAGS) | |
4 | |
5 PCRE_LIBS = @AUD_LIBS@ | |
6 PCRE_LIB_DIR = @AUD_LIB_DIR@ | |
7 LDFLAGS = $(PCRE_LIBS) | |
8 | |
9 PIDGIN_LIB_DIR = @PIDGIN_LIB_DIR@ | |
10 | |
11 | |
12 default: pidgin-twitter.so | |
13 | |
14 pidgin-twitter.so: pidgin-twitter.c | |
15 gcc -o $@ $< $(CFLAGS) $(LDFLAGS) -g -Wl,-rpath=$(PCRE_LIB_DIR) | |
16 | |
17 | |
18 install: pidgin-twitter.so | |
19 install -m 755 pidgin-twitter.so $(PIDGIN_LIB_DIR)/pidgin | |
20 | |
21 | |
22 clean: | |
23 rm -f pidgin-twitter.so | |
24 | |
25 | |
26 distclean: clean | |
27 rm -f Makefile config.log config.status *~ | |
28 rm -rf autom4te.cache |