1Description:
2An <ieee754.h> that is like GNU.
3
4Files:
5lib/ieee754.in.h
6m4/ieee754-h.m4
7
8Depends-on:
9
10configure.ac:
11gl_IEEE754_H
12
13Makefile.am:
14BUILT_SOURCES += $(IEEE754_H)
15
16# We need the following in order to create <ieee754.h> when the system
17# doesn't have one that works with the given compiler.
18if GL_GENERATE_IEEE754_H
19ieee754.h: ieee754.in.h $(top_builddir)/config.status
20	$(AM_V_GEN)rm -f $@-t && \
21	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
22	  sed -e 's/ifndef _GL_GNULIB_HEADER/if 0/g' \
23	    $(srcdir)/ieee754.in.h; \
24	} > $@-t && \
25	mv -f $@-t $@
26else
27ieee754.h: $(top_builddir)/config.status
28	rm -f $@
29endif
30MOSTLYCLEANFILES += ieee754.h ieee754.h-t
31
32Include:
33<ieee754.h>
34
35License:
36LGPLv2+
37
38Maintainer:
39all
40