rice 1.4.3 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. data/COPYING +2 -2
  2. data/Doxyfile +1 -1
  3. data/Makefile.in +296 -166
  4. data/README +18 -13
  5. data/Rakefile +3 -2
  6. data/aclocal.m4 +375 -248
  7. data/config.guess +296 -261
  8. data/config.sub +268 -94
  9. data/configure +2789 -3054
  10. data/configure.ac +1 -1
  11. data/depcomp +403 -197
  12. data/extconf.rb +14 -3
  13. data/install-sh +139 -119
  14. data/missing +154 -306
  15. data/rice/Builtin_Object_defn.hpp +0 -1
  16. data/rice/Constructor.hpp +31 -30
  17. data/rice/Data_Object_defn.hpp +8 -2
  18. data/rice/Hash.hpp +26 -9
  19. data/rice/Hash.ipp +52 -60
  20. data/rice/Makefile.am +0 -1
  21. data/rice/Makefile.in +278 -152
  22. data/rice/Module_impl.ipp +1 -1
  23. data/rice/VM.cpp +1 -11
  24. data/rice/config.hpp +3 -0
  25. data/rice/config.hpp.in +3 -0
  26. data/rice/detail/Auto_Function_Wrapper.hpp +69 -0
  27. data/rice/detail/Auto_Function_Wrapper.ipp +815 -512
  28. data/rice/detail/Auto_Member_Function_Wrapper.hpp +69 -0
  29. data/rice/detail/Auto_Member_Function_Wrapper.ipp +543 -272
  30. data/rice/detail/object_call.hpp +1 -0
  31. data/rice/detail/ruby.hpp +0 -9
  32. data/rice/detail/ruby_version_code.hpp +1 -1
  33. data/rice/detail/st.hpp +0 -38
  34. data/rice/protect.hpp +1 -0
  35. data/rice/protect.ipp +1 -0
  36. data/rice/to_from_ruby.ipp +1 -1
  37. data/ruby.ac +2 -2
  38. data/ruby/Makefile.in +221 -134
  39. data/ruby/lib/Makefile.in +133 -44
  40. data/ruby/lib/mkmf-rice.rb.in +1 -4
  41. data/ruby/lib/version.rb +1 -1
  42. data/sample/Makefile.in +96 -31
  43. data/test/Makefile.am +0 -1
  44. data/test/Makefile.in +617 -219
  45. data/test/ext/Makefile.in +96 -31
  46. data/test/test_Class.cpp +2 -2
  47. data/test/test_Data_Object.cpp +11 -11
  48. data/test/test_Hash.cpp +7 -4
  49. data/test/test_Module.cpp +17 -1
  50. data/test/test_To_From_Ruby.cpp +44 -0
  51. data/test/test_rice.rb +2 -2
  52. metadata +29 -43
  53. data/rice/Allocation_Strategies.hpp +0 -37
  54. data/test/test_Allocation_Strategies.cpp +0 -77
data/rice/Makefile.am CHANGED
@@ -23,7 +23,6 @@ nobase_include_HEADERS = \
23
23
  Address_Registration_Guard.hpp \
24
24
  Address_Registration_Guard.ipp \
25
25
  Address_Registration_Guard_defn.hpp \
26
- Allocation_Strategies.hpp \
27
26
  Array.hpp \
28
27
  Array.ipp \
29
28
  Arg.hpp \
data/rice/Makefile.in CHANGED
@@ -1,8 +1,8 @@
1
- # Makefile.in generated by automake 1.10 from Makefile.am.
1
+ # Makefile.in generated by automake 1.13.1 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
- # 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2012 Free Software Foundation, Inc.
5
+
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
8
8
  # with or without modifications, as long as this notice is preserved.
@@ -16,9 +16,27 @@
16
16
 
17
17
 
18
18
  VPATH = @srcdir@
19
+ am__make_dryrun = \
20
+ { \
21
+ am__dry=no; \
22
+ case $$MAKEFLAGS in \
23
+ *\\[\ \ ]*) \
24
+ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
25
+ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
26
+ *) \
27
+ for am__flg in $$MAKEFLAGS; do \
28
+ case $$am__flg in \
29
+ *=*|--*) ;; \
30
+ *n*) am__dry=yes; break;; \
31
+ esac; \
32
+ done;; \
33
+ esac; \
34
+ test $$am__dry = yes; \
35
+ }
19
36
  pkgdatadir = $(datadir)/@PACKAGE@
