mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-31 00:32:22 +08:00
28 lines
599 B
Makefile
28 lines
599 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = io rate_monotonic semaphore clock
|
|
|
|
rtems_tests_PROGRAMS = sp32
|
|
sp32_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = sp32.scn
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
sp32_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(sp32_OBJECTS) $(sp32_LDADD)
|
|
LINK_LIBS = $(sp32_LDLIBS)
|
|
|
|
sp32$(EXEEXT): $(sp32_OBJECTS) $(sp32_DEPENDENCIES)
|
|
@rm -f sp32$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|