source: rtems/testsuites/sptests/spsyslock01/Makefile.am @ 214d8ed

5
Last change on this file since 214d8ed was 214d8ed, checked in by Sebastian Huber <sebastian.huber@…>, on 06/28/15 at 20:06:36

score: Add self-contained mutex implementation

This mutex implementation uses a thread priority queue with a simple
priority inheritance mechanism (similar to the object based mutexes).
The storage space must be supplied by the user (16 bytes on 32-bit
targets).

  • Property mode set to 100644
File size: 540 bytes
Line 
1rtems_tests_PROGRAMS = spsyslock01
2spsyslock01_SOURCES = init.c
3
4dist_rtems_tests_DATA = spsyslock01.scn spsyslock01.doc
5
6include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
7include $(top_srcdir)/../automake/compile.am
8include $(top_srcdir)/../automake/leaf.am
9
10AM_CPPFLAGS += -I$(top_srcdir)/../support/include
11
12LINK_OBJS = $(spsyslock01_OBJECTS)
13LINK_LIBS = $(spsyslock01_LDLIBS)
14
15spsyslock01$(EXEEXT): $(spsyslock01_OBJECTS) $(spsyslock01_DEPENDENCIES)
16        @rm -f spsyslock01$(EXEEXT)
17        $(make-exe)
18
19include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.