20
- pkglibdir = $(libdir)/@PACKAGE@
21
37
  pkgincludedir = $(includedir)/@PACKAGE@
38
+ pkglibdir = $(libdir)/@PACKAGE@
39
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
22
40
  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
23
41
  install_sh_DATA = $(install_sh) -c -m 644
24
42
  install_sh_PROGRAM = $(install_sh) -c
@@ -34,8 +52,9 @@ POST_UNINSTALL = :
34
52
  build_triplet = @build@
35
53
  host_triplet = @host@
36
54
  subdir = rice
37
- DIST_COMMON = $(nobase_include_HEADERS) $(srcdir)/Makefile.am \
38
- $(srcdir)/Makefile.in $(srcdir)/config.hpp.in
55
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
56
+ $(srcdir)/config.hpp.in $(top_srcdir)/depcomp \
57
+ $(nobase_include_HEADERS)
39
58
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
59
  am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
41
60
  $(top_srcdir)/configure.ac
@@ -44,17 +63,42 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
44
63
  mkinstalldirs = $(install_sh) -d
45
64
  CONFIG_HEADER = config.hpp
46
65
  CONFIG_CLEAN_FILES =
66
+ CONFIG_CLEAN_VPATH_FILES =
47
67
  am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
48
68
  am__vpath_adj = case $$p in \
49
69
  $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
50
70
  *) f=$$p;; \
51
71
  esac;
52
- am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
72
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
73
+ am__install_max = 40
74
+ am__nobase_strip_setup = \
75
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
76
+ am__nobase_strip = \
77
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
78
+ am__nobase_list = $(am__nobase_strip_setup); \
79
+ for p in $$list; do echo "$$p $$p"; done | \
80
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
81
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
82
+ if (++n[$$2] == $(am__install_max)) \
83
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
84
+ END { for (dir in files) print dir, files[dir] }'
85
+ am__base_list = \
86
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
87
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
88
+ am__uninstall_files_from_dir = { \
89
+ test -z "$$files" \
90
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
91
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
92
+ $(am__cd) "$$dir" && rm -f $$files; }; \
93
+ }
53
94
  am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
54
- libLIBRARIES_INSTALL = $(INSTALL_DATA)
55
95
  LIBRARIES = $(lib_LIBRARIES)
56
96
  AR = ar
57
97
  ARFLAGS = cru
98
+ AM_V_AR = $(am__v_AR_@AM_V@)
99
+ am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
100
+ am__v_AR_0 = @echo " AR " $@;
101
+ am__v_AR_1 =
58
102
  librice_a_AR = $(AR) $(ARFLAGS)
59
103
  librice_a_LIBADD =
60
104
  am_librice_a_OBJECTS = Class.$(OBJEXT) Data_Type.$(OBJEXT) \
@@ -65,23 +109,71 @@ am_librice_a_OBJECTS = Class.$(OBJEXT) Data_Type.$(OBJEXT) \
65
109
  check_ruby_type.$(OBJEXT) demangle.$(OBJEXT) \
66
110
  method_data.$(OBJEXT) protect.$(OBJEXT)
67
111
  librice_a_OBJECTS = $(am_librice_a_OBJECTS)
112
+ AM_V_P = $(am__v_P_@AM_V@)
113
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
114
+ am__v_P_0 = false
115
+ am__v_P_1 = :
116
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
117
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
118
+ am__v_GEN_0 = @echo " GEN " $@;
119
+ am__v_GEN_1 =
120
+ AM_V_at = $(am__v_at_@AM_V@)
121
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
122
+ am__v_at_0 = @
123
+ am__v_at_1 =
68
124
  DEFAULT_INCLUDES = -I.@am__isrc@
69
125
  depcomp = $(SHELL) $(top_srcdir)/depcomp
70
126
  am__depfiles_maybe = depfiles
127
+ am__mv = mv -f
128
+ AM_V_lt = $(am__v_lt_@AM_V@)
129
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
130
+ am__v_lt_0 = --silent
131
+ am__v_lt_1 =
71
132
  CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
72
133
  $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
134
+ AM_V_CXX = $(am__v_CXX_@AM_V@)
135
+ am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
136
+ am__v_CXX_0 = @echo " CXX " $@;
137
+ am__v_CXX_1 =
73
138
  CXXLD = $(CXX)
74
139
  CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
