forked from Imagelibrary/rtems
* Makefile.am, configure.ac: Add new tests to exercise cases where a timer is scheduled from an ISR while it is being scheduled at the task level. * spintrcritical13/.cvsignore, spintrcritical13/Makefile.am, spintrcritical13/init.c, spintrcritical13/spintrcritical13.doc, spintrcritical13/spintrcritical13.scn, spintrcritical14/.cvsignore, spintrcritical14/Makefile.am, spintrcritical14/spintrcritical14.doc, spintrcritical14/spintrcritical14.scn: New files.
32 lines
876 B
Makefile
32 lines
876 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = spintrcritical13
|
|
spintrcritical13_SOURCES = init.c \
|
|
../spintrcritical_support/intrcritical.c
|
|
|
|
dist_rtems_tests_DATA = spintrcritical13.scn
|
|
dist_rtems_tests_DATA += spintrcritical13.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
spintrcritical13_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/spintrcritical_support
|
|
AM_CPPFLAGS += -DFIRE_AFTER
|
|
|
|
LINK_OBJS = $(spintrcritical13_OBJECTS) $(spintrcritical13_LDADD)
|
|
LINK_LIBS = $(spintrcritical13_LDLIBS)
|
|
|
|
spintrcritical13$(EXEEXT): $(spintrcritical13_OBJECTS) $(spintrcritical13_DEPENDENCIES)
|
|
@rm -f spintrcritical13$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|