source: rtems/testsuites/libtests/mathf/Makefile.am @ 0987f475

4.10
Last change on this file since 0987f475 was 0987f475, checked in by cvs2git <rtems-devel@…>, on 03/18/11 at 10:11:41

This commit was manufactured by cvs2svn to create branch
'rtems-4-10-branch'.

Cherrypick from master 2011-03-18 10:11:40 UTC Ralf Corsepius <ralf.corsepius@…> '2010-04-09 Ralf Corsépius <ralf.corsepius@…>':

cpukit/zlib/ChangeLog
cpukit/zlib/ChangeLog.zlib
cpukit/zlib/FAQ
cpukit/zlib/Makefile.am
cpukit/zlib/README
cpukit/zlib/adler32.c
cpukit/zlib/compress.c
cpukit/zlib/crc32.c
cpukit/zlib/deflate.c
cpukit/zlib/deflate.h
cpukit/zlib/doc/algorithm.txt
cpukit/zlib/gzclose.c
cpukit/zlib/gzguts.h
cpukit/zlib/gzlib.c
cpukit/zlib/gzread.c
cpukit/zlib/gzwrite.c
cpukit/zlib/infback.c
cpukit/zlib/inffast.c
cpukit/zlib/inflate.c
cpukit/zlib/inflate.h
cpukit/zlib/inftrees.c
cpukit/zlib/inftrees.h
cpukit/zlib/trees.c
cpukit/zlib/uncompr.c
cpukit/zlib/zconf.h
cpukit/zlib/zlib.3
cpukit/zlib/zlib.h
cpukit/zlib/zutil.c
cpukit/zlib/zutil.h
testsuites/libtests/mathf/.cvsignore
testsuites/libtests/mathf/Makefile.am
testsuites/libtests/mathf/mathf.scn

Cherrypick from master 2011-02-02 13:58:02 UTC Ralf Corsepius <ralf.corsepius@…> 'New (Split out from math/).':

testsuites/libtests/mathf/domathf.c
testsuites/libtests/mathf/init.c

  • Property mode set to 100644
File size: 715 bytes
Line 
1##
2##  $Id$
3##
4
5rtems_tests_PROGRAMS = mathf
6mathf_SOURCES = init.c domathf.c
7EXTRA_DIST = $(srcdir)/../math/domath.in
8
9$(srcdir)/domathf.c: $(srcdir)/../math/domath.in
10        sed -e 's,[@]FTYPE[@],float,' \
11        -e 's,[@]FSUFFIX[@],f,g' \
12        -e 's,[@]FGUARD[@],NO_FLOAT,' \
13        $(srcdir)/../math/domath.in > $(srcdir)/domathf.c
14
15dist_rtems_tests_DATA = mathf.scn
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../automake/compile.am
19include $(top_srcdir)/../automake/leaf.am
20
21mathf_LDADD = -lm
22
23LINK_OBJS = $(mathf_OBJECTS) $(mathf_LDADD)
24LINK_LIBS = $(mathf_LDLIBS)
25
26mathf$(EXEEXT): $(mathf_OBJECTS) $(mathf_DEPENDENCIES)
27        @rm -f mathf$(EXEEXT)
28        $(make-exe)
29
30include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.