evdispatch 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/History.txt +3 -0
  2. data/License.txt +20 -0
  3. data/Manifest.txt +96 -0
  4. data/README.txt +73 -0
  5. data/Rakefile +4 -0
  6. data/config/hoe.rb +70 -0
  7. data/config/requirements.rb +15 -0
  8. data/ext/revdispatch/extconf.rb +31 -0
  9. data/ext/revdispatch/libevdispatch/Changelog +0 -0
  10. data/ext/revdispatch/libevdispatch/LICENSE +0 -0
  11. data/ext/revdispatch/libevdispatch/Makefile.am +10 -0
  12. data/ext/revdispatch/libevdispatch/Makefile.in +637 -0
  13. data/ext/revdispatch/libevdispatch/README +3 -0
  14. data/ext/revdispatch/libevdispatch/TODO +5 -0
  15. data/ext/revdispatch/libevdispatch/aclocal.m4 +7459 -0
  16. data/ext/revdispatch/libevdispatch/autogen.sh +11 -0
  17. data/ext/revdispatch/libevdispatch/confdefs.h +32 -0
  18. data/ext/revdispatch/libevdispatch/config.guess +1516 -0
  19. data/ext/revdispatch/libevdispatch/config.h.in +112 -0
  20. data/ext/revdispatch/libevdispatch/config.sub +1626 -0
  21. data/ext/revdispatch/libevdispatch/configure +21949 -0
  22. data/ext/revdispatch/libevdispatch/configure.ac +40 -0
  23. data/ext/revdispatch/libevdispatch/depcomp +584 -0
  24. data/ext/revdispatch/libevdispatch/install-sh +507 -0
  25. data/ext/revdispatch/libevdispatch/libev/Changes +54 -0
  26. data/ext/revdispatch/libevdispatch/libev/LICENSE +25 -0
  27. data/ext/revdispatch/libevdispatch/libev/Makefile.am +18 -0
  28. data/ext/revdispatch/libevdispatch/libev/Makefile.in +677 -0
  29. data/ext/revdispatch/libevdispatch/libev/README +130 -0
  30. data/ext/revdispatch/libevdispatch/libev/aclocal.m4 +7430 -0
  31. data/ext/revdispatch/libevdispatch/libev/autogen.sh +7 -0
  32. data/ext/revdispatch/libevdispatch/libev/config.guess +1516 -0
  33. data/ext/revdispatch/libevdispatch/libev/config.h.in +106 -0
  34. data/ext/revdispatch/libevdispatch/libev/config.sub +1626 -0
  35. data/ext/revdispatch/libevdispatch/libev/configure +21636 -0
  36. data/ext/revdispatch/libevdispatch/libev/configure.ac +18 -0
  37. data/ext/revdispatch/libevdispatch/libev/ev++.h +779 -0
  38. data/ext/revdispatch/libevdispatch/libev/ev.3 +3276 -0
  39. data/ext/revdispatch/libevdispatch/libev/ev.c +2547 -0
  40. data/ext/revdispatch/libevdispatch/libev/ev.h +608 -0
  41. data/ext/revdispatch/libevdispatch/libev/ev.pod +3192 -0
  42. data/ext/revdispatch/libevdispatch/libev/ev_epoll.c +182 -0
  43. data/ext/revdispatch/libevdispatch/libev/ev_kqueue.c +194 -0
  44. data/ext/revdispatch/libevdispatch/libev/ev_poll.c +135 -0
  45. data/ext/revdispatch/libevdispatch/libev/ev_port.c +163 -0
  46. data/ext/revdispatch/libevdispatch/libev/ev_select.c +244 -0
  47. data/ext/revdispatch/libevdispatch/libev/ev_vars.h +157 -0
  48. data/ext/revdispatch/libevdispatch/libev/ev_win32.c +125 -0
  49. data/ext/revdispatch/libevdispatch/libev/ev_wrap.h +144 -0
  50. data/ext/revdispatch/libevdispatch/libev/event.c +404 -0
  51. data/ext/revdispatch/libevdispatch/libev/event.h +152 -0
  52. data/ext/revdispatch/libevdispatch/libev/install-sh +294 -0
  53. data/ext/revdispatch/libevdispatch/libev/libev.m4 +28 -0
  54. data/ext/revdispatch/libevdispatch/libev/ltmain.sh +6930 -0
  55. data/ext/revdispatch/libevdispatch/libev/missing +336 -0
  56. data/ext/revdispatch/libevdispatch/libev/mkinstalldirs +111 -0
  57. data/ext/revdispatch/libevdispatch/ltmain.sh +6930 -0
  58. data/ext/revdispatch/libevdispatch/missing +367 -0
  59. data/ext/revdispatch/libevdispatch/src/Makefile.am +11 -0
  60. data/ext/revdispatch/libevdispatch/src/Makefile.in +486 -0
  61. data/ext/revdispatch/libevdispatch/src/ev_dispatch.cc +264 -0
  62. data/ext/revdispatch/libevdispatch/src/ev_dispatch.h +300 -0
  63. data/ext/revdispatch/libevdispatch/src/ev_http.cc +238 -0
  64. data/ext/revdispatch/libevdispatch/src/ev_http.h +65 -0
  65. data/ext/revdispatch/libevdispatch/test/Makefile.am +16 -0
  66. data/ext/revdispatch/libevdispatch/test/Makefile.in +513 -0
  67. data/ext/revdispatch/libevdispatch/test/helper.rb +94 -0
  68. data/ext/revdispatch/libevdispatch/test/key_test.cc +52 -0
  69. data/ext/revdispatch/libevdispatch/test/next_test.cc +86 -0
  70. data/ext/revdispatch/libevdispatch/test/next_test.rb +8 -0
  71. data/ext/revdispatch/libevdispatch/test/server.rb +9 -0
  72. data/ext/revdispatch/revdispatch.cc +151 -0
  73. data/ext/revdispatch/server.rb +60 -0
  74. data/ext/revdispatch/test.rb +100 -0
  75. data/lib/evdispatch/loop.rb +16 -0
  76. data/lib/evdispatch/version.rb +9 -0
  77. data/lib/evdispatch.rb +8 -0
  78. data/log/debug.log +0 -0
  79. data/script/console +10 -0
  80. data/script/destroy +14 -0
  81. data/script/generate +14 -0
  82. data/script/txt2html +74 -0
  83. data/setup.rb +1585 -0
  84. data/tasks/deployment.rake +34 -0
  85. data/tasks/environment.rake +7 -0
  86. data/tasks/extconf/revdispatch.rake +43 -0
  87. data/tasks/extconf.rake +13 -0
  88. data/tasks/website.rake +17 -0
  89. data/test/test_evdispatch.rb +11 -0
  90. data/test/test_helper.rb +3 -0
  91. data/test/test_revdispatch_extn.rb +14 -0
  92. data/website/index.html +128 -0
  93. data/website/index.txt +55 -0
  94. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  95. data/website/stylesheets/screen.css +138 -0
  96. data/website/template.html.erb +49 -0
  97. metadata +157 -0
