forked from Imagelibrary/rtems
* 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.
30 lines
645 B
Makefile
30 lines
645 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
MANAGERS = all
|
|
|
|
rtems_tests_PROGRAMS = sp53
|
|
sp53_SOURCES = ../sp52/init.c
|
|
|
|
dist_rtems_tests_DATA = sp53.scn
|
|
dist_rtems_tests_DATA += sp53.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
sp53_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
AM_CPPFLAGS += -DUSE_TIMER_SERVER
|
|
|
|
LINK_OBJS = $(sp53_OBJECTS) $(sp53_LDADD)
|
|
LINK_LIBS = $(sp53_LDLIBS)
|
|
|
|
sp53$(EXEEXT): $(sp53_OBJECTS) $(sp53_DEPENDENCIES)
|
|
@rm -f sp53$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|