forked from Imagelibrary/rtems
Add rtems_interrupt_local_disable|enable() as suggested by Pavel Pisa to emphasize that interrupts are only disabled on the current processor. Do not define the rtems_interrupt_disable|enable|flash() macros and functions on SMP configurations since they don't ensure system wide mutual exclusion.
29 lines
488 B
Makefile
29 lines
488 B
Makefile
ACLOCAL_AMFLAGS = -I ../aclocal
|
|
|
|
_SUBDIRS = hello capture ticker base_sp unlimited minimum fileio
|
|
|
|
if MPTESTS
|
|
## base_mp is a sample multiprocessing test
|
|
_SUBDIRS += base_mp
|
|
endif
|
|
|
|
_SUBDIRS += paranoia
|
|
|
|
_SUBDIRS += nsecs
|
|
|
|
if CXXTESTS
|
|
_SUBDIRS += iostream cdtest
|
|
endif
|
|
|
|
if NETTESTS
|
|
## loopback tests a network loopback interface
|
|
_SUBDIRS += loopback
|
|
if HAS_SMP
|
|
else
|
|
_SUBDIRS += pppd
|
|
endif
|
|
endif
|
|
|
|
include $(top_srcdir)/../automake/test-subdirs.am
|
|
include $(top_srcdir)/../automake/local.am
|