evdispatch 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/License.txt +20 -0
- data/Manifest.txt +96 -0
- data/README.txt +73 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +70 -0
- data/config/requirements.rb +15 -0
- data/ext/revdispatch/extconf.rb +31 -0
- data/ext/revdispatch/libevdispatch/Changelog +0 -0
- data/ext/revdispatch/libevdispatch/LICENSE +0 -0
- data/ext/revdispatch/libevdispatch/Makefile.am +10 -0
- data/ext/revdispatch/libevdispatch/Makefile.in +637 -0
- data/ext/revdispatch/libevdispatch/README +3 -0
- data/ext/revdispatch/libevdispatch/TODO +5 -0
- data/ext/revdispatch/libevdispatch/aclocal.m4 +7459 -0
- data/ext/revdispatch/libevdispatch/autogen.sh +11 -0
- data/ext/revdispatch/libevdispatch/confdefs.h +32 -0
- data/ext/revdispatch/libevdispatch/config.guess +1516 -0
- data/ext/revdispatch/libevdispatch/config.h.in +112 -0
- data/ext/revdispatch/libevdispatch/config.sub +1626 -0
- data/ext/revdispatch/libevdispatch/configure +21949 -0
- data/ext/revdispatch/libevdispatch/configure.ac +40 -0
- data/ext/revdispatch/libevdispatch/depcomp +584 -0
- data/ext/revdispatch/libevdispatch/install-sh +507 -0
- data/ext/revdispatch/libevdispatch/libev/Changes +54 -0
- data/ext/revdispatch/libevdispatch/libev/LICENSE +25 -0
- data/ext/revdispatch/libevdispatch/libev/Makefile.am +18 -0
- data/ext/revdispatch/libevdispatch/libev/Makefile.in +677 -0
- data/ext/revdispatch/libevdispatch/libev/README +130 -0
- data/ext/revdispatch/libevdispatch/libev/aclocal.m4 +7430 -0
- data/ext/revdispatch/libevdispatch/libev/autogen.sh +7 -0
- data/ext/revdispatch/libevdispatch/libev/config.guess +1516 -0
- data/ext/revdispatch/libevdispatch/libev/config.h.in +106 -0
- data/ext/revdispatch/libevdispatch/libev/config.sub +1626 -0
- data/ext/revdispatch/libevdispatch/libev/configure +21636 -0
- data/ext/revdispatch/libevdispatch/libev/configure.ac +18 -0
- data/ext/revdispatch/libevdispatch/libev/ev++.h +779 -0
- data/ext/revdispatch/libevdispatch/libev/ev.3 +3276 -0
- data/ext/revdispatch/libevdispatch/libev/ev.c +2547 -0
- data/ext/revdispatch/libevdispatch/libev/ev.h +608 -0
- data/ext/revdispatch/libevdispatch/libev/ev.pod +3192 -0
- data/ext/revdispatch/libevdispatch/libev/ev_epoll.c +182 -0
- data/ext/revdispatch/libevdispatch/libev/ev_kqueue.c +194 -0
- data/ext/revdispatch/libevdispatch/libev/ev_poll.c +135 -0
- data/ext/revdispatch/libevdispatch/libev/ev_port.c +163 -0
- data/ext/revdispatch/libevdispatch/libev/ev_select.c +244 -0
- data/ext/revdispatch/libevdispatch/libev/ev_vars.h +157 -0
- data/ext/revdispatch/libevdispatch/libev/ev_win32.c +125 -0
- data/ext/revdispatch/libevdispatch/libev/ev_wrap.h +144 -0
- data/ext/revdispatch/libevdispatch/libev/event.c +404 -0
- data/ext/revdispatch/libevdispatch/libev/event.h +152 -0
- data/ext/revdispatch/libevdispatch/libev/install-sh +294 -0
- data/ext/revdispatch/libevdispatch/libev/libev.m4 +28 -0
- data/ext/revdispatch/libevdispatch/libev/ltmain.sh +6930 -0
- data/ext/revdispatch/libevdispatch/libev/missing +336 -0
- data/ext/revdispatch/libevdispatch/libev/mkinstalldirs +111 -0
- data/ext/revdispatch/libevdispatch/ltmain.sh +6930 -0
- data/ext/revdispatch/libevdispatch/missing +367 -0
- data/ext/revdispatch/libevdispatch/src/Makefile.am +11 -0
- data/ext/revdispatch/libevdispatch/src/Makefile.in +486 -0
- data/ext/revdispatch/libevdispatch/src/ev_dispatch.cc +264 -0
- data/ext/revdispatch/libevdispatch/src/ev_dispatch.h +300 -0
- data/ext/revdispatch/libevdispatch/src/ev_http.cc +238 -0
- data/ext/revdispatch/libevdispatch/src/ev_http.h +65 -0
- data/ext/revdispatch/libevdispatch/test/Makefile.am +16 -0
- data/ext/revdispatch/libevdispatch/test/Makefile.in +513 -0
- data/ext/revdispatch/libevdispatch/test/helper.rb +94 -0
- data/ext/revdispatch/libevdispatch/test/key_test.cc +52 -0
- data/ext/revdispatch/libevdispatch/test/next_test.cc +86 -0
- data/ext/revdispatch/libevdispatch/test/next_test.rb +8 -0
- data/ext/revdispatch/libevdispatch/test/server.rb +9 -0
- data/ext/revdispatch/revdispatch.cc +151 -0
- data/ext/revdispatch/server.rb +60 -0
- data/ext/revdispatch/test.rb +100 -0
- data/lib/evdispatch/loop.rb +16 -0
- data/lib/evdispatch/version.rb +9 -0
- data/lib/evdispatch.rb +8 -0
- data/log/debug.log +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +74 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/extconf/revdispatch.rake +43 -0
- data/tasks/extconf.rake +13 -0
- data/tasks/website.rake +17 -0
- data/test/test_evdispatch.rb +11 -0
- data/test/test_helper.rb +3 -0
- data/test/test_revdispatch_extn.rb +14 -0
- data/website/index.html +128 -0
- data/website/index.txt +55 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +49 -0
- metadata +157 -0
@@ -0,0 +1,677 @@
|
|
1
|
+
# Makefile.in generated by automake 1.10 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
+
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
@SET_MAKE@
|
16
|
+
|
17
|
+
|
18
|
+
VPATH = @srcdir@
|
19
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
20
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
21
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
22
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
23
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
24
|
+
install_sh_PROGRAM = $(install_sh) -c
|
25
|
+
install_sh_SCRIPT = $(install_sh) -c
|
26
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
27
|
+
transform = $(program_transform_name)
|
28
|
+
NORMAL_INSTALL = :
|
29
|
+
PRE_INSTALL = :
|
30
|
+
POST_INSTALL = :
|
31
|
+
NORMAL_UNINSTALL = :
|
32
|
+
PRE_UNINSTALL = :
|
33
|
+
POST_UNINSTALL = :
|
34
|
+
build_triplet = @build@
|
35
|
+
host_triplet = @host@
|
36
|
+
subdir = .
|
37
|
+
DIST_COMMON = README $(am__configure_deps) $(include_HEADERS) \
|
38
|
+
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
39
|
+
$(srcdir)/config.h.in $(top_srcdir)/configure config.guess \
|
40
|
+
config.sub install-sh ltmain.sh missing mkinstalldirs
|
41
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
42
|
+
am__aclocal_m4_deps = $(top_srcdir)/libev.m4 \
|
43
|
+
$(top_srcdir)/configure.ac
|
44
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
45
|
+
$(ACLOCAL_M4)
|
46
|
+
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
47
|
+
configure.lineno config.status.lineno
|
48
|
+
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
49
|
+
CONFIG_HEADER = config.h
|
50
|
+
CONFIG_CLEAN_FILES =
|
51
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
52
|
+
am__vpath_adj = case $$p in \
|
53
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
54
|
+
*) f=$$p;; \
|
55
|
+
esac;
|
56
|
+
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
57
|
+
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man3dir)" \
|
58
|
+
"$(DESTDIR)$(includedir)"
|
59
|
+
libLTLIBRARIES_INSTALL = $(INSTALL)
|
60
|
+
LTLIBRARIES = $(lib_LTLIBRARIES)
|
61
|
+
libev_la_LIBADD =
|
62
|
+
am_libev_la_OBJECTS = ev.lo event.lo
|
63
|
+
libev_la_OBJECTS = $(am_libev_la_OBJECTS)
|
64
|
+
libev_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
65
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(libev_la_LDFLAGS) \
|
66
|
+
$(LDFLAGS) -o $@
|
67
|
+
DEFAULT_INCLUDES = -I.@am__isrc@
|
68
|
+
depcomp =
|
69
|
+
am__depfiles_maybe =
|
70
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
71
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
72
|
+
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
73
|
+
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
74
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
75
|
+
CCLD = $(CC)
|
76
|
+
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
77
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
78
|
+
$(LDFLAGS) -o $@
|
79
|
+
SOURCES = $(libev_la_SOURCES)
|
80
|
+
DIST_SOURCES = $(libev_la_SOURCES)
|
81
|
+
man3dir = $(mandir)/man3
|
82
|
+
NROFF = nroff
|
83
|
+
MANS = $(man_MANS)
|
84
|
+
includeHEADERS_INSTALL = $(INSTALL_HEADER)
|
85
|
+
HEADERS = $(include_HEADERS)
|
86
|
+
ETAGS = etags
|
87
|
+
CTAGS = ctags
|
88
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
89
|
+
distdir = $(PACKAGE)-$(VERSION)
|
90
|
+
top_distdir = $(distdir)
|
91
|
+
am__remove_distdir = \
|
92
|
+
{ test ! -d $(distdir) \
|
93
|
+
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
94
|
+
&& rm -fr $(distdir); }; }
|
95
|
+
DIST_ARCHIVES = $(distdir).tar.gz
|
96
|
+
GZIP_ENV = --best
|
97
|
+
distuninstallcheck_listfiles = find . -type f -print
|
98
|
+
distcleancheck_listfiles = find . -type f -print
|
99
|
+
ACLOCAL = @ACLOCAL@
|
100
|
+
AMTAR = @AMTAR@
|
101
|
+
AR = @AR@
|
102
|
+
AUTOCONF = @AUTOCONF@
|
103
|
+
AUTOHEADER = @AUTOHEADER@
|
104
|
+
AUTOMAKE = @AUTOMAKE@
|
105
|
+
AWK = @AWK@
|
106
|
+
CC = @CC@
|
107
|
+
CCDEPMODE = @CCDEPMODE@
|
108
|
+
CFLAGS = @CFLAGS@
|
109
|
+
CPP = @CPP@
|
110
|
+
CPPFLAGS = @CPPFLAGS@
|
111
|
+
CXX = @CXX@
|
112
|
+
CXXCPP = @CXXCPP@
|
113
|
+
CXXDEPMODE = @CXXDEPMODE@
|
114
|
+
CXXFLAGS = @CXXFLAGS@
|
115
|
+
CYGPATH_W = @CYGPATH_W@
|
116
|
+
DEFS = @DEFS@
|
117
|
+
DEPDIR = @DEPDIR@
|
118
|
+
ECHO = @ECHO@
|
119
|
+
ECHO_C = @ECHO_C@
|
120
|
+
ECHO_N = @ECHO_N@
|
121
|
+
ECHO_T = @ECHO_T@
|
122
|
+
EGREP = @EGREP@
|
123
|
+
EXEEXT = @EXEEXT@
|
124
|
+
F77 = @F77@
|
125
|
+
FFLAGS = @FFLAGS@
|
126
|
+
GREP = @GREP@
|
127
|
+
INSTALL = @INSTALL@
|
128
|
+
INSTALL_DATA = @INSTALL_DATA@
|
129
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
130
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
131
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
132
|
+
LDFLAGS = @LDFLAGS@
|
133
|
+
LIBOBJS = @LIBOBJS@
|
134
|
+
LIBS = @LIBS@
|
135
|
+
LIBTOOL = @LIBTOOL@
|
136
|
+
LN_S = @LN_S@
|
137
|
+
LTLIBOBJS = @LTLIBOBJS@
|
138
|
+
MAKEINFO = @MAKEINFO@
|
139
|
+
MKDIR_P = @MKDIR_P@
|
140
|
+
OBJEXT = @OBJEXT@
|
141
|
+
PACKAGE = @PACKAGE@
|
142
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
143
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
144
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
145
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
146
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
147
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
148
|
+
RANLIB = @RANLIB@
|
149
|
+
SED = @SED@
|
150
|
+
SET_MAKE = @SET_MAKE@
|
151
|
+
SHELL = @SHELL@
|
152
|
+
STRIP = @STRIP@
|
153
|
+
VERSION = @VERSION@
|
154
|
+
abs_builddir = @abs_builddir@
|
155
|
+
abs_srcdir = @abs_srcdir@
|
156
|
+
abs_top_builddir = @abs_top_builddir@
|
157
|
+
abs_top_srcdir = @abs_top_srcdir@
|
158
|
+
ac_ct_CC = @ac_ct_CC@
|
159
|
+
ac_ct_CXX = @ac_ct_CXX@
|
160
|
+
ac_ct_F77 = @ac_ct_F77@
|
161
|
+
am__include = @am__include@
|
162
|
+
am__leading_dot = @am__leading_dot@
|
163
|
+
am__quote = @am__quote@
|
164
|
+
am__tar = @am__tar@
|
165
|
+
am__untar = @am__untar@
|
166
|
+
bindir = @bindir@
|
167
|
+
build = @build@
|
168
|
+
build_alias = @build_alias@
|
169
|
+
build_cpu = @build_cpu@
|
170
|
+
build_os = @build_os@
|
171
|
+
build_vendor = @build_vendor@
|
172
|
+
builddir = @builddir@
|
173
|
+
datadir = @datadir@
|
174
|
+
datarootdir = @datarootdir@
|
175
|
+
docdir = @docdir@
|
176
|
+
dvidir = @dvidir@
|
177
|
+
exec_prefix = @exec_prefix@
|
178
|
+
host = @host@
|
179
|
+
host_alias = @host_alias@
|
180
|
+
host_cpu = @host_cpu@
|
181
|
+
host_os = @host_os@
|
182
|
+
host_vendor = @host_vendor@
|
183
|
+
htmldir = @htmldir@
|
184
|
+
includedir = @includedir@
|
185
|
+
infodir = @infodir@
|
186
|
+
install_sh = @install_sh@
|
187
|
+
libdir = @libdir@
|
188
|
+
libexecdir = @libexecdir@
|
189
|
+
localedir = @localedir@
|
190
|
+
localstatedir = @localstatedir@
|
191
|
+
mandir = @mandir@
|
192
|
+
mkdir_p = @mkdir_p@
|
193
|
+
oldincludedir = @oldincludedir@
|
194
|
+
pdfdir = @pdfdir@
|
195
|
+
prefix = @prefix@
|
196
|
+
program_transform_name = @program_transform_name@
|
197
|
+
psdir = @psdir@
|
198
|
+
sbindir = @sbindir@
|
199
|
+
sharedstatedir = @sharedstatedir@
|
200
|
+
srcdir = @srcdir@
|
201
|
+
sysconfdir = @sysconfdir@
|
202
|
+
target_alias = @target_alias@
|
203
|
+
top_builddir = @top_builddir@
|
204
|
+
top_srcdir = @top_srcdir@
|
205
|
+
AUTOMAKE_OPTIONS = foreign no-dependencies
|
206
|
+
VERSION_INFO = 3:0
|
207
|
+
EXTRA_DIST = LICENSE Changes libev.m4 autogen.sh \
|
208
|
+
ev_vars.h ev_wrap.h \
|
209
|
+
ev_epoll.c ev_select.c ev_poll.c ev_kqueue.c ev_port.c ev_win32.c \
|
210
|
+
ev.3 ev.pod
|
211
|
+
|
212
|
+
man_MANS = ev.3
|
213
|
+
include_HEADERS = ev.h ev++.h event.h
|
214
|
+
lib_LTLIBRARIES = libev.la
|
215
|
+
libev_la_SOURCES = ev.c event.c
|
216
|
+
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
|
217
|
+
all: config.h
|
218
|
+
$(MAKE) $(AM_MAKEFLAGS) all-am
|
219
|
+
|
220
|
+
.SUFFIXES:
|
221
|
+
.SUFFIXES: .c .lo .o .obj
|
222
|
+
am--refresh:
|
223
|
+
@:
|
224
|
+
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
225
|
+
@for dep in $?; do \
|
226
|
+
case '$(am__configure_deps)' in \
|
227
|
+
*$$dep*) \
|
228
|
+
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
|
229
|
+
cd $(srcdir) && $(AUTOMAKE) --foreign \
|
230
|
+
&& exit 0; \
|
231
|
+
exit 1;; \
|
232
|
+
esac; \
|
233
|
+
done; \
|
234
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
235
|
+
cd $(top_srcdir) && \
|
236
|
+
$(AUTOMAKE) --foreign Makefile
|
237
|
+
.PRECIOUS: Makefile
|
238
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
239
|
+
@case '$?' in \
|
240
|
+
*config.status*) \
|
241
|
+
echo ' $(SHELL) ./config.status'; \
|
242
|
+
$(SHELL) ./config.status;; \
|
243
|
+
*) \
|
244
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
245
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
246
|
+
esac;
|
247
|
+
|
248
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
249
|
+
$(SHELL) ./config.status --recheck
|
250
|
+
|
251
|
+
$(top_srcdir)/configure: $(am__configure_deps)
|
252
|
+
cd $(srcdir) && $(AUTOCONF)
|
253
|
+
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
254
|
+
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
255
|
+
|
256
|
+
config.h: stamp-h1
|
257
|
+
@if test ! -f $@; then \
|
258
|
+
rm -f stamp-h1; \
|
259
|
+
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
|
260
|
+
else :; fi
|
261
|
+
|
262
|
+
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
263
|
+
@rm -f stamp-h1
|
264
|
+
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
265
|
+
$(srcdir)/config.h.in: $(am__configure_deps)
|
266
|
+
cd $(top_srcdir) && $(AUTOHEADER)
|
267
|
+
rm -f stamp-h1
|
268
|
+
touch $@
|
269
|
+
|
270
|
+
distclean-hdr:
|
271
|
+
-rm -f config.h stamp-h1
|
272
|
+
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
273
|
+
@$(NORMAL_INSTALL)
|
274
|
+
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
275
|
+
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
276
|
+
if test -f $$p; then \
|
277
|
+
f=$(am__strip_dir) \
|
278
|
+
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
279
|
+
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
280
|
+
else :; fi; \
|
281
|
+
done
|
282
|
+
|
283
|
+
uninstall-libLTLIBRARIES:
|
284
|
+
@$(NORMAL_UNINSTALL)
|
285
|
+
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
286
|
+
p=$(am__strip_dir) \
|
287
|
+
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
288
|
+
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
289
|
+
done
|
290
|
+
|
291
|
+
clean-libLTLIBRARIES:
|
292
|
+
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
293
|
+
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
294
|
+
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
295
|
+
test "$$dir" != "$$p" || dir=.; \
|
296
|
+
echo "rm -f \"$${dir}/so_locations\""; \
|
297
|
+
rm -f "$${dir}/so_locations"; \
|
298
|
+
done
|
299
|
+
libev.la: $(libev_la_OBJECTS) $(libev_la_DEPENDENCIES)
|
300
|
+
$(libev_la_LINK) -rpath $(libdir) $(libev_la_OBJECTS) $(libev_la_LIBADD) $(LIBS)
|
301
|
+
|
302
|
+
mostlyclean-compile:
|
303
|
+
-rm -f *.$(OBJEXT)
|
304
|
+
|
305
|
+
distclean-compile:
|
306
|
+
-rm -f *.tab.c
|
307
|
+
|
308
|
+
.c.o:
|
309
|
+
$(COMPILE) -c $<
|
310
|
+
|
311
|
+
.c.obj:
|
312
|
+
$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
313
|
+
|
314
|
+
.c.lo:
|
315
|
+
$(LTCOMPILE) -c -o $@ $<
|
316
|
+
|
317
|
+
mostlyclean-libtool:
|
318
|
+
-rm -f *.lo
|
319
|
+
|
320
|
+
clean-libtool:
|
321
|
+
-rm -rf .libs _libs
|
322
|
+
|
323
|
+
distclean-libtool:
|
324
|
+
-rm -f libtool
|
325
|
+
install-man3: $(man3_MANS) $(man_MANS)
|
326
|
+
@$(NORMAL_INSTALL)
|
327
|
+
test -z "$(man3dir)" || $(MKDIR_P) "$(DESTDIR)$(man3dir)"
|
328
|
+
@list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
|
329
|
+
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
330
|
+
for i in $$l2; do \
|
331
|
+
case "$$i" in \
|
332
|
+
*.3*) list="$$list $$i" ;; \
|
333
|
+
esac; \
|
334
|
+
done; \
|
335
|
+
for i in $$list; do \
|
336
|
+
if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
|
337
|
+
else file=$$i; fi; \
|
338
|
+
ext=`echo $$i | sed -e 's/^.*\\.//'`; \
|
339
|
+
case "$$ext" in \
|
340
|
+
3*) ;; \
|
341
|
+
*) ext='3' ;; \
|
342
|
+
esac; \
|
343
|
+
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
344
|
+
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
345
|
+
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
346
|
+
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
|
347
|
+
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst"; \
|
348
|
+
done
|
349
|
+
uninstall-man3:
|
350
|
+
@$(NORMAL_UNINSTALL)
|
351
|
+
@list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
|
352
|
+
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
353
|
+
for i in $$l2; do \
|
354
|
+
case "$$i" in \
|
355
|
+
*.3*) list="$$list $$i" ;; \
|
356
|
+
esac; \
|
357
|
+
done; \
|
358
|
+
for i in $$list; do \
|
359
|
+
ext=`echo $$i | sed -e 's/^.*\\.//'`; \
|
360
|
+
case "$$ext" in \
|
361
|
+
3*) ;; \
|
362
|
+
*) ext='3' ;; \
|
363
|
+
esac; \
|
364
|
+
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
365
|
+
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
366
|
+
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
367
|
+
echo " rm -f '$(DESTDIR)$(man3dir)/$$inst'"; \
|
368
|
+
rm -f "$(DESTDIR)$(man3dir)/$$inst"; \
|
369
|
+
done
|
370
|
+
install-includeHEADERS: $(include_HEADERS)
|
371
|
+
@$(NORMAL_INSTALL)
|
372
|
+
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
373
|
+
@list='$(include_HEADERS)'; for p in $$list; do \
|
374
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
375
|
+
f=$(am__strip_dir) \
|
376
|
+
echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
|
377
|
+
$(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
|
378
|
+
done
|
379
|
+
|
380
|
+
uninstall-includeHEADERS:
|
381
|
+
@$(NORMAL_UNINSTALL)
|
382
|
+
@list='$(include_HEADERS)'; for p in $$list; do \
|
383
|
+
f=$(am__strip_dir) \
|
384
|
+
echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
|
385
|
+
rm -f "$(DESTDIR)$(includedir)/$$f"; \
|
386
|
+
done
|
387
|
+
|
388
|
+
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
389
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
390
|
+
unique=`for i in $$list; do \
|
391
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
392
|
+
done | \
|
393
|
+
$(AWK) ' { files[$$0] = 1; } \
|
394
|
+
END { for (i in files) print i; }'`; \
|
395
|
+
mkid -fID $$unique
|
396
|
+
tags: TAGS
|
397
|
+
|
398
|
+
TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
399
|
+
$(TAGS_FILES) $(LISP)
|
400
|
+
tags=; \
|
401
|
+
here=`pwd`; \
|
402
|
+
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
403
|
+
unique=`for i in $$list; do \
|
404
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
405
|
+
done | \
|
406
|
+
$(AWK) ' { files[$$0] = 1; } \
|
407
|
+
END { for (i in files) print i; }'`; \
|
408
|
+
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
409
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
410
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
411
|
+
$$tags $$unique; \
|
412
|
+
fi
|
413
|
+
ctags: CTAGS
|
414
|
+
CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
415
|
+
$(TAGS_FILES) $(LISP)
|
416
|
+
tags=; \
|
417
|
+
here=`pwd`; \
|
418
|
+
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
419
|
+
unique=`for i in $$list; do \
|
420
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
421
|
+
done | \
|
422
|
+
$(AWK) ' { files[$$0] = 1; } \
|
423
|
+
END { for (i in files) print i; }'`; \
|
424
|
+
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
425
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
426
|
+
$$tags $$unique
|
427
|
+
|
428
|
+
GTAGS:
|
429
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
430
|
+
&& cd $(top_srcdir) \
|
431
|
+
&& gtags -i $(GTAGS_ARGS) $$here
|
432
|
+
|
433
|
+
distclean-tags:
|
434
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
435
|
+
|
436
|
+
distdir: $(DISTFILES)
|
437
|
+
$(am__remove_distdir)
|
438
|
+
test -d $(distdir) || mkdir $(distdir)
|
439
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
440
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
441
|
+
list='$(DISTFILES)'; \
|
442
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
443
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
444
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
445
|
+
case $$dist_files in \
|
446
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
447
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
448
|
+
sort -u` ;; \
|
449
|
+
esac; \
|
450
|
+
for file in $$dist_files; do \
|
451
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
452
|
+
if test -d $$d/$$file; then \
|
453
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
454
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
455
|
+
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
456
|
+
fi; \
|
457
|
+
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
458
|
+
else \
|
459
|
+
test -f $(distdir)/$$file \
|
460
|
+
|| cp -p $$d/$$file $(distdir)/$$file \
|
461
|
+
|| exit 1; \
|
462
|
+
fi; \
|
463
|
+
done
|
464
|
+
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
465
|
+
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
466
|
+
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
467
|
+
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
468
|
+
|| chmod -R a+r $(distdir)
|
469
|
+
dist-gzip: distdir
|
470
|
+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
471
|
+
$(am__remove_distdir)
|
472
|
+
|
473
|
+
dist-bzip2: distdir
|
474
|
+
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
475
|
+
$(am__remove_distdir)
|
476
|
+
|
477
|
+
dist-tarZ: distdir
|
478
|
+
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
479
|
+
$(am__remove_distdir)
|
480
|
+
|
481
|
+
dist-shar: distdir
|
482
|
+
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
483
|
+
$(am__remove_distdir)
|
484
|
+
|
485
|
+
dist-zip: distdir
|
486
|
+
-rm -f $(distdir).zip
|
487
|
+
zip -rq $(distdir).zip $(distdir)
|
488
|
+
$(am__remove_distdir)
|
489
|
+
|
490
|
+
dist dist-all: distdir
|
491
|
+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
492
|
+
$(am__remove_distdir)
|
493
|
+
|
494
|
+
# This target untars the dist file and tries a VPATH configuration. Then
|
495
|
+
# it guarantees that the distribution is self-contained by making another
|
496
|
+
# tarfile.
|
497
|
+
distcheck: dist
|
498
|
+
case '$(DIST_ARCHIVES)' in \
|
499
|
+
*.tar.gz*) \
|
500
|
+
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
|
501
|
+
*.tar.bz2*) \
|
502
|
+
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
|
503
|
+
*.tar.Z*) \
|
504
|
+
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
505
|
+
*.shar.gz*) \
|
506
|
+
GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
|
507
|
+
*.zip*) \
|
508
|
+
unzip $(distdir).zip ;;\
|
509
|
+
esac
|
510
|
+
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
511
|
+
mkdir $(distdir)/_build
|
512
|
+
mkdir $(distdir)/_inst
|
513
|
+
chmod a-w $(distdir)
|
514
|
+
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
515
|
+
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
516
|
+
&& cd $(distdir)/_build \
|
517
|
+
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
518
|
+
$(DISTCHECK_CONFIGURE_FLAGS) \
|
519
|
+
&& $(MAKE) $(AM_MAKEFLAGS) \
|
520
|
+
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
521
|
+
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
522
|
+
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
523
|
+
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
524
|
+
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
525
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
526
|
+
distuninstallcheck \
|
527
|
+
&& chmod -R a-w "$$dc_install_base" \
|
528
|
+
&& ({ \
|
529
|
+
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
530
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
531
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
532
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
533
|
+
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
534
|
+
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
535
|
+
&& rm -rf "$$dc_destdir" \
|
536
|
+
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
537
|
+
&& rm -rf $(DIST_ARCHIVES) \
|
538
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
539
|
+
$(am__remove_distdir)
|
540
|
+
@(echo "$(distdir) archives ready for distribution: "; \
|
541
|
+
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
542
|
+
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
543
|
+
distuninstallcheck:
|
544
|
+
@cd $(distuninstallcheck_dir) \
|
545
|
+
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
546
|
+
|| { echo "ERROR: files left after uninstall:" ; \
|
547
|
+
if test -n "$(DESTDIR)"; then \
|
548
|
+
echo " (check DESTDIR support)"; \
|
549
|
+
fi ; \
|
550
|
+
$(distuninstallcheck_listfiles) ; \
|
551
|
+
exit 1; } >&2
|
552
|
+
distcleancheck: distclean
|
553
|
+
@if test '$(srcdir)' = . ; then \
|
554
|
+
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
555
|
+
exit 1 ; \
|
556
|
+
fi
|
557
|
+
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
558
|
+
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
559
|
+
$(distcleancheck_listfiles) ; \
|
560
|
+
exit 1; } >&2
|
561
|
+
check-am: all-am
|
562
|
+
check: check-am
|
563
|
+
all-am: Makefile $(LTLIBRARIES) $(MANS) $(HEADERS) config.h
|
564
|
+
installdirs:
|
565
|
+
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(includedir)"; do \
|
566
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
567
|
+
done
|
568
|
+
install: install-am
|
569
|
+
install-exec: install-exec-am
|
570
|
+
install-data: install-data-am
|
571
|
+
uninstall: uninstall-am
|
572
|
+
|
573
|
+
install-am: all-am
|
574
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
575
|
+
|
576
|
+
installcheck: installcheck-am
|
577
|
+
install-strip:
|
578
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
579
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
580
|
+
`test -z '$(STRIP)' || \
|
581
|
+
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
582
|
+
mostlyclean-generic:
|
583
|
+
|
584
|
+
clean-generic:
|
585
|
+
|
586
|
+
distclean-generic:
|
587
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
588
|
+
|
589
|
+
maintainer-clean-generic:
|
590
|
+
@echo "This command is intended for maintainers to use"
|
591
|
+
@echo "it deletes files that may require special tools to rebuild."
|
592
|
+
clean: clean-am
|
593
|
+
|
594
|
+
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
595
|
+
mostlyclean-am
|
596
|
+
|
597
|
+
distclean: distclean-am
|
598
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
599
|
+
-rm -f Makefile
|
600
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
601
|
+
distclean-hdr distclean-libtool distclean-tags
|
602
|
+
|
603
|
+
dvi: dvi-am
|
604
|
+
|
605
|
+
dvi-am:
|
606
|
+
|
607
|
+
html: html-am
|
608
|
+
|
609
|
+
info: info-am
|
610
|
+
|
611
|
+
info-am:
|
612
|
+
|
613
|
+
install-data-am: install-includeHEADERS install-man
|
614
|
+
|
615
|
+
install-dvi: install-dvi-am
|
616
|
+
|
617
|
+
install-exec-am: install-libLTLIBRARIES
|
618
|
+
|
619
|
+
install-html: install-html-am
|
620
|
+
|
621
|
+
install-info: install-info-am
|
622
|
+
|
623
|
+
install-man: install-man3
|
624
|
+
|
625
|
+
install-pdf: install-pdf-am
|
626
|
+
|
627
|
+
install-ps: install-ps-am
|
628
|
+
|
629
|
+
installcheck-am:
|
630
|
+
|
631
|
+
maintainer-clean: maintainer-clean-am
|
632
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
633
|
+
-rm -rf $(top_srcdir)/autom4te.cache
|
634
|
+
-rm -f Makefile
|
635
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
636
|
+
|
637
|
+
mostlyclean: mostlyclean-am
|
638
|
+
|
639
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
640
|
+
mostlyclean-libtool
|
641
|
+
|
642
|
+
pdf: pdf-am
|
643
|
+
|
644
|
+
pdf-am:
|
645
|
+
|
646
|
+
ps: ps-am
|
647
|
+
|
648
|
+
ps-am:
|
649
|
+
|
650
|
+
uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
|
651
|
+
uninstall-man
|
652
|
+
|
653
|
+
uninstall-man: uninstall-man3
|
654
|
+
|
655
|
+
.MAKE: install-am install-strip
|
656
|
+
|
657
|
+
.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
|
658
|
+
clean-generic clean-libLTLIBRARIES clean-libtool ctags dist \
|
659
|
+
dist-all dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip \
|
660
|
+
distcheck distclean distclean-compile distclean-generic \
|
661
|
+
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
662
|
+
distdir distuninstallcheck dvi dvi-am html html-am info \
|
663
|
+
info-am install install-am install-data install-data-am \
|
664
|
+
install-dvi install-dvi-am install-exec install-exec-am \
|
665
|
+
install-html install-html-am install-includeHEADERS \
|
666
|
+
install-info install-info-am install-libLTLIBRARIES \
|
667
|
+
install-man install-man3 install-pdf install-pdf-am install-ps \
|
668
|
+
install-ps-am install-strip installcheck installcheck-am \
|
669
|
+
installdirs maintainer-clean maintainer-clean-generic \
|
670
|
+
mostlyclean mostlyclean-compile mostlyclean-generic \
|
671
|
+
mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
|
672
|
+
uninstall-am uninstall-includeHEADERS uninstall-libLTLIBRARIES \
|
673
|
+
uninstall-man uninstall-man3
|
674
|
+
|
675
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
676
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
677
|
+
.NOEXPORT:
|