Files
rtems/testsuites/samples/Makefile.am
Sebastian Huber cdf30f0550 rtems: Add rtems_interrupt_local_disable|enable()
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.
2015-06-22 08:40:26 +02:00

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