Mercurial > pidgin.yaz
annotate src/protocols/trepia/Makefile.am @ 5927:04dc7fe68889
[gaim-migrate @ 6367]
Another crisp patch from Ryan McCabe (odin). This one makes libfaim act less
sucky in the event of some weird connection problems (read: rare shizzle).
Also some header and compile warning cleanup.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 20 Jun 2003 04:16:23 +0000 |
parents | 99ae9bd8b5fa |
children | 2e23ccbccdec |
rev | line source |
---|---|
5730 | 1 pkgdir = $(libdir)/gaim |
2 | |
3 TREPIASOURCES = \ | |
4 md5.h \ | |
5 profile.c \ | |
6 profile.h \ | |
7 trepia.c | |
8 | |
9 AM_CFLAGS = $(st) | |
10 | |
11 libtrepia_la_LDFLAGS = -module -avoid-version | |
12 | |
13 if STATIC_TREPIA | |
14 | |
15 st = -DSTATIC | |
16 noinst_LIBRARIES = libtrepia.a | |
17 libtrepia_a_SOURCES = $(TREPIASOURCES) | |
18 libtrepia_a_CFLAGS = $(AM_CFLAGS) | |
19 | |
20 else | |
21 | |
22 st = | |
23 pkg_LTLIBRARIES = libtrepia.la | |
24 libtrepia_la_SOURCES = $(TREPIASOURCES) | |
25 | |
26 endif | |
27 | |
28 AM_CPPFLAGS = \ | |
29 -I$(top_srcdir)/src \ | |
30 $(DEBUG_CFLAGS) |