From: Michael Giagnocavo Date: Thu, 15 Jan 2009 05:36:45 +0000 (+0000) Subject: Fix DLL name in Makefile X-Git-Tag: v1.0.3~726 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21cdd48aa6e7c95bd2532daad17798cab0645cb0;p=thirdparty%2Ffreeswitch.git Fix DLL name in Makefile git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11218 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/languages/mod_managed/managed/Makefile b/src/mod/languages/mod_managed/managed/Makefile index c122c194a5..38c64d0e2f 100644 --- a/src/mod/languages/mod_managed/managed/Makefile +++ b/src/mod/languages/mod_managed/managed/Makefile @@ -1,14 +1,14 @@ -all: mod_managed_lib.dll +all: FreeSWITCH.Managed.dll clean: - rm -fr mod_managed_lib.dll + rm -fr FreeSWITCH.Managed.dll -mod_managed_lib.dll: Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs - 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 +FreeSWITCH.Managed.dll: Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs + 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 -install: mod_managed_lib.dll - $(INSTALL) mod_managed_lib.dll $(DESTDIR)$(MODINSTDIR) +install: FreeSWITCH.Managed.dll + $(INSTALL) FreeSWITCH.Managed.dll $(DESTDIR)$(MODINSTDIR) uninstall: - $(UNINSTALL) $(MODINSTDIR)/mod_managed_lib.dll + $(UNINSTALL) $(MODINSTDIR)/FreeSWITCH.Managed.dll