comparison src/protocols/yahoo/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 5df423e0bca8
children fcc28f5dd0c8
comparison
equal deleted inserted replaced
4201:511c2b63caa4 4202:59751fe608c5
1 EXTRA_DIST = md5.h
2
3 pkgdir = $(libdir)/gaim 1 pkgdir = $(libdir)/gaim
4 2
5 CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) 3 YAHOOSOURCES = \
4 crypt.c \
5 md5.h \
6 yahoo.c
7
8 AM_CFLAGS = $(st)
9
6 libyahoo_la_LDFLAGS = -module -avoid-version 10 libyahoo_la_LDFLAGS = -module -avoid-version
7 11
8 if STATIC_YAHOO 12 if STATIC_YAHOO
9 13
10 st = -DSTATIC 14 st = -DSTATIC
11 pkg_LTLIBRARIES = 15 noinst_LIBRARIES = libyahoo.a
12 noinst_LIBRARIES = libyahoo.a 16 libyahoo_a_SOURCES = $(YAHOOSOURCES)
13 17 libyahoo_a_CFLAGS = $(AM_CFLAGS)
14 libyahoo_a_SOURCES = crypt.c yahoo.c
15
16 libyahoo_a_CFLAGS = $(AM_CFLAGS)
17 18
18 else 19 else
19 20
20 st = 21 st =
21 pkg_LTLIBRARIES = libyahoo.la 22 pkg_LTLIBRARIES = libyahoo.la
22 noinst_LIBRARIES = 23 libyahoo_la_SOURCES = $(YAHOOSOURCES)
23
24 libyahoo_la_SOURCES = crypt.c yahoo.c
25 24
26 endif 25 endif
26
27 AM_CPPFLAGS = \
28 -I$(top_srcdir)/src \
29 $(DEBUG_CFLAGS)