view src/protocols/rendezvous/Makefile.am @ 9618:848e5fbcd520

[gaim-migrate @ 10462] (11:27:49) nosnilmot: LSchiere: I regenerated the text FAQ and brought the man page up to date with the preference changes once again, nosnilmot is picking up the slack and doing things i should have done :-) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 31 Jul 2004 15:27:39 +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)