view plugins/mono/Makefile.am @ 13948:11434fa0ca22

[gaim-migrate @ 16489] Patch from sadrul for: If you have a markup "abc </i> def", then the "def" part of the message shows up in italic. The same error happens for broken markup for underline/bold attributes. This patch is a fix that. Compiles fine here... committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Wed, 12 Jul 2006 23:52:56 +0000
parents c9312177821a
children
line wrap: on
line source

SUBDIRS = api loader

mono_sources = GetBuddyBack.cs \
			   MPlugin.cs

EXTRA_DIST = $(mono_sources)

monodir = $(libdir)/gaim
mono_SCRIPTS = MPlugin.dll GetBuddyBack.dll
mono_build_sources = $(addprefix $(srcdir)/, $(mono_sources))

all: $(mono_SCRIPTS)

SUFFIXES = .cs .dll
.cs.dll: api/GaimAPI.dll $(mono_build_sources)
	mcs -t:library -lib:./api -out:$@ -r:GaimAPI.dll $<

clean-local:
	rm -f $(mono_SCRIPTS)