-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
70 lines (63 loc) · 1.9 KB
/
Makefile.am
File metadata and controls
70 lines (63 loc) · 1.9 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
# Copyright © 2016-2017, HST Project.
# Please see the COPYING file in this distribution for license details.
# ------------------------------------------------------------------------------
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I. -I$(top_srcdir)/src
AM_DEFAULT_SOURCE_EXT = .cc
noinst_LTLIBRARIES = libhst.la
bin_PROGRAMS = hst
EXTRA_DIST = tap-driver.sh
TESTS = ${check_PROGRAMS}
LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh
@VALGRIND_CHECK_RULES@
libhst_la_SOURCES = \
src/hst/csp0.h \
src/hst/csp0.cc \
src/hst/environment.h \
src/hst/environment.cc \
src/hst/event.h \
src/hst/event.cc \
src/hst/external-choice.cc \
src/hst/hash.h \
src/hst/interleave.cc \
src/hst/internal-choice.cc \
src/hst/normalize.cc \
src/hst/prefix.cc \
src/hst/prenormalize.cc \
src/hst/process.h \
src/hst/process.cc \
src/hst/recursion.h \
src/hst/recursion.cc \
src/hst/refinement.h \
src/hst/refinement.cc \
src/hst/semantic-models.h \
src/hst/semantic-models.cc \
src/hst/sequential-composition.cc
hst_SOURCES = \
src/hst/hst/command.h \
src/hst/hst/hst.cc \
src/hst/hst/reachable.cc \
src/hst/hst/traces.cc
hst_LDADD = libhst.la
# Keep this sorted generally in order of dependency, so that more basic features
# are checked before larger features that build on them.
check_PROGRAMS = \
tests/test-harness \
tests/test-events \
tests/test-csp0 \
tests/test-operators \
tests/test-refinement
check_LTLIBRARIES = libtests.la
libtests_la_SOURCES = \
tests/test-cases.h \
tests/test-cases.cc \
tests/test-harness.cc.in
LDADD = libhst.la libtests.la
tests_test_csp0_LDFLAGS = -no-install
tests_test_events_LDFLAGS = -no-install
tests_test_harness_LDFLAGS = -no-install
tests_test_operators_LDFLAGS = -no-install
tests_test_refinement_LDFLAGS = -no-install
dist_doc_DATA = README.md