diff src/protocols/qq/Makefile.am @ 13870:983fd420e86b

[gaim-migrate @ 16340] Performed minor cleanup of the OpenQ codebase and patched it into the Gaim trunk as a prpl, providing basic QQ functionality. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Mon, 26 Jun 2006 02:58:54 +0000
parents
children a1b99fa5faa1
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/protocols/qq/Makefile.am	Mon Jun 26 02:58:54 2006 +0000
@@ -0,0 +1,108 @@
+EXTRA_DIST = \
+		Makefile.mingw
+
+pkgdir = $(libdir)/gaim
+
+QQSOURCES = \
+	utils.c \
+	utils.h \
+	packet_parse.c \
+	packet_parse.h \
+	buddy_info.c \
+	buddy_info.h \
+	buddy_list.c \
+	buddy_list.h \
+	buddy_opt.c \
+	buddy_opt.h \
+	buddy_status.c \
+	buddy_status.h \
+	qq.c \
+	char_conv.c \
+	char_conv.h \
+	crypt.c \
+	crypt.h \
+	group_admindlg.c \
+	group_admindlg.h \
+	group.c \
+	group_conv.c \
+	group_conv.h \
+	group_find.c \
+	group_find.h \
+	group_free.c \
+	group_free.h \
+	group.h \
+	group_hash.c \
+	group_hash.h \
+	group_im.c \
+	group_im.h \
+	group_info.c \
+	group_info.h \
+	group_join.c \
+	group_join.h \
+	group_misc.c \
+	group_misc.h \
+	group_network.c \
+	group_network.h \
+	group_opt.c \
+	group_opt.h \
+	group_search.c \
+	group_search.h \
+	qq.h \
+	header_info.c \
+	header_info.h \
+	im.c \
+	im.h \
+	infodlg.c \
+	infodlg.h \
+	ip_location.c \
+	ip_location.h \
+	keep_alive.c \
+	keep_alive.h \
+	login_logout.c \
+	login_logout.h \
+	qq_proxy.c \
+	qq_proxy.h \
+	recv_core.c \
+	recv_core.h \
+	send_core.c \
+	send_core.h \
+	sendqueue.c \
+	sendqueue.h \
+	show.c \
+	show.h \
+	sys_msg.c \
+	sys_msg.h \
+	udp_proxy_s5.c \
+	udp_proxy_s5.h \
+	send_file.c \
+	send_file.h \
+	file_trans.c \
+	file_trans.h
+
+AM_CFLAGS = $(st)
+
+libqq_la_LDFLAGS = -module -avoid-version
+
+if STATIC_QQ
+
+st = -DGAIM_STATIC_PRPL
+noinst_LIBRARIES = libqq.a
+libqq_a_SOURCES  = $(QQSOURCES)
+libqq_a_CFLAGS   = $(AM_CFLAGS)
+
+else
+
+st =
+pkg_LTLIBRARIES  = libqq.la
+libqq_la_SOURCES = $(QQSOURCES)
+
+endif
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/src \
+	-DDATADIR=\"${datadir}\" \
+        -DVERSION=\"$(VERSION)\" \
+        $(DEBUG_CFLAGS) \
+        $(GTK_CFLAGS) \
+        $(GLIB_CFLAGS) \
+	$(GAIM_CFLAGS)