75
140
  -o $@
141
+ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
142
+ am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
143
+ am__v_CXXLD_0 = @echo " CXXLD " $@;
144
+ am__v_CXXLD_1 =
76
145
  SOURCES = $(librice_a_SOURCES)
77
146
  DIST_SOURCES = $(librice_a_SOURCES)
78
- nobase_includeHEADERS_INSTALL = $(install_sh_DATA)
147
+ am__can_run_installinfo = \
148
+ case $$AM_UPDATE_INFO_DIR in \
149
+ n|no|NO) false;; \
150
+ *) (install-info --version) >/dev/null 2>&1;; \
151
+ esac
79
152
  HEADERS = $(nobase_include_HEADERS)
153
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
154
+ $(LISP)config.hpp.in
155
+ # Read a list of newline-separated strings from the standard input,
156
+ # and print each of them once, without duplicates. Input order is
157
+ # *not* preserved.
158
+ am__uniquify_input = $(AWK) '\
159
+ BEGIN { nonempty = 0; } \
160
+ { items[$$0] = 1; nonempty = 1; } \
161
+ END { if (nonempty) { for (i in items) print i; }; } \
162
+ '
163
+ # Make sure the list of sources is unique. This is necessary because,
164
+ # e.g., the same source file might be shared among _SOURCES variables
165
+ # for different programs/libraries.
166
+ am__define_uniq_tagged_files = \
167
+ list='$(am__tagged_files)'; \
168
+ unique=`for i in $$list; do \
169
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
170
+ done | $(am__uniquify_input)`
80
171
  ETAGS = etags
81
172
  CTAGS = ctags
82
173
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
83
174
  ACLOCAL = @ACLOCAL@
84
175
  AMTAR = @AMTAR@
176
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
85
177
  AUTOCONF = @AUTOCONF@
86
178
  AUTOHEADER = @AUTOHEADER@
87
179
  AUTOMAKE = @AUTOMAKE@
@@ -138,6 +230,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
138
230
  PACKAGE_NAME = @PACKAGE_NAME@
139
231
  PACKAGE_STRING = @PACKAGE_STRING@
140
232
  PACKAGE_TARNAME = @PACKAGE_TARNAME@
233
+ PACKAGE_URL = @PACKAGE_URL@
141
234
  PACKAGE_VERSION = @PACKAGE_VERSION@
142
235
  PATH_SEPARATOR = @PATH_SEPARATOR@
143
236
  RANLIB = @RANLIB@
@@ -207,6 +300,7 @@ sharedstatedir = @sharedstatedir@
207
300
  srcdir = @srcdir@
208
301
  sysconfdir = @sysconfdir@
209
302
  target_alias = @target_alias@
303
+ top_build_prefix = @top_build_prefix@
210
304
  top_builddir = @top_builddir@
211
305
  top_srcdir = @top_srcdir@
212
306
  lib_LIBRARIES = librice.a
@@ -233,7 +327,6 @@ nobase_include_HEADERS = \
233
327
  Address_Registration_Guard.hpp \
234
328
  Address_Registration_Guard.ipp \
235
329
  Address_Registration_Guard_defn.hpp \
236
- Allocation_Strategies.hpp \
237
330
  Array.hpp \
238
331
  Array.ipp \
239
332
  Arg.hpp \
@@ -343,14 +436,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
343
436
  @for dep in $?; do \
344
437
  case '$(am__configure_deps)' in \
345
438
  *$$dep*) \
346
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
347
- && exit 0; \
439
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
440
+ && { if test -f $@; then exit 0; else break; fi; }; \
348
441
  exit 1;; \
349
442
  esac; \
350
443
  done; \
351
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu rice/Makefile'; \
352
- cd $(top_srcdir) && \
353
- $(AUTOMAKE) --gnu rice/Makefile
444
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu rice/Makefile'; \
445
+ $(am__cd) $(top_srcdir) && \
446
+ $(AUTOMAKE) --gnu rice/Makefile
354
447
  .PRECIOUS: Makefile
355
448
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
356
449
  @case '$?' in \
@@ -368,18 +461,17 @@ $(top_srcdir)/configure: $(am__configure_deps)
368
461
  cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
369
462
  $(ACLOCAL_M4): $(am__aclocal_m4_deps)
370
463
  cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
464
+ $(am__aclocal_m4_deps):
371
465
 
372
466
  config.hpp: stamp-h1
