summaryrefslogtreecommitdiffstats
path: root/guththila/tests/s
diff options
context:
space:
mode:
Diffstat (limited to 'guththila/tests/s')
-rwxr-xr-xguththila/tests/s13
1 files changed, 13 insertions, 0 deletions
diff --git a/guththila/tests/s b/guththila/tests/s
new file mode 100755
index 0000000..7e9f4f8
--- /dev/null
+++ b/guththila/tests/s
@@ -0,0 +1,13 @@
+#!/usr/bin/perl -w
+use strict;
+
+if ($ARGV[0] == 1)
+{
+ print "compiling writer\n";
+ system "gcc -Wall -g3 -O0 -o writer guththila_writer_main.c -L\$AXIS2C_HOME/lib -I\$AXIS2C_HOME/include -lguththila -laxis2_util";
+}
+else
+{
+ print "compiling reader tests \n";
+ system "gcc -Wall -g3 -O0 -o reader *.c \-L\$AXIS2C_HOME/lib \-I\$AXIS2C_HOME/include -lcheck -lguththila \-laxis2_util";
+}