Move .so's to lib/
authorChip Black <bytex64@bytex64.net>
Mon, 4 Jan 2010 09:03:09 +0000 (03:03 -0600)
committerChip Black <bytex64@bytex64.net>
Mon, 4 Jan 2010 09:03:09 +0000 (03:03 -0600)
Makefile

index 7d1fe86..7b59104 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,13 +10,13 @@ all: WebThingMain.exe plugins searchplugins
 tags:
        ctags --extra=+fq --fields=+ianmzS '--c#-kinds=cimnpfes' *.cs
 
-WebThingMain.exe: WebThingMain.cs WebThing.dll SoupSettings.so
+WebThingMain.exe: WebThingMain.cs WebThing.dll lib/SoupSettings.so
        $(CS) $(CSFLAGS) -r:WebThing.dll -out:$@ WebThingMain.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
+lib/SoupSettings.so: SoupSettings.c
        $(CC) $(CFLAGS) -shared $(LDFLAGS) $< -o $@
 
 plugins: