all: DummyExtension.dll

ASSEMBLIES = \
	-pkg:f-spot

RESOURCES = 

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

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

clean:
	rm -f *.dll *~

