all: PluginDialogPlugin.dll

ASSEMBLIES = \
	-pkg:f-spot \
	-pkg:glade-sharp-2.0 \
	-pkg:gtk-sharp-2.0 \
	-r:Mono.Posix

RESOURCES = \
	-resource:plugindialog.glade

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

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

clean:
	rm -f *.dll *~

