Getting useful...
[WebThing.git] / Makefile
1 CSFLAGS = -debug
2 references = -r:webkit-sharp.dll -pkg:gtk-sharp-2.0
3
4 all: main.exe plugins
5
6 main.exe: main.cs WebThing.dll
7         gmcs $(CSFLAGS) -r:WebThing.dll main.cs
8
9 WebThing.dll: WebThing.cs
10         gmcs $(CSFLAGS) $(references) -target:library -out:$@ $<
11
12 plugins:
13         make -C plugins
14
15 .PHONY: plugins