Preparing for debian package
[ACL.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_modify string_shift 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_parse utc_compare utc_arithmetic utc_convert \
9                  integer_assign integer_factorial integer_fibonacci integer_pow64 integer_modulo \
10                  xml_file xml_find xml_node xml_elem \
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_modify_SOURCES      = string_modify.cpp
18 string_shift_SOURCES       = string_shift.cpp
19 string_substring_SOURCES   = string_substring.cpp
20 string_regex_SOURCES       = string_regex.cpp
21
22 date_assign_SOURCES        = date_assign.cpp
23 date_parse_SOURCES         = date_parse.cpp
24 date_compare_SOURCES       = date_compare.cpp
25 date_arithmetic_SOURCES    = date_arithmetic.cpp
26 date_attributes_SOURCES    = date_attributes.cpp
27  
28 date_check_today_SOURCES   = date_check_today.cpp
29
30 date_today : date_check_today
31
32 hour_assign_SOURCES        = hour_assign.cpp
33 hour_parse_SOURCES         = hour_parse.cpp
34 hour_compare_SOURCES       = hour_compare.cpp
35 hour_arithmetic_SOURCES    = hour_arithmetic.cpp
36 hour_check_now_SOURCES     = hour_check_now.cpp
37
38 hour_now : hour_check_now
39 utc_assign_SOURCES         = utc_assign.cpp
40 utc_parse_SOURCES          = utc_parse.cpp
41 utc_compare_SOURCES        = utc_compare.cpp
42 utc_arithmetic_SOURCES     = utc_arithmetic.cpp
43 utc_convert_SOURCES        = utc_convert.cpp
44
45 integer_assign_SOURCES     = integer_assign.cpp
46 integer_factorial_SOURCES  = integer_factorial.cpp tInteger.cpp
47 integer_fibonacci_SOURCES  = integer_fibonacci.cpp tInteger.cpp
48 integer_pow64_SOURCES      = integer_pow64.cpp tInteger.cpp
49 integer_modulo_SOURCES     = integer_modulo.cpp tInteger.cpp
50
51 xml_file_SOURCES           = xml_file.cpp
52 xml_find_SOURCES           = xml_find.cpp
53 xml_node_SOURCES           = xml_node.cpp
54 xml_elem_SOURCES           = xml_elem.cpp
55
56 configuration_read_SOURCES = configuration_read.cpp
57 configuration_find_SOURCES = configuration_find.cpp