a7cdd2f80d1a5cc300365b6bd5ad0c1352f88636
[ACL.git] / test / Makefile.am
1 TESTS = $(check_PROGRAMS) date_today 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
8
9 string_assign_SOURCES      = string_assign.cpp
10 string_basics_SOURCES      = string_basics.cpp
11 string_compare_SOURCES     = string_compare.cpp
12 string_cat_SOURCES         = string_cat.cpp
13 string_substring_SOURCES   = string_substring.cpp
14 string_regex_SOURCES       = string_regex.cpp
15
16 date_assign_SOURCES        = date_assign.cpp
17 date_parse_SOURCES         = date_parse.cpp
18 date_compare_SOURCES       = date_compare.cpp
19 date_arithmetic_SOURCES    = date_arithmetic.cpp
20 date_attributes_SOURCES    = date_attributes.cpp
21  
22 date_check_today_SOURCES   = date_check_today.cpp
23
24 date_today : date_check_today
25
26 hour_assign_SOURCES        = hour_assign.cpp
27 hour_parse_SOURCES         = hour_parse.cpp