1## ****************************************************************************
2##
3##  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4##  more contributor license agreements.  See the NOTICE file distributed
5##  with this work for additional information regarding copyright ownership.
6##  Accellera licenses this file to you under the Apache License, Version 2.0
7##  (the "License"); you may not use this file except in compliance with the
8##  License.  You may obtain a copy of the License at
9##
10##   http://www.apache.org/licenses/LICENSE-2.0
11##
12##  Unless required by applicable law or agreed to in writing, software
13##  distributed under the License is distributed on an "AS IS" BASIS,
14##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15##  implied.  See the License for the specific language governing
16##  permissions and limitations under the License.
17##
18## ****************************************************************************
19##
20##  test.am --
21##  Included from a Makefile.am to provide example-specific information
22##
23##  Original Author: Philipp A. Hartmann, OFFIS, 2013-05-20
24##
25## ****************************************************************************
26##
27##  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
28##  changes you are making here.
29##
30##      Name, Affiliation, Date:
31##  Description of Modification:
32##
33## ***************************************************************************
34
35## Generic example setup
36## (should be kept in sync among all test.am files)
37##
38## Note: Recent Automake versions (>1.13) support relative placeholders for
39##       included files (%D%,%C%).  To support older versions, use explicit
40##       names for now.
41##
42## Local values:
43##   %D%: lt_temporal_decouple
44##   %C%: lt_temporal_decouple
45
46examples_TESTS += lt_temporal_decouple/test
47
48lt_temporal_decouple_test_CPPFLAGS = \
49	-I$(srcdir)/lt_temporal_decouple/include \
50	$(CPPFLAGS_TLMTESTS)
51
52lt_temporal_decouple_test_SOURCES = \
53	$(lt_temporal_decouple_H_FILES) \
54	$(lt_temporal_decouple_CXX_FILES)
55
56examples_BUILD += \
57	$(lt_temporal_decouple_BUILD)
58
59examples_CLEAN += \
60	lt_temporal_decouple/run.log \
61	lt_temporal_decouple/expected_trimmed.log \
62	lt_temporal_decouple/run_trimmed.log \
63	lt_temporal_decouple/diff.log
64
65examples_FILES += \
66	$(lt_temporal_decouple_H_FILES) \
67	$(lt_temporal_decouple_CXX_FILES) \
68	$(lt_temporal_decouple_BUILD) \
69	$(lt_temporal_decouple_EXTRA)
70
71examples_DIRS += \
72	lt_temporal_decouple/$(TLM_EXAMPLE_SUBDIRS)
73
74## example-specific details
75
76lt_temporal_decouple_H_FILES = \
77	lt_temporal_decouple/include/initiator_top.h \
78	lt_temporal_decouple/include/lt_temporal_decouple_top.h \
79	lt_temporal_decouple/include/td_initiator_top.h
80
81lt_temporal_decouple_CXX_FILES = \
82	lt_temporal_decouple/src/initiator_top.cpp \
83	lt_temporal_decouple/src/lt_temporal_decouple.cpp \
84	lt_temporal_decouple/src/lt_temporal_decouple_top.cpp \
85	lt_temporal_decouple/src/td_initiator_top.cpp
86
87lt_temporal_decouple_BUILD = \
88	lt_temporal_decouple/results/expected.log
89
90lt_temporal_decouple_EXTRA = \
91	lt_temporal_decouple/README \
92	lt_temporal_decouple/CMakeLists.txt \
93	lt_temporal_decouple/build-msvc/Makefile \
94	lt_temporal_decouple/build-msvc/lt_temporal_decouple.sln \
95	lt_temporal_decouple/build-msvc/lt_temporal_decouple.vcxproj \
96	lt_temporal_decouple/build-unix/Makefile \
97	lt_temporal_decouple/docs/lt_temporal_decouple_example.pdf \
98	lt_temporal_decouple/docs/lt_temporal_decouple_example.ppt
99
100#lt_temporal_decouple_FILTER =
101
102## Taf!
103## :vim: ft=automake:
104