Files
libremetaverse/applications/SLProxy/Makefile
axial a4f80b3e7e Adding SLProxy project.
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@74 52acb1d6-8a22-11de-b505-999d5b087335
2006-07-24 03:03:45 +00:00

22 lines
664 B
Makefile

default: library examples
library: SLProxy.dll
examples: ChatConsole.exe Analyst.exe
clean::
rm -f SLProxy.dll ChatConsole.exe Analyst.exe
SLProxy.dll: libsecondlife.dll XmlRpcCS.dll SLProxy.cs
mcs SLProxy.cs -target:library -r:libsecondlife.dll -r:XmlRpcCS.dll
ChatConsole.exe: SLProxy.dll libsecondlife.dll ChatConsole.cs
mcs ChatConsole.cs -r:SLProxy.dll -r:libsecondlife.dll
Analyst.exe: SLProxy.dll libsecondlife.dll Analyst.cs
mcs Analyst.cs -r:SLProxy.dll -r:libsecondlife.dll
libsecondlife.dll:
@echo Please place a copy of libsecondlife.dll in this folder.; false
XmlRpcCS.dll:
@echo Please place a copy of XmlRpcCS.dll in this folder.; false