Author: pini
Date: Wed Jun 14 21:25:45 2006
New Revision: 414458
URL: http://svn.apache.org/viewvc?rev=414458&view=rev
Log:
added tests to default build.
Modified:
webservices/axis2/trunk/c/xml_schema/Makefile.am
webservices/axis2/trunk/c/xml_schema/configure.ac
Modified: webservices/axis2/trunk/c/xml_schema/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/Makefile.am?rev=414458&r1=414457&r2=414458&view=diff
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/Makefile.am (original)
+++ webservices/axis2/trunk/c/xml_schema/Makefile.am Wed Jun 14 21:25:45 2006
@@ -1,3 +1,9 @@
TESTS =
-SUBDIRS = src samples
+SUBDIRS = src $(TESTDIR) samples
+include_HEADERS=$(top_builddir)/include/*.h
+EXTRA_DIST = build.sh autogen.sh LICENSE
+dist-hook:
+ rm -rf `find $(distdir)/ -type d -name .svn`
+ rm -rf `find $(distdir)/ -type d -name .deps`
+
Modified: webservices/axis2/trunk/c/xml_schema/configure.ac
URL:
http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/configure.ac?rev=414458&r1=414457&r2=414458&view=diff
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/configure.ac (original)
+++ webservices/axis2/trunk/c/xml_schema/configure.ac Wed Jun 14 21:25:45 2006
@@ -84,6 +84,23 @@
AC_MSG_RESULT(no)
)
+AC_MSG_CHECKING(whether to build tests)
+AC_ARG_ENABLE(tests, [ --enable-tests build tests. default=yes],
+[ case "${enableval}" in
+ no)
+ AC_MSG_RESULT(no)
+ TESTDIR=""
+ ;;
+ *)
+ AC_MSG_RESULT(yes)
+ TESTDIR="test"
+
+ ;;
+ esac ],
+ AC_MSG_RESULT(yes)
+ TESTDIR="test"
+)
+
UTILINC=$axis2_utilinc
AXIOMINC=$axiominc
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]