You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by du...@apache.org on 2007/03/26 13:14:49 UTC

svn commit: r522483 - in /webservices/axis2/trunk/c/samples: client/echo/ client/google/ client/math/ client/mtom/ client/notify/ client/yahoo/ server/Calculator/ server/echo/ server/math/ server/mtom/ server/notify/ server/sg_math/ user_guide/clients/

Author: dushshantha
Date: Mon Mar 26 04:14:48 2007
New Revision: 522483

URL: http://svn.apache.org/viewvc?view=rev&rev=522483
Log:
added nmake files as a fix for the jira http://issues.apache.org/jira/browse/AXIS2C-503

Added:
    webservices/axis2/trunk/c/samples/client/echo/echo.mk
    webservices/axis2/trunk/c/samples/client/google/google.mk
    webservices/axis2/trunk/c/samples/client/math/math.mk
    webservices/axis2/trunk/c/samples/client/mtom/mtom.mk
    webservices/axis2/trunk/c/samples/client/notify/notify.mk
    webservices/axis2/trunk/c/samples/client/yahoo/yahoo.mk
    webservices/axis2/trunk/c/samples/server/Calculator/Calculator.mk
    webservices/axis2/trunk/c/samples/server/echo/echo.mk
    webservices/axis2/trunk/c/samples/server/math/math.mk
    webservices/axis2/trunk/c/samples/server/mtom/mtom.mk
    webservices/axis2/trunk/c/samples/server/notify/notify.mk
    webservices/axis2/trunk/c/samples/server/sg_math/sg_math.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_addr.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_dual.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_soap11.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking_dual.mk
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_rest.mk

Added: webservices/axis2/trunk/c/samples/client/echo/echo.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/echo/echo.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/client/echo/echo.mk (added)
+++ webservices/axis2/trunk/c/samples/client/echo/echo.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo echo.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/client/google/google.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/google/google.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/client/google/google.mk (added)
+++ webservices/axis2/trunk/c/samples/client/google/google.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:google.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/client/math/math.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/math/math.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/client/math/math.mk (added)
+++ webservices/axis2/trunk/c/samples/client/math/math.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:math.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/client/mtom/mtom.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/mtom/mtom.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/client/mtom/mtom.mk (added)
+++ webservices/axis2/trunk/c/samples/client/mtom/mtom.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:mtom.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/client/notify/notify.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/notify/notify.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/client/notify/notify.mk (added)
+++ webservices/axis2/trunk/c/samples/client/notify/notify.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:notify.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/client/yahoo/yahoo.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/yahoo/yahoo.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/client/yahoo/yahoo.mk (added)
+++ webservices/axis2/trunk/c/samples/client/yahoo/yahoo.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:yahoo.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/server/Calculator/Calculator.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/Calculator/Calculator.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/server/Calculator/Calculator.mk (added)
+++ webservices/axis2/trunk/c/samples/server/Calculator/Calculator.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,7 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "AXIS2_DECLARE_EXPORT" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:Calculator.dll
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/server/echo/echo.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/echo/echo.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/server/echo/echo.mk (added)
+++ webservices/axis2/trunk/c/samples/server/echo/echo.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:echo.dll
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/server/math/math.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/math/math.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/server/math/math.mk (added)
+++ webservices/axis2/trunk/c/samples/server/math/math.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,7 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "AXIS2_DECLARE_EXPORT" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:math.dll
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/server/mtom/mtom.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/mtom/mtom.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/server/mtom/mtom.mk (added)
+++ webservices/axis2/trunk/c/samples/server/mtom/mtom.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:mtom.dll
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/server/notify/notify.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/notify/notify.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/server/notify/notify.mk (added)
+++ webservices/axis2/trunk/c/samples/server/notify/notify.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" *.C /I.\..\..\..\include /c
+	@link.exe /nologo *.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:notify.dll
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/server/sg_math/sg_math.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/sg_math/sg_math.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/server/sg_math/sg_math.mk (added)
+++ webservices/axis2/trunk/c/samples/server/sg_math/sg_math.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,15 @@
+echo:
+	@cl.exe /nologo /D "WIN32" /D "AXIS2_DECLARE_EXPORT" /D "_WINDOWS" /D "_MBCS" add.c add_skeleton.c /I.\..\..\..\include /c
+	@link.exe /nologo add.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:add.dll
+
+	
+	@cl.exe /nologo /D "WIN32" /D "AXIS2_DECLARE_EXPORT" /D "_WINDOWS" /D "_MBCS" div.c div_skeleton.c /I.\..\..\..\include /c
+	@link.exe /nologo div.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:div.dll
+
+
+	@cl.exe /nologo /D "WIN32" /D "AXIS2_DECLARE_EXPORT" /D "_WINDOWS" /D "_MBCS" sub.c sub_skeleton.c /I.\..\..\..\include /c
+	@link.exe /nologo sub.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:sub.dll
+
+
+	@cl.exe /nologo /D "WIN32" /D "AXIS2_DECLARE_EXPORT" /D "_WINDOWS" /D "_MBCS" mul.c mul_skeleton.c /I.\..\..\..\include /c
+	@link.exe /nologo mul.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /DLL /OUT:mul.dll

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_blocking.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_blocking.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_blocking.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_addr.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_addr.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_addr.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_addr.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_blocking_addr.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_blocking_addr.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_blocking_addr.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_dual.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_dual.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_dual.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_dual.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_blocking_dual.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_blocking_dual.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_blocking_dual.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_soap11.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_soap11.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_soap11.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking_soap11.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_blocking_soap11.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_blocking_soap11.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_blocking_soap11.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_non_blocking.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_non_blocking.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_non_blocking.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking_dual.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking_dual.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking_dual.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_non_blocking_dual.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_non_blocking_dual.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_non_blocking_dual.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_non_blocking_dual.exe
+
+	
+
+
+

Added: webservices/axis2/trunk/c/samples/user_guide/clients/echo_rest.mk
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/user_guide/clients/echo_rest.mk?view=auto&rev=522483
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_rest.mk (added)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_rest.mk Mon Mar 26 04:14:48 2007
@@ -0,0 +1,8 @@
+echo: 
+	@cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" echo_rest.C echo_util.c /I.\..\..\..\include /c
+	@link.exe /nologo echo_rest.obj echo_util.obj /LIBPATH:.\..\..\..\lib axiom.lib axis2_util.lib axis2_engine.lib axis2_parser.lib /OUT:echo_rest.exe
+
+	
+
+
+



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org