summaryrefslogblamecommitdiffstats
path: root/c/src/tests/samples/cdtest/Makefile.am
blob: d9af49e01fb562a377e73d1bc08d7fc9153b71f2 (plain) (tree)
1
2
3
4
5




                              
















































                                                    
##
##  $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