forked from Imagelibrary/rtems
* cpuuse/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES. * malloctest/Makefile.am: Ditto. * monitor/Makefile.am: Ditto. * putenvtest/Makefile.am: Ditto. * rtems++/Makefile.am: Ditto. * rtmonuse/Makefile.am: Ditto. * stackchk/Makefile.am: Ditto. * termios/Makefile.am: Ditto.
44 lines
735 B
Makefile
44 lines
735 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
TEST = stackchk
|
|
|
|
MANAGERS = io
|
|
|
|
C_FILES = blow.c init.c task1.c
|
|
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
|
|
|
H_FILES = system.h
|
|
noinst_HEADERS = $(H_FILES)
|
|
|
|
DOCTYPES = scn
|
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
|
|
|
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
|
OBJS = $(C_O_FILES)
|
|
|
|
PRINT_SRCS = $(DOCS)
|
|
|
|
PGM = ${ARCH}/$(TEST).exe
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
include $(top_srcdir)/libtests.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-exe)
|
|
|
|
all-local: $(TMPINSTALL_FILES)
|
|
|
|
EXTRA_DIST = $(C_FILES) $(DOCS)
|
|
|
|
CLEANFILES = $(TMPINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|