summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/cdtest/Makefile.am
blob: d9af49e01fb562a377e73d1bc08d7fc9153b71f2 (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
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
##
##  $Id$
##

AUTOMAKE_OPTIONS = foreign 1.4

SAMPLE = cdtest
PGM = ${ARCH}/$(SAMPLE).exe

MANAGERS = all

# C source names, if any, go here -- minus the .c
C_FILES = init.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)

# C++ source names, if any, go here -- minus the .cc
CC_FILES = main.cc
CC_O_FILES = $(CC_FILES:%.cc=${ARCH}/%.o)

H_FILES = system.h
noinst_HEADERS = $(H_FILES)

DOCTYPES = scn
DOCS = $(DOCTYPES:%=$(SAMPLE).%)

SRCS = $(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES)
OBJS = $(C_O_FILES) $(CC_O_FILES)

PRINT_SRCS = $(DOCS)

PGM = ${ARCH}/$(SAMPLE).exe

include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(RTEMS_ROOT)/make/leaf.cfg
include $(top_srcdir)/sample.am

#
# (OPTIONAL) Add local stuff here using +=
#

if HAS_CXX
LD_LIBS += $(CPLUS_LD_LIBS)

${PGM}: $(OBJS) $(LINK_FILES)
	$(make-exe)

all-local: ${ARCH} $(TMPINSTALL_FILES)
else
all-local:
endif

EXTRA_DIST = $(C_FILES) $(CC_FILES) $(DOCS)

include $(top_srcdir)/../../../../automake/local.am