X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=Makefile;h=7d1fe86e9f7525d1d2c2687e6f4358536482a061;hb=de68be10ae8d84f85431c704bb06d89e4d93cc98;hp=249504ae76cf416647a7f11d2e8c39e403e89fd1;hpb=6c50b11e5b8e72781db4195d8472bb7d542c1d3c;p=WebThing.git diff --git a/Makefile b/Makefile index 249504a..7d1fe86 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ 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: @@ -13,7 +13,7 @@ tags: 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 PluginManager.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