@@ -0,0 +1,486 @@
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 = src
37
+ DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \
38
+ $(srcdir)/Makefile.in
39
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
+ am__aclocal_m4_deps = $(top_srcdir)/libev/libev.m4 \
41
+ $(top_srcdir)/configure.ac
42
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
43
+ $(ACLOCAL_M4)
44
+ mkinstalldirs = $(install_sh) -d
45
+ CONFIG_HEADER = $(top_builddir)/config.h
46
+ CONFIG_CLEAN_FILES =
47
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
48
+ am__vpath_adj = case $$p in \
49
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
50
+ *) f=$$p;; \
51
+ esac;
52
+ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
53
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
54
+ libLTLIBRARIES_INSTALL = $(INSTALL)
55
+ LTLIBRARIES = $(lib_LTLIBRARIES)
56
+ libdispatch_la_LIBADD =
57
+ am_libdispatch_la_OBJECTS = libdispatch_la-ev_dispatch.lo \
58
+ libdispatch_la-ev_http.lo
59
+ libdispatch_la_OBJECTS = $(am_libdispatch_la_OBJECTS)
60
+ libdispatch_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
61
+ $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
62
+ $(libdispatch_la_CXXFLAGS) $(CXXFLAGS) \
63
+ $(libdispatch_la_LDFLAGS) $(LDFLAGS) -o $@
64
+ DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
65
+ depcomp =
66
+ am__depfiles_maybe =
67
+ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
68
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
69
+ LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
70
+ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
71
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
72
+ CXXLD = $(CXX)
73
+ CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
74
+ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
75
+ $(LDFLAGS) -o $@
76
+ SOURCES = $(libdispatch_la_SOURCES)
77
+ DIST_SOURCES = $(libdispatch_la_SOURCES)
78
+ includeHEADERS_INSTALL = $(INSTALL_HEADER)
79
+ HEADERS = $(include_HEADERS)
80
+ ETAGS = etags
81
+ CTAGS = ctags
82
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
83
+ ACLOCAL = @ACLOCAL@
84
+ AMTAR = @AMTAR@
85
+ AR = @AR@
86
+ AUTOCONF = @AUTOCONF@
87
+ AUTOHEADER = @AUTOHEADER@
88
+ AUTOMAKE = @AUTOMAKE@
89
+ AWK = @AWK@
90
+ CC = @CC@
91
+ CCDEPMODE = @CCDEPMODE@
92
+ CFLAGS = @CFLAGS@
93
+ CPP = @CPP@
94
+ CPPFLAGS = @CPPFLAGS@
95
+ CXX = @CXX@
96
+ CXXCPP = @CXXCPP@
97
+ CXXDEPMODE = @CXXDEPMODE@
98
+ CXXFLAGS = @CXXFLAGS@
99
+ CYGPATH_W = @CYGPATH_W@
100
+ DEFS = @DEFS@
101
+ DEPDIR = @DEPDIR@
102
+ ECHO = @ECHO@
103
+ ECHO_C = @ECHO_C@
104
+ ECHO_N = @ECHO_N@
105
+ ECHO_T = @ECHO_T@
106
+ EGREP = @EGREP@
107
+ EXEEXT = @EXEEXT@
108
+ F77 = @F77@
109
+ FFLAGS = @FFLAGS@
110
+ GREP = @GREP@
111
+ INSTALL = @INSTALL@
112
+ INSTALL_DATA = @INSTALL_DATA@
113
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
114
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
115
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
116
+ LDFLAGS = @LDFLAGS@
117
+ LIBEV_PATH = @LIBEV_PATH@
118
+ LIBOBJS = @LIBOBJS@
119
+ LIBS = @LIBS@
120
+ LIBTOOL = @LIBTOOL@
121
+ LN_S = @LN_S@
122
+ LTLIBOBJS = @LTLIBOBJS@
123
+ MAINT = @MAINT@
124
+ MAKEINFO = @MAKEINFO@
125
+ MKDIR_P = @MKDIR_P@
126
+ OBJEXT = @OBJEXT@
127
+ PACKAGE = @PACKAGE@
128
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
129
+ PACKAGE_NAME = @PACKAGE_NAME@
130
+ PACKAGE_STRING = @PACKAGE_STRING@
131
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
132
+ PACKAGE_VERSION = @PACKAGE_VERSION@
133
+ PATH_SEPARATOR = @PATH_SEPARATOR@
134
+ RANLIB = @RANLIB@
135
+ SED = @SED@
136
+ SET_MAKE = @SET_MAKE@
137
+ SHELL = @SHELL@
138
+ STRIP = @STRIP@
139
+ VERSION = @VERSION@
140
+ abs_builddir = @abs_builddir@
141
+ abs_srcdir = @abs_srcdir@
142
+ abs_top_builddir = @abs_top_builddir@
143
+ abs_top_srcdir = @abs_top_srcdir@
144
+ ac_ct_CC = @ac_ct_CC@
145
+ ac_ct_CXX = @ac_ct_CXX@
146
+ ac_ct_F77 = @ac_ct_F77@
147
+ am__include = @am__include@
148
+ am__leading_dot = @am__leading_dot@
149
+ am__quote = @am__quote@
150
+ am__tar = @am__tar@
151
+ am__untar = @am__untar@
152
+ bindir = @bindir@
153
+ build = @build@
154
+ build_alias = @build_alias@
155
+ build_cpu = @build_cpu@
156
+ build_os = @build_os@
157
+ build_vendor = @build_vendor@
158
+ builddir = @builddir@
159
+ datadir = @datadir@
160
+ datarootdir = @datarootdir@
161
+ docdir = @docdir@
162
+ dvidir = @dvidir@
163
+ exec_prefix = @exec_prefix@
164
+ host = @host@
165
+ host_alias = @host_alias@
166
+ host_cpu = @host_cpu@
167
+ host_os = @host_os@
168
+ host_vendor = @host_vendor@
169
+ htmldir = @htmldir@
170
+ includedir = @includedir@
171
+ infodir = @infodir@
172
+ install_sh = @install_sh@
173
+ libdir = @libdir@
174
+ libexecdir = @libexecdir@
175
+ localedir = @localedir@
176
+ localstatedir = @localstatedir@
177
+ mandir = @mandir@
178
+ mkdir_p = @mkdir_p@
179
+ oldincludedir = @oldincludedir@
180
+ pdfdir = @pdfdir@
181
+ prefix = @prefix@
182
+ program_transform_name = @program_transform_name@
183
+ psdir = @psdir@
184
+ sbindir = @sbindir@
185
+ sharedstatedir = @sharedstatedir@
186
+ srcdir = @srcdir@
187
+ sysconfdir = @sysconfdir@
188
+ target_alias = @target_alias@
189
+ top_builddir = @top_builddir@
190
+ top_srcdir = @top_srcdir@
191
+ AUTOMAKE_OPTIONS = foreign no-dependencies
192
+ VERSION_INFO = 0:1
193
+ include_HEADERS = ev_dispatch.h ev_http.h
194
+ lib_LTLIBRARIES = libdispatch.la
195
+ libdispatch_la_SOURCES = ev_dispatch.cc ev_http.cc
196
+ libdispatch_la_CXXFLAGS = -I$(LIBEV_PATH)
197
+ libdispatch_la_LDFLAGS = -version-info $(VERSION_INFO)
198
+ all: all-am
199
+
200
+ .SUFFIXES:
201
+ .SUFFIXES: .cc .lo .o .obj
202
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
203
+ @for dep in $?; do \
204
+ case '$(am__configure_deps)' in \
205
+ *$$dep*) \
206
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
207
+ && exit 0; \
208
+ exit 1;; \
209
+ esac; \
210
+ done; \
211
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
212
+ cd $(top_srcdir) && \
213
+ $(AUTOMAKE) --foreign src/Makefile
214
+ .PRECIOUS: Makefile
215
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
216
+ @case '$?' in \
217
+ *config.status*) \
218
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
219
+ *) \
220
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
221
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
222
+ esac;
223
+
224
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
225
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
226
+
227
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
228
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
229
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
230
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
231
+ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
232
+ @$(NORMAL_INSTALL)
233
+ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
234
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
235
+ if test -f $$p; then \
236
+ f=$(am__strip_dir) \
237
+ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
238
+ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
239
+ else :; fi; \
240
+ done
241
+
242
+ uninstall-libLTLIBRARIES:
243
+ @$(NORMAL_UNINSTALL)
244
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
245
+ p=$(am__strip_dir) \
246
+ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
247
+ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
248
+ done
249
+
250
+ clean-libLTLIBRARIES:
251
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
252
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
253
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
254
+ test "$$dir" != "$$p" || dir=.; \
255
+ echo "rm -f \"$${dir}/so_locations\""; \
256
+ rm -f "$${dir}/so_locations"; \
257
+ done
258
+ libdispatch.la: $(libdispatch_la_OBJECTS) $(libdispatch_la_DEPENDENCIES)
259
+ $(libdispatch_la_LINK) -rpath $(libdir) $(libdispatch_la_OBJECTS) $(libdispatch_la_LIBADD) $(LIBS)
260
+
261
+ mostlyclean-compile:
262
+ -rm -f *.$(OBJEXT)
263
+
264
+ distclean-compile:
265
+ -rm -f *.tab.c
266
+
267
+ .cc.o:
268
+ $(CXXCOMPILE) -c -o $@ $<
269
+
270
+ .cc.obj:
271
+ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
272
+
273
+ .cc.lo:
274
+ $(LTCXXCOMPILE) -c -o $@ $<
275
+
276
+ libdispatch_la-ev_dispatch.lo: ev_dispatch.cc
277
+ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdispatch_la_CXXFLAGS) $(CXXFLAGS) -c -o libdispatch_la-ev_dispatch.lo `test -f 'ev_dispatch.cc' || echo '$(srcdir)/'`ev_dispatch.cc
278
+
279
+ libdispatch_la-ev_http.lo: ev_http.cc
280
+ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libdispatch_la_CXXFLAGS) $(CXXFLAGS) -c -o libdispatch_la-ev_http.lo `test -f 'ev_http.cc' || echo '$(srcdir)/'`ev_http.cc
281
+
282
+ mostlyclean-libtool:
283
+ -rm -f *.lo
284
+
285
+ clean-libtool:
286
+ -rm -rf .libs _libs
287
+ install-includeHEADERS: $(include_HEADERS)
288
+ @$(NORMAL_INSTALL)
289
+ test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
290
+ @list='$(include_HEADERS)'; for p in $$list; do \
291
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
292
+ f=$(am__strip_dir) \
293
+ echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
294
+ $(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
295
+ done
296
+
297
+ uninstall-includeHEADERS:
298
+ @$(NORMAL_UNINSTALL)
299
+ @list='$(include_HEADERS)'; for p in $$list; do \
300
+ f=$(am__strip_dir) \
301
+ echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
302
+ rm -f "$(DESTDIR)$(includedir)/$$f"; \
303
+ done
304
+
305
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
306
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
307
+ unique=`for i in $$list; do \
308
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
309
+ done | \
310
+ $(AWK) ' { files[$$0] = 1; } \
311
+ END { for (i in files) print i; }'`; \
312
+ mkid -fID $$unique
313
+ tags: TAGS
314
+
315
+ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
316
+ $(TAGS_FILES) $(LISP)
317
+ tags=; \
318
+ here=`pwd`; \
319
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
320
+ unique=`for i in $$list; do \
321
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
322
+ done | \
323
+ $(AWK) ' { files[$$0] = 1; } \
324
+ END { for (i in files) print i; }'`; \
325
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
326
+ test -n "$$unique" || unique=$$empty_fix; \
327
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
328
+ $$tags $$unique; \
329
+ fi
330
+ ctags: CTAGS
331
+ CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
332
+ $(TAGS_FILES) $(LISP)
333
+ tags=; \
334
+ here=`pwd`; \
335
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
336
+ unique=`for i in $$list; do \
337
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
338
+ done | \
339
+ $(AWK) ' { files[$$0] = 1; } \
340
+ END { for (i in files) print i; }'`; \
341
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
342
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
343
+ $$tags $$unique
344
+
345
+ GTAGS:
346
+ here=`$(am__cd) $(top_builddir) && pwd` \
347
+ && cd $(top_srcdir) \
348
+ && gtags -i $(GTAGS_ARGS) $$here
349
+
350
+ distclean-tags:
351
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
352
+
353
+ distdir: $(DISTFILES)
354
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
355
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
356
+ list='$(DISTFILES)'; \
357
+ dist_files=`for file in $$list; do echo $$file; done | \
358
+ sed -e "s|^$$srcdirstrip/||;t" \
359
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
360
+ case $$dist_files in \
361
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
362
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
363
+ sort -u` ;; \
364
+ esac; \
365
+ for file in $$dist_files; do \
366
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
367
+ if test -d $$d/$$file; then \
368
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
369
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
370
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
371
+ fi; \
372
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
373
+ else \
374
+ test -f $(distdir)/$$file \
375
+ || cp -p $$d/$$file $(distdir)/$$file \
376
+ || exit 1; \
377
+ fi; \
378
+ done
379
+ check-am: all-am
380
+ check: check-am
381
+ all-am: Makefile $(LTLIBRARIES) $(HEADERS)
382
+ installdirs:
383
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
384
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
385
+ done
386
+ install: install-am
387
+ install-exec: install-exec-am
388
+ install-data: install-data-am
389
+ uninstall: uninstall-am
390
+
391
+ install-am: all-am
392
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
393
+
394
+ installcheck: installcheck-am
395
+ install-strip:
396
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
397
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
398
+ `test -z '$(STRIP)' || \
399
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
400
+ mostlyclean-generic:
401
+
402
+ clean-generic:
403
+
404
+ distclean-generic:
405
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
406
+
407
+ maintainer-clean-generic:
408
+ @echo "This command is intended for maintainers to use"
409
+ @echo "it deletes files that may require special tools to rebuild."
410
+ clean: clean-am
411
+
412
+ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
413
+ mostlyclean-am
414
+
415
+ distclean: distclean-am
416
+ -rm -f Makefile
417
+ distclean-am: clean-am distclean-compile distclean-generic \
418
+ distclean-tags
419
+
420
+ dvi: dvi-am
421
+
422
+ dvi-am:
423
+
424
+ html: html-am
425
+
426
+ info: info-am
427
+
428
+ info-am:
429
+
430
+ install-data-am: install-includeHEADERS
431
+
432
+ install-dvi: install-dvi-am
433
+
434
+ install-exec-am: install-libLTLIBRARIES
435
+
436
+ install-html: install-html-am
437
+
438
+ install-info: install-info-am
439
+
440
+ install-man:
441
+
442
+ install-pdf: install-pdf-am
443
+
444
+ install-ps: install-ps-am
445
+
446
+ installcheck-am:
447
+
448
+ maintainer-clean: maintainer-clean-am
449
+ -rm -f Makefile
450
+ maintainer-clean-am: distclean-am maintainer-clean-generic
451
+
452
+ mostlyclean: mostlyclean-am
453
+
454
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
455
+ mostlyclean-libtool
456
+
457
+ pdf: pdf-am
458
+
459
+ pdf-am:
460
+
461
+ ps: ps-am
462
+
463
+ ps-am:
464
+
465
+ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES
466
+
467
+ .MAKE: install-am install-strip
468
+
469
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
470
+ clean-libLTLIBRARIES clean-libtool ctags distclean \
471
+ distclean-compile distclean-generic distclean-libtool \
472
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
473
+ install install-am install-data install-data-am install-dvi \
474
+ install-dvi-am install-exec install-exec-am install-html \
475
+ install-html-am install-includeHEADERS install-info \
476
+ install-info-am install-libLTLIBRARIES install-man install-pdf \
477
+ install-pdf-am install-ps install-ps-am install-strip \
478
+ installcheck installcheck-am installdirs maintainer-clean \
479
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
480
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
481
+ tags uninstall uninstall-am uninstall-includeHEADERS \
482
+ uninstall-libLTLIBRARIES
483
+
484
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
485
+ # Otherwise a system limit (for SysV at least) may be exceeded.
486
+ .NOEXPORT: