view plugins/mono/api/Makefile.am @ 13135:7fd39c81d5e9

[gaim-migrate @ 15497] Rest of SF Patch #1417219 from Sadrul "Also, loading/unloading plugins gives errors in the debug-window. Register/unregistering the plugins when they are created and destroyed seem to quiet it down. Turns out, the same is done for all the other core-subtypes." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 06 Feb 2006 07:53:51 +0000
parents 67fbd2ff4c4e
children
line wrap: on
line source

monodir=$(libdir)/gaim
mono_sources = \
	GaimPlugin.cs \
	Debug.cs \
	BuddyList.cs \
	Buddy.cs \
	Signal.cs \
	Event.cs \
	Status.cs

EXTRA_DIST = $(mono_sources)

mono_SCRIPTS = GaimAPI.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)