X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=Makefile;h=7d1fe86e9f7525d1d2c2687e6f4358536482a061;hb=2744fefc32dbe9b59a570f6515d51121b8fcfbe3;hp=8cf0ed8dd766338a4c432e9548468f718a5ae88b;hpb=85b244419aec2552d114990aa86900aeac83a7e0;p=WebThing.git diff --git a/Makefile b/Makefile index 8cf0ed8..7d1fe86 100644 --- a/Makefile +++ b/Makefile @@ -4,16 +4,16 @@ LDFLAGS = `pkg-config glib-2.0 libsoup-2.4 webkit-1.0 --libs` CSFLAGS = -debug references = -r:webkit-sharp.dll -pkg:gtk-sharp-2.0 -all: WebThingMain.exe plugins +all: WebThingMain.exe plugins searchplugins .PHONY: tags tags: - ctags --extra=+fq --fields=+ianmzS '--c#-kinds=cimnp' *.cs + ctags --extra=+fq --fields=+ianmzS '--c#-kinds=cimnpfes' *.cs WebThingMain.exe: WebThingMain.cs WebThing.dll SoupSettings.so $(CS) $(CSFLAGS) -r:WebThing.dll -out:$@ WebThingMain.cs -WebThing.dll: WebThing.cs WebThingView.cs WebThingPlugin.cs Config.cs +WebThing.dll: WebThing.cs WebThingView.cs WebThingPlugin.cs Config.cs PluginManager.cs SearchHandler.cs $(CS) $(CSFLAGS) $(references) -target:library -out:$@ $^ SoupSettings.so: SoupSettings.c @@ -22,3 +22,7 @@ SoupSettings.so: SoupSettings.c plugins: make -C plugins .PHONY: plugins + +searchplugins: + make -C searchplugins +.PHONY: searchplugins