]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix DLL name in Makefile
authorMichael Giagnocavo <mgg@giagnocavo.net>
Thu, 15 Jan 2009 05:36:45 +0000 (05:36 +0000)
committerMichael Giagnocavo <mgg@giagnocavo.net>
Thu, 15 Jan 2009 05:36:45 +0000 (05:36 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11218 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/languages/mod_managed/managed/Makefile

index c122c194a5afab4a54023b3d9eb29ee386da0c68..38c64d0e2f248def46e7cb8e49d9669b575dc6fe 100644 (file)
@@ -1,14 +1,14 @@
-all: mod_managed_lib.dll\r
+all: FreeSWITCH.Managed.dll\r
 \r
 clean:\r
-       rm -fr mod_managed_lib.dll\r
+       rm -fr FreeSWITCH.Managed.dll\r
 \r
-mod_managed_lib.dll: Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs\r
-       gmcs -target:library -out:mod_managed_lib.dll -d:DEBUG Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs\r
+FreeSWITCH.Managed.dll: Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs\r
+       gmcs -target:library -out:FreeSWITCH.Managed.dll -d:DEBUG Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs\r
 \r
-install: mod_managed_lib.dll\r
-       $(INSTALL) mod_managed_lib.dll $(DESTDIR)$(MODINSTDIR)\r
+install: FreeSWITCH.Managed.dll\r
+       $(INSTALL) FreeSWITCH.Managed.dll $(DESTDIR)$(MODINSTDIR)\r
 \r
 uninstall:\r
-       $(UNINSTALL) $(MODINSTDIR)/mod_managed_lib.dll\r
+       $(UNINSTALL) $(MODINSTDIR)/FreeSWITCH.Managed.dll\r
 \r