forked from Imagelibrary/rtems
PR 1603/testing * spassoc01/init.c, spassoc01/Makefile.am, spassoc01/spassoc01.doc, spassoc01/spassoc01.scn: Added new test. * Makefile.am, configure.ac: Added new test spassoc01 for rtems_assoc routines.
25 lines
579 B
Makefile
25 lines
579 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
rtems_tests_PROGRAMS = spassoc01
|
|
spassoc01_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = spassoc01.scn
|
|
dist_rtems_tests_DATA += spassoc01.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(spassoc01_OBJECTS) $(spassoc01_LDADD)
|
|
LINK_LIBS = $(spassoc01_LDLIBS)
|
|
|
|
spassoc01$(EXEEXT): $(spassoc01_OBJECTS) $(spassoc01_DEPENDENCIES)
|
|
@rm -f spassoc01$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|