I am the GQ(ueue) man.
[mono.git] / eglib / test / Makefile.am
1 noinst_PROGRAMS = test-eglib test-glib
2
3 SOURCES = \
4         test.c          \
5         test.h          \
6         tests.h         \
7         driver.c        \
8         hashtable.c     \
9         string-util.c   \
10         string.c        \
11         slist.c         \
12         sizes.c         \
13         ptrarray.c      \
14         list.c          \
15         array.c         \
16         fake.c          \
17         queue.c
18
19 test_eglib_SOURCES = $(SOURCES)
20 test_glib_SOURCES = $(SOURCES)
21
22 test_eglib_CFLAGS = -Wall -Werror -D_FORTIFY_SOURCE=2 -I$(srcdir)/../src -DDRIVER_NAME=\"EGlib\"
23 test_eglib_LDADD = -L../src -leglib
24
25 test_glib_CFLAGS = `pkg-config --cflags glib-2.0` -DDRIVER_NAME=\"GLib\"
26 test_glib_LDFLAGS = `pkg-config --libs glib-2.0`
27
28 MAINTAINERCLEANFILES = Makefile.in
29