commit:244a23ca48e6cf2d863870f5a9e4253693183ad5
author:Chip Black
committer:Chip Black
date:Mon Jan 4 03:03:09 2010 -0600
parents:2744fefc32dbe9b59a570f6515d51121b8fcfbe3
Move .so's to lib/
diff --git a/Makefile b/Makefile
line changes: +2/-2
index 7d1fe86..7b59104
--- 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: