14192
|
1 EXTRA_DIST = \
|
|
2 Makefile.mingw
|
|
3
|
|
4 pkgdir = $(libdir)/gaim
|
|
5
|
|
6 QQSOURCES = \
|
|
7 utils.c \
|
|
8 utils.h \
|
|
9 packet_parse.c \
|
|
10 packet_parse.h \
|
|
11 buddy_info.c \
|
|
12 buddy_info.h \
|
|
13 buddy_list.c \
|
|
14 buddy_list.h \
|
|
15 buddy_opt.c \
|
|
16 buddy_opt.h \
|
|
17 buddy_status.c \
|
|
18 buddy_status.h \
|
|
19 qq.c \
|
|
20 char_conv.c \
|
|
21 char_conv.h \
|
|
22 crypt.c \
|
|
23 crypt.h \
|
|
24 group.c \
|
14404
|
25 group.h \
|
14192
|
26 group_conv.c \
|
|
27 group_conv.h \
|
|
28 group_find.c \
|
|
29 group_find.h \
|
|
30 group_free.c \
|
|
31 group_free.h \
|
14404
|
32 group_internal.c \
|
|
33 group_internal.h \
|
14192
|
34 group_im.c \
|
|
35 group_im.h \
|
|
36 group_info.c \
|
|
37 group_info.h \
|
|
38 group_join.c \
|
|
39 group_join.h \
|
|
40 group_misc.c \
|
|
41 group_misc.h \
|
|
42 group_network.c \
|
|
43 group_network.h \
|
|
44 group_opt.c \
|
|
45 group_opt.h \
|
|
46 group_search.c \
|
|
47 group_search.h \
|
|
48 qq.h \
|
|
49 header_info.c \
|
|
50 header_info.h \
|
|
51 im.c \
|
|
52 im.h \
|
|
53 keep_alive.c \
|
|
54 keep_alive.h \
|
|
55 login_logout.c \
|
|
56 login_logout.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 sendqueue.c \
|
|
64 sendqueue.h \
|
|
65 sys_msg.c \
|
|
66 sys_msg.h \
|
|
67 udp_proxy_s5.c \
|
|
68 udp_proxy_s5.h \
|
|
69 send_file.c \
|
|
70 send_file.h \
|
|
71 file_trans.c \
|
|
72 file_trans.h
|
|
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)\" \
|
|
97 -DDATADIR=\"$(datadir)\" \
|
|
98 $(DEBUG_CFLAGS) \
|
|
99 $(GLIB_CFLAGS) \
|
14192
|
100 $(GAIM_CFLAGS)
|