1 |
AUTOMAKE_OPTS = foreign |
2 |
|
3 |
SRCS = t_atomic1 t_atomic2 t_signal1 t_signal2 t_timer1 t_timer2 t_timer3 |
4 |
check_PROGRAMS = $(SRCS) |
5 |
|
6 |
# We use a special check script |
7 |
#TESTS = $(check_PROGRAMS) |
8 |
|
9 |
t_atomic1_SOURCES = t_atomic1.c |
10 |
t_atomic1_LDADD = ../peak/libpeak.la |
11 |
t_atomic1_LDFLAGS = -static |
12 |
|
13 |
t_atomic2_SOURCES = t_atomic2.c |
14 |
t_atomic2_LDADD = ../peak/libpeak.la |
15 |
t_atomic2_LDFLAGS = -static |
16 |
|
17 |
t_signal1_SOURCES = t_signal1.c |
18 |
t_signal1_LDADD = ../peak/libpeak.la |
19 |
t_signal1_LDFLAGS = -static |
20 |
|
21 |
t_signal2_SOURCES = t_signal2.c |
22 |
t_signal2_LDADD = ../peak/libpeak.la |
23 |
t_signal2_LDFLAGS = -static |
24 |
|
25 |
t_timer1_SOURCES = t_timer1.c |
26 |
t_timer1_LDADD = ../peak/libpeak.la |
27 |
t_timer1_LDFLAGS = -static |
28 |
|
29 |
t_timer2_SOURCES = t_timer2.c |
30 |
t_timer2_LDADD = ../peak/libpeak.la |
31 |
t_timer2_LDFLAGS = -static |
32 |
|
33 |
t_timer3_SOURCES = t_timer3.c |
34 |
t_timer3_LDADD = ../peak/libpeak.la |
35 |
t_timer3_LDFLAGS = -static |
36 |
|
37 |
INCLUDES = -I.. |
38 |
|
39 |
CLEANFILES = STDERR.log STDOUT.log |
40 |
EXTRA_DIST = test-suite.pl test.desc |
41 |
|
42 |
check: |
43 |
@perl ./test-suite.pl $(SRCS) |