740bac07bd2e0f0470b25bda69f6ba96d6bbec8f
[libacl.git] / test / Makefile.am
1 TESTS = $(check_PROGRAMS) date_today hour_now check_output
2
3 AM_CPPFLAGS = -I../src
4 LDADD = ../src/.libs/libACL.la
5 check_PROGRAMS = string_assign string_basics string_compare string_cat string_substring string_regex \
6                  date_assign date_parse date_compare date_arithmetic date_attributes date_check_today \
7                  hour_assign hour_parse hour_compare hour_arithmetic hour_check_now \
8                  utc_assign utc_compare utc_arithmetic \
9                  integer_assign integer_factorial integer_fibonacci integer_pow64 integer_modulo \
10                  xml_file xml_find \
11                  configuration_read configuration_find
12
13 string_assign_SOURCES      = string_assign.cpp
14 string_basics_SOURCES      = string_basics.cpp
15 string_compare_SOURCES     = string_compare.cpp
16 string_cat_SOURCES         = string_cat.cpp
17 string_substring_SOURCES   = string_substring.cpp
18 string_regex_SOURCES       = string_regex.cpp
19
20 date_assign_SOURCES        = date_assign.cpp
21 date_parse_SOURCES         = date_parse.cpp
22 date_compare_SOURCES       = date_compare.cpp
23 date_arithmetic_SOURCES    = date_arithmetic.cpp
24 date_attributes_SOURCES    = date_attributes.cpp
25  
26 date_check_today_SOURCES   = date_check_today.cpp
27
28 date_today : date_check_today
29
30 hour_assign_SOURCES        = hour_assign.cpp
31 hour_parse_SOURCES         = hour_parse.cpp
32 hour_compare_SOURCES       = hour_compare.cpp
33 hour_arithmetic_SOURCES    = hour_arithmetic.cpp
34 hour_check_now_SOURCES     = hour_check_now.cpp
35
36 hour_now : hour_check_now
37 utc_assign_SOURCES         = utc_assign.cpp
38 utc_compare_SOURCES        = utc_compare.cpp
39 utc_arithmetic_SOURCES     = utc_arithmetic.cpp
40
41 integer_assign_SOURCES     = integer_assign.cpp
42 integer_factorial_SOURCES  = integer_factorial.cpp tInteger.cpp
43 integer_fibonacci_SOURCES  = integer_fibonacci.cpp tInteger.cpp
44 integer_pow64_SOURCES      = integer_pow64.cpp tInteger.cpp
45 integer_modulo_SOURCES     = integer_modulo.cpp tInteger.cpp
46
47 xml_file_SOURCES           = xml_file.cpp
48 xml_find_SOURCES           = xml_find.cpp
49
50 configuration_read_SOURCES = configuration_read.cpp
51 configuration_find_SOURCES = configuration_find.cpp