mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 07:40:56 +08:00
28 lines
578 B
Makefile
28 lines
578 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = sp37
|
|
sp37_SOURCES = init.c system.h
|
|
|
|
dist_rtems_tests_DATA = sp37.scn
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
sp37_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(sp37_OBJECTS) $(sp37_LDADD)
|
|
LINK_LIBS = $(sp37_LDLIBS)
|
|
|
|
sp37$(EXEEXT): $(sp37_OBJECTS) $(sp37_DEPENDENCIES)
|
|
@rm -f sp37$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|