mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 04:28:33 +08:00
* Makefile.am, configure.ac, spintrcritical06/init.c: Add first attempt at hitting interrupt synchronization critical section in thread queue enqueue priority for reverse insertions. * spintrcritical07/.cvsignore, spintrcritical07/Makefile.am, spintrcritical07/spintrcritical07.doc, spintrcritical07/spintrcritical07.scn: New files.
32 lines
913 B
Makefile
32 lines
913 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = spintrcritical07
|
|
spintrcritical07_SOURCES = ../spintrcritical06/init.c \
|
|
../spintrcritical_support/intrcritical.c
|
|
|
|
dist_rtems_tests_DATA = spintrcritical07.scn
|
|
dist_rtems_tests_DATA += spintrcritical07.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
spintrcritical07_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/spintrcritical_support
|
|
AM_CPPFLAGS += -DPRIORITY_NO_TIMEOUT_REVERSE
|
|
|
|
LINK_OBJS = $(spintrcritical07_OBJECTS) $(spintrcritical07_LDADD)
|
|
LINK_LIBS = $(spintrcritical07_LDLIBS)
|
|
|
|
spintrcritical07$(EXEEXT): $(spintrcritical07_OBJECTS) $(spintrcritical07_DEPENDENCIES)
|
|
@rm -f spintrcritical07$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|