mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 02:47:18 +08:00
* Makefile.am, configure.ac: Add new test to exercise algorithm to dispatch process wide signals to individual threads. * psxsignal02/.cvsignore, psxsignal02/Makefile.am, psxsignal02/init.c, psxsignal02/psxsignal02.doc, psxsignal02/psxsignal02.scn: New files.
30 lines
747 B
Makefile
30 lines
747 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = psxsignal02
|
|
psxsignal02_SOURCES = init.c ../include/pmacros.h
|
|
|
|
dist_rtems_tests_DATA = psxsignal02.scn
|
|
dist_rtems_tests_DATA += psxsignal02.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
psxsignal02_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/include
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(psxsignal02_OBJECTS) $(psxsignal02_LDADD)
|
|
LINK_LIBS = $(psxsignal02_LDLIBS)
|
|
|
|
psxsignal02$(EXEEXT): $(psxsignal02_OBJECTS) $(psxsignal02_DEPENDENCIES)
|
|
@rm -f psxsignal02$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|