373
- @if test ! -f $@; then \
374
- rm -f stamp-h1; \
375
- $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
376
- else :; fi
467
+ @if test ! -f $@; then rm -f stamp-h1; else :; fi
468
+ @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
377
469
 
378
470
  stamp-h1: $(srcdir)/config.hpp.in $(top_builddir)/config.status
379
471
  @rm -f stamp-h1
380
472
  cd $(top_builddir) && $(SHELL) ./config.status rice/config.hpp
381
473
  $(srcdir)/config.hpp.in: $(am__configure_deps)
382
- cd $(top_srcdir) && $(AUTOHEADER)
474
+ ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
383
475
  rm -f stamp-h1
384
476
  touch $@
385
477
 
@@ -387,37 +479,39 @@ distclean-hdr:
387
479
  -rm -f config.hpp stamp-h1
388
480
  install-libLIBRARIES: $(lib_LIBRARIES)
389
481
  @$(NORMAL_INSTALL)
390
- test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
391
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
482
+ @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
483
+ list2=; for p in $$list; do \
392
484
  if test -f $$p; then \
393
- f=$(am__strip_dir) \
394
- echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
395
- $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
485
+ list2="$$list2 $$p"; \
396
486
  else :; fi; \
397
- done
487
+ done; \
488
+ test -z "$$list2" || { \
489
+ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
490
+ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
491
+ echo " $(INSTALL_DATA) $$list2 '$(DESTDIR)$(libdir)'"; \
492
+ $(INSTALL_DATA) $$list2 "$(DESTDIR)$(libdir)" || exit $$?; }
398
493
  @$(POST_INSTALL)
399
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
494
+ @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
495
+ for p in $$list; do \
400
496
  if test -f $$p; then \
401
- p=$(am__strip_dir) \
402
- echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \
403
- $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
497
+ $(am__strip_dir) \
498
+ echo " ( cd '$(DESTDIR)$(libdir)' && $(RANLIB) $$f )"; \
499
+ ( cd "$(DESTDIR)$(libdir)" && $(RANLIB) $$f ) || exit $$?; \
404
500
  else :; fi; \
405
501
  done
406
502
 
407
503
  uninstall-libLIBRARIES:
408
504
  @$(NORMAL_UNINSTALL)
409
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
410
- p=$(am__strip_dir) \
411
- echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \
412
- rm -f "$(DESTDIR)$(libdir)/$$p"; \
413
- done
505
+ @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
506
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
507
+ dir='$(DESTDIR)$(libdir)'; $(am__uninstall_files_from_dir)
414
508
 
415
509
  clean-libLIBRARIES:
416
510
  -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
417
- librice.a: $(librice_a_OBJECTS) $(librice_a_DEPENDENCIES)
418
- -rm -f librice.a
419
- $(librice_a_AR) librice.a $(librice_a_OBJECTS) $(librice_a_LIBADD)
420
- $(RANLIB) librice.a
511
+ librice.a: $(librice_a_OBJECTS) $(librice_a_DEPENDENCIES) $(EXTRA_librice_a_DEPENDENCIES)
512
+ $(AM_V_at)-rm -f librice.a
513
+ $(AM_V_AR)$(librice_a_AR) librice.a $(librice_a_OBJECTS) $(librice_a_LIBADD)
514
+ $(AM_V_at)$(RANLIB) librice.a
421
515
 
422
516
  mostlyclean-compile:
423
517
  -rm -f *.$(OBJEXT)
@@ -444,138 +538,147 @@ distclean-compile:
444
538
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/protect.Po@am__quote@
445
539
 
446
540
  .cpp.o:
447
- @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
448
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
449
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
541
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
542
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
543
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
450
544
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
451
- @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
545
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
452
546
 
453
547
  .cpp.obj:
454
- @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
455
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
456
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
548
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
549
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
550
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
457
551
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
458
- @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
552
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
459
553
 
460
554
  check_ruby_type.o: detail/check_ruby_type.cpp
461
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.o -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
462
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
463
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/check_ruby_type.cpp' object='check_ruby_type.o' libtool=no @AMDEPBACKSLASH@
555
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.o -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
556
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
557
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/check_ruby_type.cpp' object='check_ruby_type.o' libtool=no @AMDEPBACKSLASH@
464
558
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
465
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
559
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.o `test -f 'detail/check_ruby_type.cpp' || echo '$(srcdir)/'`detail/check_ruby_type.cpp
466
560
 
