view libpurple/plugins/mono/api/Makefile.am @ 29579:bddc2c8e8b98

Current versions of ICQ will happily scale down large icons to 100x100 (and in some places will scale up small icons). So we should stop scaling-on-send. Any icon between 0x0 and 100x100 is allowed, just like with AIM. Max file size still seems to be 7168.
author Mark Doliner <mark@kingant.net>
date Thu, 11 Mar 2010 06:58:33 +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)