mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 04:07:41 +08:00
* spintrcritical06/init.c: Add comment to indicate test is not finished and known to not hit the case. * Makefile.am, configure.ac: Add a couple more interrupt critical section tests. * spintrcritical08/.cvsignore, spintrcritical08/Makefile.am, spintrcritical08/init.c, spintrcritical08/spintrcritical08.doc, spintrcritical08/spintrcritical08.scn, spintrcritical09/.cvsignore, spintrcritical09/Makefile.am, spintrcritical09/init.c, spintrcritical09/spintrcritical09.doc, spintrcritical09/spintrcritical09.scn: New files.
30 lines
842 B
Makefile
30 lines
842 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = spintrcritical09
|
|
spintrcritical09_SOURCES = init.c ../spintrcritical_support/intrcritical.c
|
|
|
|
dist_rtems_tests_DATA = spintrcritical09.scn
|
|
dist_rtems_tests_DATA += spintrcritical09.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
spintrcritical09_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/spintrcritical_support
|
|
|
|
LINK_OBJS = $(spintrcritical09_OBJECTS) $(spintrcritical09_LDADD)
|
|
LINK_LIBS = $(spintrcritical09_LDLIBS)
|
|
|
|
spintrcritical09$(EXEEXT): $(spintrcritical09_OBJECTS) $(spintrcritical09_DEPENDENCIES)
|
|
@rm -f spintrcritical09$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|