view src/protocols/rendezvous/Makefile.am @ 9846:c28d5b45624e

[gaim-migrate @ 10724] A patch from Nathan Fredrickson that should make Gaim not play sounds for people joining chats when you join chat. Um, his explanation is better: http://sourceforge.net/tracker/index.php?func=detail&aid=1008904&group_id=235&atid=300235 committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 24 Aug 2004 04:12:28 +0000
parents fe9f4eee3dcb
children 8bc7ba019e96
line wrap: on
line source

EXTRA_DIST = \
		Makefile.mingw

pkgdir = $(libdir)/gaim

RENDEZVOUSSOURCES = \
	mdns.c \
	mdns.h \
	mdns_cache.c \
	mdns_cache.h \
	rendezvous.c

AM_CFLAGS = $(st)

librendezvous_la_LDFLAGS = -module -avoid-version

if STATIC_RENDEZVOUS

st = -DGAIM_STATIC_PRPL
noinst_LIBRARIES     = librendezvous.a
librendezvous_a_SOURCES = $(RENDEZVOUSSOURCES)
librendezvous_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES       = librendezvous.la
librendezvous_la_SOURCES = $(RENDEZVOUSSOURCES)

endif


AM_CPPFLAGS = \
	-I$(top_srcdir)/src \
	$(GLIB_CFLAGS) \
	$(DEBUG_CFLAGS)