comparison libpurple/protocols/null/Makefile.am @ 17453:afee8b840d91

this patch adds nullprpl, a mock protocol plugin, to the libpurple/protocols directory Closes #811 committer: Richard Laager <rlaager@wiktel.com>
author Ryan Barrett <ryanbarrett@users.sourceforge.net>
date Wed, 30 May 2007 01:21:36 +0000
parents
children 2b62300d2c19
comparison
equal deleted inserted replaced
17447:1a1d9cf5cd79 17453:afee8b840d91
1 EXTRA_DIST = README Makefile.mingw
2
3 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
4
5 NULLSOURCES = nullprpl.c
6
7 AM_CFLAGS = $(st)
8
9 libnull_la_LDFLAGS = -module -avoid-version
10
11 # nullprpl isn't built by default. when it is built, it's dynamically linked.
12 st =
13 pkg_LTLIBRARIES = libnull.la
14 libnull_la_SOURCES = $(NULLSOURCES)
15 libnull_la_LIBADD = $(GLIB_LIBS)
16
17 AM_CPPFLAGS = \
18 -I$(top_srcdir)/libpurple \
19 -I$(top_builddir)/libpurple \
20 $(GLIB_CFLAGS) \
21 $(DEBUG_CFLAGS)