mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15406 d0543943-73ff-0310-b7d9-9358b9ac24b2
15 lines
626 B
Makefile
15 lines
626 B
Makefile
all: FreeSWITCH.Managed.dll
|
|
|
|
clean:
|
|
rm -fr FreeSWITCH.Managed.dll
|
|
|
|
FreeSWITCH.Managed.dll: AssemblyInfo.cs Extensions.cs Loader.cs Log.cs ManagedSession.cs PluginInterfaces.cs PluginManager.cs ScriptPluginManager.cs swig.cs
|
|
gmcs -target:library -out:FreeSWITCH.Managed.dll AssemblyInfo.cs Extensions.cs Loader.cs Log.cs ManagedSession.cs PluginInterfaces.cs PluginManager.cs ScriptPluginManager.cs ChannelVariables.cs Util.cs swig.cs XmlSearchBinding.cs
|
|
|
|
install: FreeSWITCH.Managed.dll
|
|
$(INSTALL) FreeSWITCH.Managed.dll $(DESTDIR)$(MODINSTDIR)
|
|
|
|
uninstall:
|
|
$(UNINSTALL) $(MODINSTDIR)/FreeSWITCH.Managed.dll
|
|
|