Re-tabinated C# files
[WebThing.git] / plugins / Makefile
1 CSFLAGS = -debug
2 references = -r:../webkit-sharp.dll -pkg:gtk-sharp-2.0
3
4 all: Vimish.dll FFNav.dll DefaultPage.dll LoadProgress.dll
5
6 clean:
7         rm -f *.dll *.mdb *.so
8         make -C SoupSettings clean
9
10 .PHONY: SoupSettings.dll
11 SoupSettings.dll: 
12         make -C SoupSettings
13
14 %.dll: %.cs ../WebThing.dll
15         gmcs $(CSFLAGS) $(references) -r:../WebThing.dll -target:library -out:$@ $<