all: SendMailExtension.dll

ASSEMBLIES = \
	-pkg:f-spot -pkg:gnome-sharp-2.0

RESOURCES = 

install: all
	cp *.dll ~/.gnome2/f-spot/extensions

%.dll: %.cs
	mcs -target:library $(ASSEMBLIES) $(RESOURCES)  $<

clean:
	rm -f *.dll *~

