45 lines
766 B
Makefile
45 lines
766 B
Makefile
|
EXTRA_DIST = UTF-8.txt UTF-16BE.txt UTF-16LE.txt UTF-32BE.txt UTF-32LE.txt
|
||
|
|
||
|
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 -DEGLIB_TESTS=1 -D_FORTIFY_SOURCE=2 -I$(srcdir)/../src -I../src -DDRIVER_NAME=\"EGlib\"
|
||
|
test_eglib_LDADD = ../src/libeglib.la $(LIBICONV)
|
||
|
|
||
|
run-eglib: all
|
||
|
srcdir=`readlink -f $(srcdir)` ./test-eglib
|
||
|
|
||
|
noinst_PROGRAMS = test-eglib
|
||
|
|
||
|
run-both: run-eglib
|
||
|
|
||
|
MAINTAINERCLEANFILES = Makefile.in
|