New tests.
[mono.git] / eglib / test / Makefile.am
index 97e680edd5520929c30ccb0c0247257fd611b1d8..3411ef90b4afa7c0c2592ab28c0384c1c2a8669a 100644 (file)
@@ -1,10 +1,60 @@
-noinst_PROGRAMS = test
+SOURCES = \
+       test.c          \
+       test.h          \
+       tests.h         \
+       driver.c        \
+       hashtable.c     \
+       string-util.c   \
+       string.c        \
+       slist.c         \
+       sizes.c         \
+       ptrarray.c      \
+       list.c          \
+       array.c         \
+       fake.c          \
+       path.c          \
+       queue.c         \
+       shell.c         \
+       spawn.c         \
+       timer.c         \
+       file.c          \
+       pattern.c       \
+       dir.c           \
+       markup.c        \
+       unicode.c       \
+       utf8.c          \
+       endian.c        \
+       module.c        \
+       memory.c
 
-test_SOURCES = \
-       test.h          \
-       driver.c        \
-       hash.c
+test_eglib_SOURCES = $(SOURCES)
 
-INCLUDES = -I../src
+test_eglib_CFLAGS = -Wall -Werror -D_FORTIFY_SOURCE=2 -I$(srcdir)/../src -I../src -DDRIVER_NAME=\"EGlib\"
+test_eglib_LDADD = ../src/libeglib.la
 
-test_LDADD = -L../src -leglib
\ No newline at end of file
+run-eglib: all
+       ./test-eglib
+
+if HAVE_GLIB
+
+noinst_PROGRAMS = test-glib test-eglib
+
+test_glib_SOURCES = $(SOURCES)
+
+test_glib_CFLAGS = `pkg-config --cflags glib-2.0` -DDRIVER_NAME=\"GLib\"
+test_glib_LDFLAGS = `pkg-config --libs glib-2.0 gmodule-2.0`
+
+run-glib: all
+       ./test-glib
+
+run-both: run-glib run-eglib
+
+else
+
+noinst_PROGRAMS = test-eglib
+
+run-both: run-eglib
+
+endif
+
+MAINTAINERCLEANFILES = Makefile.in