view libpurple/plugins/mono/api/Makefile.am @ 22576:e4b2cbc246da

I'm tired of installing pixmap data that almost never changes. I'm so tired of it, in fact, that I decided to add the ability to disable pixmap installation to our configure script. For the two of us that actually wanted it, here it is.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 30 Mar 2008 00:19:07 +0000
parents ce049678a67b
children
line wrap: on
line source

monodir=$(libdir)/purple-$(PURPLE_MAJOR_VERSION)

mono_sources = \
	BlistNode.cs \
	BuddyList.cs \
	Buddy.cs \
	Contact.cs \
	Debug.cs \
	Event.cs \
	PurplePlugin.cs \
	Group.cs \
	Signal.cs \
	Status.cs

EXTRA_DIST = $(mono_sources)

mono_SCRIPTS = PurpleAPI.dll

mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))

all: $(mono_SCRIPTS)

$(mono_SCRIPTS): $(mono_build_sources)
	mcs -t:library -out:$(mono_SCRIPTS) $(mono_build_sources)

clean-local:
	rm -rf $(mono_SCRIPTS)