Merge commit '039ae97'
[gnulib.git] / modules / pty
1 Description:
2 A <pty.h> for systems that lacks it.
3
4 Files:
5 m4/pty.m4
6
7 configure.ac:
8 gl_PTY
9
10 Makefile.am:
11 BUILT_SOURCES += $(PTY_H)
12
13 # We need the following in order to create <pty.h> when the system
14 # doesn't have one that works with the given compiler.
15 pty.h:
16         $(AM_V_GEN)rm -f $@-t $@ && \
17         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
18           echo '#include <'$(PTY_HEADER)'>'; \
19         } > $@-t && \
20         mv -f $@-t $@
21 MOSTLYCLEANFILES += pty.h pty.h-t
22
23 Include:
24 <pty.h>
25
26 Link:
27 $(PTY_LIB)
28
29 License:
30 LGPL
31
32 Maintainer:
33 Simon Josefsson