| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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_eglib_SOURCES = $(SOURCES)
- test_eglib_CFLAGS = -Wall -Werror -D_FORTIFY_SOURCE=2 -I$(srcdir)/../src -I../src -DDRIVER_NAME=\"EGlib\"
- test_eglib_LDADD = ../src/libeglib.la -ldl
- 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
|