1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
EXTRA_DIST = file_crc.txt test_common.h test_template.c
INCLUDES = -I$(top_srcdir)
LDADD = @DL_FLAGS@ @CRYPT_FLAGS@ ../libwzd-core/libwzd_core.la
common_files = \
fake_backend.c \
fake_backend.h \
test_common.c \
test_common.h
test_programs = \
test_list \
test_wzd_action \
test_wzd_backend \
test_wzd_cache \
test_wzd_configfile \
test_wzd_cookies \
test_wzd_crc32 \
test_wzd_crontab \
test_wzd_dir \
test_wzd_events \
test_wzd_fs \
test_wzd_group \
test_wzd_ip \
test_wzd_log \
test_wzd_ratio \
test_wzd_section \
test_wzd_string \
test_wzd_structs \
test_wzd_threads \
test_wzd_user \
test_wzd_vfs
check_PROGRAMS = $(test_programs)
TESTS = $(test_programs)
test_wzd_backend_SOURCES = test_wzd_backend.c $(common_files)
test_wzd_cookies_SOURCES = test_wzd_cookies.c $(common_files)
test_wzd_dir_SOURCES = test_wzd_dir.c $(common_files)
test_wzd_events_SOURCES = test_wzd_events.c $(common_files)
test_wzd_group_SOURCES = test_wzd_group.c $(common_files)
test_wzd_ratio_SOURCES = test_wzd_ratio.c $(common_files)
test_wzd_string_SOURCES = test_wzd_string.c $(common_files)
test_wzd_user_SOURCES = test_wzd_user.c $(common_files)
|