verify: new macro 'assume'
[gnulib.git] / modules / stdalign
1 Description:
2 A <stdalign.h> that nearly conforms to ISO C11 and C++11.
3
4 Files:
5 lib/stdalign.in.h
6 m4/stdalign.m4
7
8 Depends-on:
9
10 configure.ac:
11 gl_STDALIGN_H
12
13 Makefile.am:
14 BUILT_SOURCES += $(STDALIGN_H)
15
16 # We need the following in order to create <stdalign.h> when the system
17 # doesn't have one that works.
18 if GL_GENERATE_STDALIGN_H
19 stdalign.h: stdalign.in.h $(top_builddir)/config.status
20         $(AM_V_GEN)rm -f $@-t $@ && \
21         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
22           cat $(srcdir)/stdalign.in.h; \
23         } > $@-t && \
24         mv $@-t $@
25 else
26 stdalign.h: $(top_builddir)/config.status
27         rm -f $@
28 endif
29 MOSTLYCLEANFILES += stdalign.h stdalign.h-t
30
31 Include:
32 <stdalign.h>
33
34 License:
35 LGPLv2+
36
37 Maintainer:
38 Paul Eggert, Bruno Haible