467
561
  check_ruby_type.obj: detail/check_ruby_type.cpp
468
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.obj -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
469
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
470
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/check_ruby_type.cpp' object='check_ruby_type.obj' libtool=no @AMDEPBACKSLASH@
562
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT check_ruby_type.obj -MD -MP -MF $(DEPDIR)/check_ruby_type.Tpo -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
563
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/check_ruby_type.Tpo $(DEPDIR)/check_ruby_type.Po
564
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/check_ruby_type.cpp' object='check_ruby_type.obj' libtool=no @AMDEPBACKSLASH@
471
565
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
472
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
566
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o check_ruby_type.obj `if test -f 'detail/check_ruby_type.cpp'; then $(CYGPATH_W) 'detail/check_ruby_type.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/check_ruby_type.cpp'; fi`
473
567
 
474
568
  demangle.o: detail/demangle.cpp
475
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.o -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
476
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
477
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.o' libtool=no @AMDEPBACKSLASH@
569
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.o -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
570
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
571
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/demangle.cpp' object='demangle.o' libtool=no @AMDEPBACKSLASH@
478
572
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
479
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
573
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.o `test -f 'detail/demangle.cpp' || echo '$(srcdir)/'`detail/demangle.cpp
480
574
 
481
575
  demangle.obj: detail/demangle.cpp
482
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.obj -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
483
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
484
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/demangle.cpp' object='demangle.obj' libtool=no @AMDEPBACKSLASH@
576
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT demangle.obj -MD -MP -MF $(DEPDIR)/demangle.Tpo -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
577
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/demangle.Tpo $(DEPDIR)/demangle.Po
578
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/demangle.cpp' object='demangle.obj' libtool=no @AMDEPBACKSLASH@
485
579
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
486
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
580
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o demangle.obj `if test -f 'detail/demangle.cpp'; then $(CYGPATH_W) 'detail/demangle.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/demangle.cpp'; fi`
487
581
 
488
582
  method_data.o: detail/method_data.cpp
489
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.o -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
490
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
491
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/method_data.cpp' object='method_data.o' libtool=no @AMDEPBACKSLASH@
583
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.o -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
584
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
585
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/method_data.cpp' object='method_data.o' libtool=no @AMDEPBACKSLASH@
492
586
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
493
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
587
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.o `test -f 'detail/method_data.cpp' || echo '$(srcdir)/'`detail/method_data.cpp
494
588
 
495
589
  method_data.obj: detail/method_data.cpp
496
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.obj -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
497
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
498
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/method_data.cpp' object='method_data.obj' libtool=no @AMDEPBACKSLASH@
590
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT method_data.obj -MD -MP -MF $(DEPDIR)/method_data.Tpo -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
591
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/method_data.Tpo $(DEPDIR)/method_data.Po
592
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/method_data.cpp' object='method_data.obj' libtool=no @AMDEPBACKSLASH@
499
593
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
500
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
594
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o method_data.obj `if test -f 'detail/method_data.cpp'; then $(CYGPATH_W) 'detail/method_data.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/method_data.cpp'; fi`
501
595
 
502
596
  protect.o: detail/protect.cpp
503
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.o -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
504
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
505
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/protect.cpp' object='protect.o' libtool=no @AMDEPBACKSLASH@
597
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.o -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
598
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
599
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/protect.cpp' object='protect.o' libtool=no @AMDEPBACKSLASH@
506
600
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
507
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
601
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.o `test -f 'detail/protect.cpp' || echo '$(srcdir)/'`detail/protect.cpp
508
602
 
509
603
  protect.obj: detail/protect.cpp
510
- @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.obj -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
511
- @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
512
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='detail/protect.cpp' object='protect.obj' libtool=no @AMDEPBACKSLASH@
604
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT protect.obj -MD -MP -MF $(DEPDIR)/protect.Tpo -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
605
+ @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/protect.Tpo $(DEPDIR)/protect.Po
606
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='detail/protect.cpp' object='protect.obj' libtool=no @AMDEPBACKSLASH@
513
607
  @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
514
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
608
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o protect.obj `if test -f 'detail/protect.cpp'; then $(CYGPATH_W) 'detail/protect.cpp'; else $(CYGPATH_W) '$(srcdir)/detail/protect.cpp'; fi`
515
609
  install-nobase_includeHEADERS: $(nobase_include_HEADERS)
