comparison src/protocols/bonjour/Makefile.am @ 11477:36f575351c49

[gaim-migrate @ 13719] Commit the Bonjour code from oldstatus to HEAD. It hasn't been updated for the new status code yet. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 09 Sep 2005 12:34:27 +0000
parents
children d8be45dfa316
comparison
equal deleted inserted replaced
11476:5d3f8d9e8f92 11477:36f575351c49
1 EXTRA_DIST = \
2 Makefile.mingw
3
4 pkgdir = $(libdir)/gaim
5
6 BONJOURSOURCES = \
7 bonjour.c \
8 buddy.c \
9 dns_sd.c \
10 jabber.c
11
12 AM_CFLAGS = $(st)
13
14 libbonjour_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(HOWL_LIBS)
15
16 if STATIC_BONJOUR
17
18 st = -DGAIM_STATIC_PRPL
19 noinst_LIBRARIES = libbonjour.a
20 libbonjour_a_SOURCES = $(BONJOURSOURCES)
21 libbonjour_a_CFLAGS = $(AM_CFLAGS)
22
23 else
24
25 st =
26 pkg_LTLIBRARIES = libbonjour.la
27 libbonjour_la_SOURCES = $(BONJOURSOURCES)
28
29 endif
30
31
32 AM_CPPFLAGS = \
33 -I$(top_srcdir)/src \
34 $(GLIB_CFLAGS) \
35 $(DEBUG_CFLAGS) \
36 $(HOWL_CFLAGS)