Files
rtems/testsuites/libtests/mathl/Makefile.am
Sebastian Huber 2d0bc839ed build: Remove EXTRA_DIST
A "make dist" is not supported. So, it makes no sense to have pure "make
dist" related stuff in the Makefile.am.
2018-04-04 10:09:04 +02:00

26 lines
674 B
Makefile

rtems_tests_PROGRAMS = mathl
mathl_SOURCES = init.c domathl.c
# FIXME: Skip long double, not yet supported in newlib
# => This test currently is a nop
mathl_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/math -DNO_LONG_DOUBLE
dist_rtems_tests_DATA = mathl.scn
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
mathl_LDADD = -lm
LINK_OBJS = $(mathl_OBJECTS) $(mathl_LDADD)
LINK_LIBS = $(mathl_LDLIBS)
mathl$(EXEEXT): $(mathl_OBJECTS) $(mathl_DEPENDENCIES)
@rm -f mathl$(EXEEXT)
$(make-exe)
include $(top_srcdir)/../automake/local.am