Use the `$(VAR)' notation for AC_SUBST'd variable names, rather than @VAR@.
[gnulib.git] / modules / poll
1 Description:
2 poll() function: wait for some event on a set of file descriptors.
3
4 Files:
5 lib/poll.c
6 lib/poll_.h
7 m4/poll.m4
8
9 Depends-on:
10
11 configure.ac:
12 gl_FUNC_POLL
13
14 Makefile.am:
15 EXTRA_DIST += poll_.h
16
17 # We need the following in order to create an <poll.h> when the system
18 # doesn't have one.
19 all-local $(lib_OBJECTS): $(POLL_H)
20 poll.h: poll_.h
21         cp $(srcdir)/poll_.h poll.h-t
22         mv poll.h-t poll.h
23 MOSTLYCLEANFILES += poll.h poll.h-t
24
25 Include:
26 #include <poll.h>
27
28 Maintainer:
29 Paolo Bonzini  <bonzini@gnu.org>