source: rtems/testsuites/libtests/mathl/Makefile.am @ 2d0bc83

5
Last change on this file since 2d0bc83 was 2d0bc83, checked in by Sebastian Huber <sebastian.huber@…>, on 03/30/18 at 18:42:21

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.

  • Property mode set to 100644
File size: 674 bytes
Line 
1rtems_tests_PROGRAMS = mathl
2mathl_SOURCES = init.c domathl.c
3
4# FIXME: Skip long double, not yet supported in newlib
5# => This test currently is a nop
6mathl_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/math -DNO_LONG_DOUBLE
7
8dist_rtems_tests_DATA = mathl.scn
9
10include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
11include $(top_srcdir)/../automake/compile.am
12include $(top_srcdir)/../automake/leaf.am
13
14AM_CPPFLAGS += -I$(top_srcdir)/../support/include
15
16mathl_LDADD = -lm
17
18LINK_OBJS = $(mathl_OBJECTS) $(mathl_LDADD)
19LINK_LIBS = $(mathl_LDLIBS)
20
21mathl$(EXEEXT): $(mathl_OBJECTS) $(mathl_DEPENDENCIES)
22        @rm -f mathl$(EXEEXT)
23        $(make-exe)
24
25include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.