* modules/alloca-opt (Makefile.am): Remove explicit dependency on
[gnulib.git] / modules / stdint
1 Description:
2 An <stdint.h> that nearly conforms to C99.
3 (Nearly: {uint,int}_{fast,least}{8,16,32,64}_t may not correspond
4 to the fastest and smallest types available on the system.)
5
6 Files:
7 lib/stdint_.h
8 m4/stdint.m4
9 m4/inttypes.m4
10
11 Depends-on:
12
13 configure.ac:
14 gl_STDINT_H
15
16 Makefile.am:
17 BUILT_SOURCES += $(STDINT_H)
18 EXTRA_DIST += stdint_.h
19
20 # We need the following in order to create <stdint.h> when the system
21 # doesn't have one that works with the given compiler.
22 stdint.h: stdint_.h
23         sed -e 's/@''HAVE_LONG_64BIT''@/$(HAVE_LONG_64BIT)/g;s/@''HAVE_LONG_LONG_64BIT@/$(HAVE_LONG_LONG_64BIT)/g' < $(srcdir)/stdint_.h > $@-t
24         mv $@-t $@
25 MOSTLYCLEANFILES += stdint.h stdint.h-t
26
27 Include:
28 #include <stdint.h>
29
30 License:
31 GPL
32
33 Maintainer:
34 all