Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/float @ 14102:f49fe7e6d028
add _HEADERS primaries to Makefile.am snippets for installable headers
* modules/alloca-opt, modules/arg-nonnull, modules/argz,
modules/arpa_inet, modules/byteswap, modules/c++defs, modules/ctype,
modules/dirent, modules/errno, modules/fcntl-h, modules/float,
modules/fnmatch, modules/getopt-posix, modules/glob, modules/iconv-h,
modules/iconv_open, modules/inttypes, modules/langinfo,
modules/link-warning, modules/locale, modules/math, modules/netdb,
modules/netinet_in, modules/poll-h, modules/pthread, modules/pty,
modules/sched, modules/search, modules/selinux-h, modules/signal,
modules/spawn, modules/stdarg, modules/stdbool, modules/stddef,
modules/stdint, modules/stdio, modules/stdlib, modules/string,
modules/strings, modules/sys_file, modules/sys_ioctl,
modules/sys_select, modules/sys_socket, modules/sys_stat,
modules/sys_time, modules/sys_times, modules/sys_utsname,
modules/sys_wait, modules/sysexits, modules/termios, modules/time,
modules/unistd, modules/unitypes, modules/unused-parameter,
modules/warn-on-use, modules/wchar, modules/wctype (Makefile.am):
Add nodist_include_HEADERS, nobase_nodist_include_HEADERS and
EXTRA_HEADERS declarations for potentially installable header files.
* gnulib-tool: Initialize nodist_include_HEADERS,
nobase_nodist_include_HEADERS and EXTRA_HEADERS to prime for new
`.*_HEADERS +=' declarations.
(func_emit_lib_Makefile_am): Edit away new nodist_include_HEADERS,
nobase_nodist_include_HEADERS and EXTRA_HEADERS declarations by
default, reverting the Makefile.am snippets above to their original
condition prior to this change *unless* the gnulib library is being
installed.
author | Gary V. Vaughan <gary@gnu.org> |
---|---|
date | Mon, 11 Oct 2010 15:51:59 +0700 |
parents | a19ace3ba849 |
children | c1a1f592f879 |
rev | line source |
---|---|
8843 | 1 Description: |
2 A correct <float.h>. | |
3 | |
4 Files: | |
9248
8bca1b6ce9d4
Rename float_.h to float.in.h.
Bruno Haible <bruno@clisp.org>
parents:
8995
diff
changeset
|
5 lib/float.in.h |
8843 | 6 m4/float_h.m4 |
7 | |
8 Depends-on: | |
8995
1025663f7658
* m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
Paul Eggert <eggert@cs.ucla.edu>
parents:
8843
diff
changeset
|
9 include_next |
8843 | 10 |
11 configure.ac: | |
12 gl_FLOAT_H | |
13 | |
14 Makefile.am: | |
14102
f49fe7e6d028
add _HEADERS primaries to Makefile.am snippets for installable headers
Gary V. Vaughan <gary@gnu.org>
parents:
13761
diff
changeset
|
15 nodist_include_HEADERS += $(FLOAT_H) |
f49fe7e6d028
add _HEADERS primaries to Makefile.am snippets for installable headers
Gary V. Vaughan <gary@gnu.org>
parents:
13761
diff
changeset
|
16 EXTRA_HEADERS += float.h |
f49fe7e6d028
add _HEADERS primaries to Makefile.am snippets for installable headers
Gary V. Vaughan <gary@gnu.org>
parents:
13761
diff
changeset
|
17 |
8843 | 18 BUILT_SOURCES += $(FLOAT_H) |
19 | |
20 # We need the following in order to create <float.h> when the system | |
21 # doesn't have one that works with the given compiler. | |
9248
8bca1b6ce9d4
Rename float_.h to float.in.h.
Bruno Haible <bruno@clisp.org>
parents:
8995
diff
changeset
|
22 float.h: float.in.h |
11868
67c2b22aff08
annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
Jim Meyering <meyering@redhat.com>
parents:
10375
diff
changeset
|
23 $(AM_V_GEN)rm -f $@-t $@ && \ |
8843 | 24 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ |
10375
f96e845fc36d
Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents:
9315
diff
changeset
|
25 sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ |
f96e845fc36d
Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents:
9315
diff
changeset
|
26 -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ |
13761
a19ace3ba849
Avoid line length limitation from HP NonStop system header files.
Bruno Haible <bruno@clisp.org>
parents:
11868
diff
changeset
|
27 -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ |
8995
1025663f7658
* m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
Paul Eggert <eggert@cs.ucla.edu>
parents:
8843
diff
changeset
|
28 -e 's|@''NEXT_FLOAT_H''@|$(NEXT_FLOAT_H)|g' \ |
9248
8bca1b6ce9d4
Rename float_.h to float.in.h.
Bruno Haible <bruno@clisp.org>
parents:
8995
diff
changeset
|
29 < $(srcdir)/float.in.h; \ |
11868
67c2b22aff08
annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
Jim Meyering <meyering@redhat.com>
parents:
10375
diff
changeset
|
30 } > $@-t && \ |
8843 | 31 mv $@-t $@ |
32 MOSTLYCLEANFILES += float.h float.h-t | |
33 | |
34 Include: | |
35 <float.h> | |
36 | |
37 License: | |
9315
be88e4511678
Change license to LGPLv2+ on dummy, float, realloc, stdlib.
Simon Josefsson <simon@josefsson.org>
parents:
9248
diff
changeset
|
38 LGPLv2+ |
8843 | 39 |
40 Maintainer: | |
41 all |