mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 03:57:45 +08:00
* Makefile.am, configure.ac: Add new test to exercise error case for when a task is blocked on a condition variable with one mutex and another task attempts to block on the same condition variable with another mutex. * psxcond01/.cvsignore, psxcond01/Makefile.am, psxcond01/init.c, psxcond01/psxcond01.doc, psxcond01/psxcond01.scn: New files.
31 lines
729 B
Makefile
31 lines
729 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = psxcond01
|
|
psxcond01_SOURCES = init.c ../include/pmacros.h
|
|
|
|
dist_rtems_tests_DATA = psxcond01.scn
|
|
dist_rtems_tests_DATA += psxcond01.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
psxcond01_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(psxcond01_OBJECTS) $(psxcond01_LDADD)
|
|
LINK_LIBS = $(psxcond01_LDLIBS)
|
|
|
|
psxcond01$(EXEEXT): $(psxcond01_OBJECTS) \
|
|
$(psxcond01_DEPENDENCIES)
|
|
@rm -f psxcond01$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|