source: rtems/testsuites/libtests/mathl/Makefile.am @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 869 bytes
Line 
1rtems_tests_PROGRAMS = mathl
2mathl_SOURCES = init.c domathl.c
3EXTRA_DIST = $(srcdir)/../math/domath.in
4
5# FIXME: Skip long double, not yet supported in newlib
6# => This test currently is a nop
7mathl_CPPFLAGS = $(AM_CPPFLAGS) -DNO_LONG_DOUBLE
8
9$(srcdir)/domathl.c: $(srcdir)/../math/domath.in
10        sed -e 's,[@]FTYPE[@],long double,' \
11        -e 's,[@]FSUFFIX[@],l,g' \
12        -e 's,%f,%Lf,g' \
13        -e 's,[@]FGUARD[@],NO_LONG_DOUBLE,' \
14        $(srcdir)/../math/domath.in > $(srcdir)/domathl.c
15
16dist_rtems_tests_DATA = mathl.scn
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../automake/compile.am
20include $(top_srcdir)/../automake/leaf.am
21
22mathl_LDADD = -lm
23
24LINK_OBJS = $(mathl_OBJECTS) $(mathl_LDADD)
25LINK_LIBS = $(mathl_LDLIBS)
26
27mathl$(EXEEXT): $(mathl_OBJECTS) $(mathl_DEPENDENCIES)
28        @rm -f mathl$(EXEEXT)
29        $(make-exe)
30
31include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.