comparison libpurple/protocols/qq/Makefile.am @ 15374:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children e9c12873fae0
comparison
equal deleted inserted replaced
15373:f79e0f4df793 15374:5fe8042783c1
1 EXTRA_DIST = \
2 Makefile.mingw
3
4 pkgdir = $(libdir)/gaim
5
6 QQSOURCES = \
7 buddy_info.c \
8 buddy_info.h \
9 buddy_list.c \
10 buddy_list.h \
11 buddy_opt.c \
12 buddy_opt.h \
13 buddy_status.c \
14 buddy_status.h \
15 char_conv.c \
16 char_conv.h \
17 crypt.c \
18 crypt.h \
19 file_trans.c \
20 file_trans.h \
21 group.c \
22 group.h \
23 group_conv.c \
24 group_conv.h \
25 group_find.c \
26 group_find.h \
27 group_free.c \
28 group_free.h \
29 group_internal.c \
30 group_internal.h \
31 group_im.c \
32 group_im.h \
33 group_info.c \
34 group_info.h \
35 group_join.c \
36 group_join.h \
37 group_misc.c \
38 group_misc.h \
39 group_network.c \
40 group_network.h \
41 group_opt.c \
42 group_opt.h \
43 group_search.c \
44 group_search.h \
45 header_info.c \
46 header_info.h \
47 im.c \
48 im.h \
49 keep_alive.c \
50 keep_alive.h \
51 login_logout.c \
52 login_logout.h \
53 packet_parse.c \
54 packet_parse.h \
55 qq.c \
56 qq.h \
57 qq_proxy.c \
58 qq_proxy.h \
59 recv_core.c \
60 recv_core.h \
61 send_core.c \
62 send_core.h \
63 send_file.c \
64 send_file.h \
65 sendqueue.c \
66 sendqueue.h \
67 sys_msg.c \
68 sys_msg.h \
69 udp_proxy_s5.c \
70 udp_proxy_s5.h \
71 utils.c \
72 utils.h
73
74 AM_CFLAGS = $(st)
75
76 libqq_la_LDFLAGS = -module -avoid-version
77
78 if STATIC_QQ
79
80 st = -DGAIM_STATIC_PRPL
81 noinst_LIBRARIES = libqq.a
82 libqq_a_SOURCES = $(QQSOURCES)
83 libqq_a_CFLAGS = $(AM_CFLAGS)
84
85 else
86
87 st =
88 pkg_LTLIBRARIES = libqq.la
89 libqq_la_SOURCES = $(QQSOURCES)
90 libqq_la_LIBADD = $(GLIB_LIBS)
91
92 endif
93
94 AM_CPPFLAGS = \
95 -I$(top_srcdir)/libpurple \
96 -DVERSION=\"$(VERSION)\" \
97 -DQQ_BUDDY_ICON_DIR=\"$(datadir)/pixmaps/gaim/buddy_icons/qq\" \
98 $(DEBUG_CFLAGS) \
99 $(GLIB_CFLAGS) \
100 $(GAIM_CFLAGS)