mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-26 06:19:42 +08:00
* Makefile.am, configure.ac: Add sp52 and sp53 based upon bug report from Sergio Faustino <sergio.faustino@edisoft.pt> regarding moving the time of day forward not making server based timers fire. * sp52/.cvsignore, sp52/Makefile.am, sp52/init.c, sp52/sp52.doc, sp52/sp52.scn, sp53/.cvsignore, sp53/Makefile.am, sp53/sp53.doc, sp53/sp53.scn: New files.
29 lines
603 B
Makefile
29 lines
603 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = sp52
|
|
sp52_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = sp52.scn
|
|
dist_rtems_tests_DATA += sp52.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
sp52_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(sp52_OBJECTS) $(sp52_LDADD)
|
|
LINK_LIBS = $(sp52_LDLIBS)
|
|
|
|
sp52$(EXEEXT): $(sp52_OBJECTS) $(sp52_DEPENDENCIES)
|
|
@rm -f sp52$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|