516
610
  @$(NORMAL_INSTALL)
517
- test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
518
- @$(am__vpath_adj_setup) \
519
- list='$(nobase_include_HEADERS)'; for p in $$list; do \
520
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
521
- $(am__vpath_adj) \
522
- echo " $(nobase_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
523
- $(nobase_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
611
+ @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
612
+ if test -n "$$list"; then \
613
+ echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
614
+ $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
615
+ fi; \
616
+ $(am__nobase_list) | while read dir files; do \
617
+ xfiles=; for file in $$files; do \
618
+ if test -f "$$file"; then xfiles="$$xfiles $$file"; \
619
+ else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
620
+ test -z "$$xfiles" || { \
621
+ test "x$$dir" = x. || { \
622
+ echo " $(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
623
+ $(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
624
+ echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
625
+ $(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
524
626
  done
525
627
 
526
628
  uninstall-nobase_includeHEADERS:
527
629
  @$(NORMAL_UNINSTALL)
528
- @$(am__vpath_adj_setup) \
529
- list='$(nobase_include_HEADERS)'; for p in $$list; do \
530
- $(am__vpath_adj) \
531
- echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
532
- rm -f "$(DESTDIR)$(includedir)/$$f"; \
533
- done
630
+ @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
631
+ $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
632
+ dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
633
+
634
+ ID: $(am__tagged_files)
635
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
636
+ tags: tags-am
637
+ TAGS: tags
534
638
 
535
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
536
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
537
- unique=`for i in $$list; do \
538
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
539
- done | \
540
- $(AWK) ' { files[$$0] = 1; } \
541
- END { for (i in files) print i; }'`; \
542
- mkid -fID $$unique
543
- tags: TAGS
544
-
545
- TAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
546
- $(TAGS_FILES) $(LISP)
547
- tags=; \
639
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
640
+ set x; \
548
641
  here=`pwd`; \
549
- list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
550
- unique=`for i in $$list; do \
551
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
552
- done | \
553
- $(AWK) ' { files[$$0] = 1; } \
554
- END { for (i in files) print i; }'`; \
555
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
642
+ $(am__define_uniq_tagged_files); \
643
+ shift; \
644
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
556
645
  test -n "$$unique" || unique=$$empty_fix; \
557
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
558
- $$tags $$unique; \
646
+ if test $$# -gt 0; then \
647
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
648
+ "$$@" $$unique; \
649
+ else \
650
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
651
+ $$unique; \
652
+ fi; \
559
653
  fi
560
- ctags: CTAGS
561
- CTAGS: $(HEADERS) $(SOURCES) config.hpp.in $(TAGS_DEPENDENCIES) \
562
- $(TAGS_FILES) $(LISP)
563
- tags=; \
564
- here=`pwd`; \
565
- list='$(SOURCES) $(HEADERS) config.hpp.in $(LISP) $(TAGS_FILES)'; \
566
- unique=`for i in $$list; do \
567
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
568
- done | \
569
- $(AWK) ' { files[$$0] = 1; } \
570
- END { for (i in files) print i; }'`; \
571
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
654
+ ctags: ctags-am
655
+
656
+ CTAGS: ctags
657
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
658
+ $(am__define_uniq_tagged_files); \
659
+ test -z "$(CTAGS_ARGS)$$unique" \
572
660
  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
573
- $$tags $$unique
661
+ $$unique
574
662
 
575
663
  GTAGS:
576
664
  here=`$(am__cd) $(top_builddir) && pwd` \
577
- && cd $(top_srcdir) \
578
- && gtags -i $(GTAGS_ARGS) $$here
665
+ && $(am__cd) $(top_srcdir) \
666
+ && gtags -i $(GTAGS_ARGS) "$$here"
667
+ cscopelist: cscopelist-am
668
+
669
+ cscopelist-am: $(am__tagged_files)
670
+ list='$(am__tagged_files)'; \
671
+ case "$(srcdir)" in \
672
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
673
+ *) sdir=$(subdir)/$(srcdir) ;; \
674
+ esac; \
675
+ for i in $$list; do \
676
+ if test -f "$$i"; then \
677
+ echo "$(subdir)/$$i"; \
678
+ else \
679
+ echo "$$sdir/$$i"; \
680
+ fi; \
681
+ done >> $(top_builddir)/cscope.files
579
682
 
580
683
  distclean-tags:
581
684
  -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -596,13 +699,17 @@ distdir: $(DISTFILES)
596
699
  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
597
700
  if test -d $$d/$$file; then \
598
701
  dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
702
+ if test -d "$(distdir)/$$file"; then \
703
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
704
+ fi; \
599
705
  if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
600
- cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
706
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
707
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
601
708
  fi; \
602
- cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
709
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
603
710
  else \
604
- test -f "$(distdir)"/$$file \
605
- || cp -p $$d/$$file "$(distdir)"/$$file \
711
+ test -f "$(distdir)/$$file" \
712
+ || cp -p $$d/$$file "$(distdir)/$$file" \
606
713
  || exit 1; \
607
714
  fi; \
608
715
  done
@@ -623,16 +730,22 @@ install-am: all-am
623
730
 
624
731
  installcheck: installcheck-am
625
732
  install-strip:
626
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
627
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
628
- `test -z '$(STRIP)' || \
629
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
733
+ if test -z '$(STRIP)'; then \
734
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
735
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
736
+ install; \
737
+ else \
738
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
739
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
740
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
741
+ fi
630
742
  mostlyclean-generic:
631
743
 
632
744
  clean-generic:
633
745
 
634
746
  distclean-generic:
635
747
  -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
748
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
636
749
 
637
750
  maintainer-clean-generic:
638
751
  @echo "This command is intended for maintainers to use"
@@ -653,6 +766,8 @@ dvi-am:
653
766
 
654
767
  html: html-am
655
768
 
769
+ html-am:
770
+
656
771
  info: info-am
657
772
 
658
773
  info-am:
@@ -661,18 +776,28 @@ install-data-am: install-nobase_includeHEADERS
661
776
 
662
777
  install-dvi: install-dvi-am
663
778
 
779
+ install-dvi-am:
780
+
664
781
  install-exec-am: install-libLIBRARIES
665
782
 
666
783
  install-html: install-html-am
667
784
 
785
+ install-html-am:
786
+
668
787
  install-info: install-info-am
669
788
 
789
+ install-info-am:
790
+
670
791
  install-man:
671
792
 
672
793
  install-pdf: install-pdf-am
673
794
 
795
+ install-pdf-am:
796
+
674
797
  install-ps: install-ps-am
675
798
 
799
+ install-ps-am:
800
+
676
801
  installcheck-am:
677
802
 
678
803
  maintainer-clean: maintainer-clean-am
@@ -694,23 +819,24 @@ ps-am:
694
819
 
695
820
  uninstall-am: uninstall-libLIBRARIES uninstall-nobase_includeHEADERS
696
821
 
697
- .MAKE: install-am install-strip
698
-
699
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
700
- clean-libLIBRARIES ctags distclean distclean-compile \
701
- distclean-generic distclean-hdr distclean-tags distdir dvi \
702
- dvi-am html html-am info info-am install install-am \
703
- install-data install-data-am install-dvi install-dvi-am \
704
- install-exec install-exec-am install-html install-html-am \
705
- install-info install-info-am install-libLIBRARIES install-man \
706
- install-nobase_includeHEADERS install-pdf install-pdf-am \
707
- install-ps install-ps-am install-strip installcheck \
708
- installcheck-am installdirs maintainer-clean \
709
- maintainer-clean-generic mostlyclean mostlyclean-compile \
710
- mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
711
- uninstall-am uninstall-libLIBRARIES \
822
+ .MAKE: all install-am install-strip
823
+
824
+ .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
825
+ clean-libLIBRARIES cscopelist-am ctags ctags-am distclean \
826
+ distclean-compile distclean-generic distclean-hdr \
827
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
828
+ install install-am install-data install-data-am install-dvi \
829
+ install-dvi-am install-exec install-exec-am install-html \
830
+ install-html-am install-info install-info-am \
831
+ install-libLIBRARIES install-man install-nobase_includeHEADERS \
832
+ install-pdf install-pdf-am install-ps install-ps-am \
833
+ install-strip installcheck installcheck-am installdirs \
834
+ maintainer-clean maintainer-clean-generic mostlyclean \
835
+ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
836
+ tags tags-am uninstall uninstall-am uninstall-libLIBRARIES \
712
837
  uninstall-nobase_includeHEADERS
713
838
 
839
+
714
840
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
715
841
  # Otherwise a system limit (for SysV at least) may be exceeded.
716
842
  .NOEXPORT: