aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjames <>2008-02-03 16:20:24 +0000
committerjames <>2008-02-03 16:20:24 +0000
commit4163308ecae26c76d22e4cc80d8bae729b06b94f (patch)
tree5d72762d62aaf3e8843123a967280623e3bd0f64 /test
downloadsympathy-4163308ecae26c76d22e4cc80d8bae729b06b94f.tar.gz
sympathy-4163308ecae26c76d22e4cc80d8bae729b06b94f.tar.bz2
sympathy-4163308ecae26c76d22e4cc80d8bae729b06b94f.zip
*** empty log message ***
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am25
-rw-r--r--test/test.c24
2 files changed, 49 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
new file mode 100644
index 0000000..d6d65fc
--- /dev/null
+++ b/test/Makefile.am
@@ -0,0 +1,25 @@
+#
+# Makefile.am:
+#
+# Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
+# All rights reserved.
+#
+# $Id$
+#
+# $Log$
+# Revision 1.1 2008/02/03 16:20:24 james
+# *** empty log message ***
+#
+#
+#
+
+INCLUDES = -I$(srcdir)/../src
+
+noinst_PROGRAMS = test
+
+test_SOURCES = test.c
+test_LDADD = ../src/libsympathy.a
+
+AM_CFLAGS=-g
+
+
diff --git a/test/test.c b/test/test.c
new file mode 100644
index 0000000..cc865df
--- /dev/null
+++ b/test/test.c
@@ -0,0 +1,24 @@
+/*
+ * test.c:
+ *
+ * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
+ * All rights reserved.
+ *
+ */
+
+static char rcsid[] = "$Id$";
+
+/*
+ * $Log$
+ * Revision 1.1 2008/02/03 16:20:24 james
+ * *** empty log message ***
+ *
+ */
+
+#include "sympathy.h"
+
+int main(int argc,char *argv[])
+{
+
+return 0;
+}