diff src/protocols/icq/Makefile.am @ 4202:59751fe608c5

[gaim-migrate @ 4438] Much needed Makefile.am cleanups. Sorry for the large mass of commit e-mails, everyone. These changes should work on older versions of automake and newer versions. If you do have a problem, let me know, but it should be a smooth transition. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 05 Jan 2003 03:02:55 +0000
parents e9a89676d120
children 2e23ccbccdec
line wrap: on
line diff
--- a/src/protocols/icq/Makefile.am	Sat Jan 04 21:01:32 2003 +0000
+++ b/src/protocols/icq/Makefile.am	Sun Jan 05 03:02:55 2003 +0000
@@ -1,59 +1,67 @@
-EXTRA_DIST =	AUTHORS \
-		COPYING \
-		ChangeLog \
-		INSTALL \
-		README \
-		VERSION
+EXTRA_DIST = \
+	AUTHORS \
+	COPYING \
+	ChangeLog \
+	INSTALL \
+	README \
+	VERSION
 
 pkgdir = $(libdir)/gaim
 
-CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS)
+ICQSOURCES = \
+	chatsession.c \
+	chatsession.h \
+	contacts.c \
+	contacts.h \
+	cyrillic.c \
+	eventhandle.c \
+	eventhandle.h \
+	filesession.c \
+	filesession.h \
+	icq.h \
+	icqbyteorder.c \
+	icqbyteorder.h \
+	icqevent.c \
+	icqevent.h \
+	icqlib.c \
+	icqlib.h \
+	icqpacket.c \
+	icqpacket.h \
+	icqtypes.h \
+	list.c \
+	list.h \
+	proxy.c \
+	queue.c \
+	queue.h \
+	socketmanager.c \
+	socketmanager.h \
+	stdpackets.c \
+	stdpackets.h \
+	tcp.c \
+	tcp.h \
+	tcpchathandle.c \
+	tcpfilehandle.c \
+	tcphandle.c \
+	tcplink.c \
+	tcplink.h \
+	timeout.c \
+	timeout.h \
+	udp.c \
+	udp.h \
+	udphandle.c \
+	util.c \
+	util.h \
+	gaim_icq.c
+
+AM_CFLAGS = $(st)
+
 libicq_la_LDFLAGS =	-module -avoid-version
 
 st =
 pkg_LTLIBRARIES = libicq.la
-noinst_LIBRARIES =
+
+libicq_la_SOURCES =	$(ICQSOURCES)
 
-libicq_la_SOURCES =	chatsession.c \
-			chatsession.h \
-			contacts.c \
-			contacts.h \
-			cyrillic.c \
-			eventhandle.c \
-			eventhandle.h \
-			filesession.c \
-			filesession.h \
-			icq.h \
-			icqbyteorder.c \
-			icqbyteorder.h \
-			icqevent.c \
-			icqevent.h \
-			icqlib.c \
-			icqlib.h \
-			icqpacket.c \
-			icqpacket.h \
-			icqtypes.h \
-			list.c \
-			list.h \
-			proxy.c \
-			queue.c \
-			queue.h \
-			socketmanager.c \
-			socketmanager.h \
-			stdpackets.c \
-			stdpackets.h \
-			tcp.c \
-			tcp.h \
-			tcpchathandle.c \
-			tcpfilehandle.c \
-			tcphandle.c \
-			tcplink.c \
-			tcplink.h \
-			timeout.c \
-			timeout.h \
-			udp.c \
-			udp.h \
-			udphandle.c \
-			util.c \
-			util.h \
-			gaim_icq.c
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/src \
+	$(DEBUG_CFLAGS)