14192
|
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 \
|
15072
|
19 file_trans.c \
|
|
20 file_trans.h \
|
14192
|
21 group.c \
|
14404
|
22 group.h \
|
14192
|
23 group_conv.c \
|
|
24 group_conv.h \
|
|
25 group_find.c \
|
|
26 group_find.h \
|
|
27 group_free.c \
|
|
28 group_free.h \
|
14404
|
29 group_internal.c \
|
|
30 group_internal.h \
|
14192
|
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 \
|
15072
|
53 packet_parse.c \
|
|
54 packet_parse.h \
|
|
55 qq.c \
|
|
56 qq.h \
|
14192
|
57 qq_proxy.c \
|
|
58 qq_proxy.h \
|
|
59 recv_core.c \
|
|
60 recv_core.h \
|
|
61 send_core.c \
|
|
62 send_core.h \
|
15072
|
63 send_file.c \
|
|
64 send_file.h \
|
14192
|
65 sendqueue.c \
|
|
66 sendqueue.h \
|
|
67 sys_msg.c \
|
|
68 sys_msg.h \
|
|
69 udp_proxy_s5.c \
|
|
70 udp_proxy_s5.h \
|
15072
|
71 utils.c \
|
|
72 utils.h
|
14192
|
73
|
|
74 AM_CFLAGS = $(st)
|
|
75
|
14674
|
76 libqq_la_LDFLAGS = -module -avoid-version
|
14192
|
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)
|
14674
|
90 libqq_la_LIBADD = $(GLIB_LIBS)
|
14192
|
91
|
|
92 endif
|
|
93
|
|
94 AM_CPPFLAGS = \
|
|
95 -I$(top_srcdir)/libgaim \
|
14286
|
96 -DVERSION=\"$(VERSION)\" \
|
15139
|
97 -DQQ_BUDDY_ICON_DIR=\"$(datadir)/pixmaps/gaim/buddy_icons/qq\" \
|
14286
|
98 $(DEBUG_CFLAGS) \
|
|
99 $(GLIB_CFLAGS) \
|
14192
|
100 $(GAIM_CFLAGS)
|