summaryrefslogtreecommitdiffstats
path: root/c/src/tests/samples/Makefile.in
blob: f5541f2df63c04b25b24d0e1178561241345d7d2 (plain) (blame)
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
#
#  $Id$
#

@SET_MAKE@
srcdir = @srcdir@
VPATH = @srcdir@
RTEMS_ROOT = @top_srcdir@
PROJECT_ROOT = @PROJECT_ROOT@

include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
include $(RTEMS_ROOT)/make/directory.cfg

# cdtest is a C++ constructor/destructor test
# We only build it if HAS_CPLUSCPLUS was defined

CPLUSPLUS_TESTS_yes_V = cdtest
CPLUSPLUS_TESTS = $(CPLUSPLUS_TESTS_$(HAS_CPLUSPLUS)_V)

# base_mp is a sample multiprocessing test
# We only build it if HAS_MP was defined

MP_TESTS_yes_V = base_mp
MP_TESTS = $(MP_TESTS_$(HAS_MP)_V)

FP_TESTS = paranoia

SUB_DIRS=hello ticker base_sp $(MP_TESTS) $(CPLUSPLUS_TESTS) $(FP_TESTS)