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.
- data/COPYING +2 -2
- data/Doxyfile +1 -1
- data/Makefile.in +296 -166
- data/README +18 -13
- data/Rakefile +3 -2
- data/aclocal.m4 +375 -248
- data/config.guess +296 -261
- data/config.sub +268 -94
- data/configure +2789 -3054
- data/configure.ac +1 -1
- data/depcomp +403 -197
- data/extconf.rb +14 -3
- data/install-sh +139 -119
- data/missing +154 -306
- data/rice/Builtin_Object_defn.hpp +0 -1
- data/rice/Constructor.hpp +31 -30
- data/rice/Data_Object_defn.hpp +8 -2
- data/rice/Hash.hpp +26 -9
- data/rice/Hash.ipp +52 -60
- data/rice/Makefile.am +0 -1
- data/rice/Makefile.in +278 -152
- data/rice/Module_impl.ipp +1 -1
- data/rice/VM.cpp +1 -11
- data/rice/config.hpp +3 -0
- data/rice/config.hpp.in +3 -0
- data/rice/detail/Auto_Function_Wrapper.hpp +69 -0
- data/rice/detail/Auto_Function_Wrapper.ipp +815 -512
- data/rice/detail/Auto_Member_Function_Wrapper.hpp +69 -0
- data/rice/detail/Auto_Member_Function_Wrapper.ipp +543 -272
- data/rice/detail/object_call.hpp +1 -0
- data/rice/detail/ruby.hpp +0 -9
- data/rice/detail/ruby_version_code.hpp +1 -1
- data/rice/detail/st.hpp +0 -38
- data/rice/protect.hpp +1 -0
- data/rice/protect.ipp +1 -0
- data/rice/to_from_ruby.ipp +1 -1
- data/ruby.ac +2 -2
- data/ruby/Makefile.in +221 -134
- data/ruby/lib/Makefile.in +133 -44
- data/ruby/lib/mkmf-rice.rb.in +1 -4
- data/ruby/lib/version.rb +1 -1
- data/sample/Makefile.in +96 -31
- data/test/Makefile.am +0 -1
- data/test/Makefile.in +617 -219
- data/test/ext/Makefile.in +96 -31
- data/test/test_Class.cpp +2 -2
- data/test/test_Data_Object.cpp +11 -11
- data/test/test_Hash.cpp +7 -4
- data/test/test_Module.cpp +17 -1
- data/test/test_To_From_Ruby.cpp +44 -0
- data/test/test_rice.rb +2 -2
- metadata +29 -43
- data/rice/Allocation_Strategies.hpp +0 -37
- data/test/test_Allocation_Strategies.cpp +0 -77
data/ruby/lib/Makefile.in
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.13.1 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994
|
5
|
-
|
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.
|
@@ -15,9 +15,27 @@
|
|
15
15
|
@SET_MAKE@
|
16
16
|
|
17
17
|
VPATH = @srcdir@
|
18
|
+
am__make_dryrun = \
|
19
|
+
{ \
|
20
|
+
am__dry=no; \
|
21
|
+
case $$MAKEFLAGS in \
|
22
|
+
*\\[\ \ ]*) \
|
23
|
+
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
24
|
+
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
25
|
+
*) \
|
26
|
+
for am__flg in $$MAKEFLAGS; do \
|
27
|
+
case $$am__flg in \
|
28
|
+
*=*|--*) ;; \
|
29
|
+
*n*) am__dry=yes; break;; \
|
30
|
+
esac; \
|
31
|
+
done;; \
|
32
|
+
esac; \
|
33
|
+
test $$am__dry = yes; \
|
34
|
+
}
|
18
35
|
pkgdatadir = $(datadir)/@PACKAGE@
|
19
|
-
pkglibdir = $(libdir)/@PACKAGE@
|
20
36
|
pkgincludedir = $(includedir)/@PACKAGE@
|
37
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
38
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
21
39
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
22
40
|
install_sh_DATA = $(install_sh) -c -m 644
|
23
41
|
install_sh_PROGRAM = $(install_sh) -c
|
@@ -33,7 +51,7 @@ POST_UNINSTALL = :
|
|
33
51
|
build_triplet = @build@
|
34
52
|
host_triplet = @host@
|
35
53
|
subdir = ruby/lib
|
36
|
-
DIST_COMMON = $(srcdir)/Makefile.
|
54
|
+
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
37
55
|
$(srcdir)/mkmf-rice.rb.in
|
38
56
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
39
57
|
am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
|
@@ -43,20 +61,60 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
43
61
|
mkinstalldirs = $(install_sh) -d
|
44
62
|
CONFIG_HEADER = $(top_builddir)/rice/config.hpp
|
45
63
|
CONFIG_CLEAN_FILES = mkmf-rice.rb
|
64
|
+
CONFIG_CLEAN_VPATH_FILES =
|
65
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
66
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
67
|
+
am__v_P_0 = false
|
68
|
+
am__v_P_1 = :
|
69
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
70
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
71
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
72
|
+
am__v_GEN_1 =
|
73
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
74
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
75
|
+
am__v_at_0 = @
|
76
|
+
am__v_at_1 =
|
46
77
|
SOURCES =
|
47
78
|
DIST_SOURCES =
|
79
|
+
am__can_run_installinfo = \
|
80
|
+
case $$AM_UPDATE_INFO_DIR in \
|
81
|
+
n|no|NO) false;; \
|
82
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
83
|
+
esac
|
48
84
|
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
49
85
|
am__vpath_adj = case $$p in \
|
50
86
|
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
51
87
|
*) f=$$p;; \
|
52
88
|
esac;
|
53
|
-
am__strip_dir =
|
89
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
90
|
+
am__install_max = 40
|
91
|
+
am__nobase_strip_setup = \
|
92
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
93
|
+
am__nobase_strip = \
|
94
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
95
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
96
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
97
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
98
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
99
|
+
if (++n[$$2] == $(am__install_max)) \
|
100
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
101
|
+
END { for (dir in files) print dir, files[dir] }'
|
102
|
+
am__base_list = \
|
103
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
104
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
105
|
+
am__uninstall_files_from_dir = { \
|
106
|
+
test -z "$$files" \
|
107
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
108
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
109
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
110
|
+
}
|
54
111
|
am__installdirs = "$(DESTDIR)$(rubydir)"
|
55
|
-
rubyDATA_INSTALL = $(INSTALL_DATA)
|
56
112
|
DATA = $(ruby_DATA)
|
113
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
57
114
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
58
115
|
ACLOCAL = @ACLOCAL@
|
59
116
|
AMTAR = @AMTAR@
|
117
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
60
118
|
AUTOCONF = @AUTOCONF@
|
61
119
|
AUTOHEADER = @AUTOHEADER@
|
62
120
|
AUTOMAKE = @AUTOMAKE@
|
@@ -113,6 +171,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
113
171
|
PACKAGE_NAME = @PACKAGE_NAME@
|
114
172
|
PACKAGE_STRING = @PACKAGE_STRING@
|
115
173
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
174
|
+
PACKAGE_URL = @PACKAGE_URL@
|
116
175
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
117
176
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
118
177
|
RANLIB = @RANLIB@
|
@@ -182,6 +241,7 @@ sharedstatedir = @sharedstatedir@
|
|
182
241
|
srcdir = @srcdir@
|
183
242
|
sysconfdir = @sysconfdir@
|
184
243
|
target_alias = @target_alias@
|
244
|
+
top_build_prefix = @top_build_prefix@
|
185
245
|
top_builddir = @top_builddir@
|
186
246
|
top_srcdir = @top_srcdir@
|
187
247
|
rubydir = @RUBY_SITELIBDIR@
|
@@ -193,14 +253,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
193
253
|
@for dep in $?; do \
|
194
254
|
case '$(am__configure_deps)' in \
|
195
255
|
*$$dep*) \
|
196
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
197
|
-
|
256
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
257
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
198
258
|
exit 1;; \
|
199
259
|
esac; \
|
200
260
|
done; \
|
201
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu
|
202
|
-
|
203
|
-
$(AUTOMAKE) --gnu
|
261
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu ruby/lib/Makefile'; \
|
262
|
+
$(am__cd) $(top_srcdir) && \
|
263
|
+
$(AUTOMAKE) --gnu ruby/lib/Makefile
|
204
264
|
.PRECIOUS: Makefile
|
205
265
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
206
266
|
@case '$?' in \
|
@@ -218,30 +278,35 @@ $(top_srcdir)/configure: $(am__configure_deps)
|
|
218
278
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
219
279
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
220
280
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
281
|
+
$(am__aclocal_m4_deps):
|
221
282
|
mkmf-rice.rb: $(top_builddir)/config.status $(srcdir)/mkmf-rice.rb.in
|
222
283
|
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
223
284
|
install-rubyDATA: $(ruby_DATA)
|
224
285
|
@$(NORMAL_INSTALL)
|
225
|
-
test -
|
226
|
-
|
286
|
+
@list='$(ruby_DATA)'; test -n "$(rubydir)" || list=; \
|
287
|
+
if test -n "$$list"; then \
|
288
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(rubydir)'"; \
|
289
|
+
$(MKDIR_P) "$(DESTDIR)$(rubydir)" || exit 1; \
|
290
|
+
fi; \
|
291
|
+
for p in $$list; do \
|
227
292
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
228
|
-
|
229
|
-
|
230
|
-
|
293
|
+
echo "$$d$$p"; \
|
294
|
+
done | $(am__base_list) | \
|
295
|
+
while read files; do \
|
296
|
+
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(rubydir)'"; \
|
297
|
+
$(INSTALL_DATA) $$files "$(DESTDIR)$(rubydir)" || exit $$?; \
|
231
298
|
done
|
232
299
|
|
233
300
|
uninstall-rubyDATA:
|
234
301
|
@$(NORMAL_UNINSTALL)
|
235
|
-
@list='$(ruby_DATA)';
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
done
|
240
|
-
tags: TAGS
|
241
|
-
TAGS:
|
302
|
+
@list='$(ruby_DATA)'; test -n "$(rubydir)" || list=; \
|
303
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
304
|
+
dir='$(DESTDIR)$(rubydir)'; $(am__uninstall_files_from_dir)
|
305
|
+
tags TAGS:
|
242
306
|
|
243
|
-
ctags
|
244
|
-
|
307
|
+
ctags CTAGS:
|
308
|
+
|
309
|
+
cscope cscopelist:
|
245
310
|
|
246
311
|
|
247
312
|
distdir: $(DISTFILES)
|
@@ -260,13 +325,17 @@ distdir: $(DISTFILES)
|
|
260
325
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
261
326
|
if test -d $$d/$$file; then \
|
262
327
|
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
328
|
+
if test -d "$(distdir)/$$file"; then \
|
329
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
330
|
+
fi; \
|
263
331
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
264
|
-
cp -
|
332
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
333
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
265
334
|
fi; \
|
266
|
-
cp -
|
335
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
267
336
|
else \
|
268
|
-
test -f "$(distdir)
|
269
|
-
|| cp -p $$d/$$file "$(distdir)
|
337
|
+
test -f "$(distdir)/$$file" \
|
338
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
270
339
|
|| exit 1; \
|
271
340
|
fi; \
|
272
341
|
done
|
@@ -287,16 +356,22 @@ install-am: all-am
|
|
287
356
|
|
288
357
|
installcheck: installcheck-am
|
289
358
|
install-strip:
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
359
|
+
if test -z '$(STRIP)'; then \
|
360
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
361
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
362
|
+
install; \
|
363
|
+
else \
|
364
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
365
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
366
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
367
|
+
fi
|
294
368
|
mostlyclean-generic:
|
295
369
|
|
296
370
|
clean-generic:
|
297
371
|
|
298
372
|
distclean-generic:
|
299
373
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
374
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
300
375
|
|
301
376
|
maintainer-clean-generic:
|
302
377
|
@echo "This command is intended for maintainers to use"
|
@@ -315,6 +390,8 @@ dvi-am:
|
|
315
390
|
|
316
391
|
html: html-am
|
317
392
|
|
393
|
+
html-am:
|
394
|
+
|
318
395
|
info: info-am
|
319
396
|
|
320
397
|
info-am:
|
@@ -323,18 +400,28 @@ install-data-am: install-rubyDATA
|
|
323
400
|
|
324
401
|
install-dvi: install-dvi-am
|
325
402
|
|
403
|
+
install-dvi-am:
|
404
|
+
|
326
405
|
install-exec-am:
|
327
406
|
|
328
407
|
install-html: install-html-am
|
329
408
|
|
409
|
+
install-html-am:
|
410
|
+
|
330
411
|
install-info: install-info-am
|
331
412
|
|
413
|
+
install-info-am:
|
414
|
+
|
332
415
|
install-man:
|
333
416
|
|
334
417
|
install-pdf: install-pdf-am
|
335
418
|
|
419
|
+
install-pdf-am:
|
420
|
+
|
336
421
|
install-ps: install-ps-am
|
337
422
|
|
423
|
+
install-ps-am:
|
424
|
+
|
338
425
|
installcheck-am:
|
339
426
|
|
340
427
|
maintainer-clean: maintainer-clean-am
|
@@ -357,16 +444,18 @@ uninstall-am: uninstall-rubyDATA
|
|
357
444
|
|
358
445
|
.MAKE: install-am install-strip
|
359
446
|
|
360
|
-
.PHONY: all all-am check check-am clean clean-generic
|
361
|
-
distclean-generic distdir dvi dvi-am html
|
362
|
-
|
363
|
-
install-
|
364
|
-
install-
|
365
|
-
install-
|
366
|
-
install-
|
367
|
-
|
368
|
-
mostlyclean mostlyclean-generic pdf
|
369
|
-
|
447
|
+
.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
|
448
|
+
ctags-am distclean distclean-generic distdir dvi dvi-am html \
|
449
|
+
html-am info info-am install install-am install-data \
|
450
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
451
|
+
install-exec-am install-html install-html-am install-info \
|
452
|
+
install-info-am install-man install-pdf install-pdf-am \
|
453
|
+
install-ps install-ps-am install-rubyDATA install-strip \
|
454
|
+
installcheck installcheck-am installdirs maintainer-clean \
|
455
|
+
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
456
|
+
pdf-am ps ps-am tags-am uninstall uninstall-am \
|
457
|
+
uninstall-rubyDATA
|
458
|
+
|
370
459
|
|
371
460
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
372
461
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
data/ruby/lib/mkmf-rice.rb.in
CHANGED
@@ -45,7 +45,7 @@ def init_mkmf_rice(config = CONFIG)
|
|
45
45
|
$preload ||= nil
|
46
46
|
|
47
47
|
$CPPFLAGS << " #{$RICE_CPPFLAGS} -I#{$RICE_PREFIX}/include"
|
48
|
-
$LDFLAGS << " #{$RICE_LDFLAGS} -L#{$RICE_PREFIX}/lib"
|
48
|
+
$LDFLAGS << " #{$RICE_LDFLAGS} -L#{$RICE_PREFIX}/lib -lrice"
|
49
49
|
|
50
50
|
# Turn on debugging and verbose warnings by default on compilers that
|
51
51
|
# support it
|
@@ -74,9 +74,6 @@ def init_mkmf_rice(config = CONFIG)
|
|
74
74
|
$LDSHARED_CXX = \
|
75
75
|
replace_cc_with_cxx(config['LDSHARED'])
|
76
76
|
end
|
77
|
-
|
78
|
-
# Link against the rice library by default
|
79
|
-
have_library('rice') or raise
|
80
77
|
end
|
81
78
|
|
82
79
|
def replace_cc_with_cxx(str)
|
data/ruby/lib/version.rb
CHANGED
data/sample/Makefile.in
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.13.1 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994
|
5
|
-
|
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.
|
@@ -14,9 +14,27 @@
|
|
14
14
|
|
15
15
|
@SET_MAKE@
|
16
16
|
VPATH = @srcdir@
|
17
|
+
am__make_dryrun = \
|
18
|
+
{ \
|
19
|
+
am__dry=no; \
|
20
|
+
case $$MAKEFLAGS in \
|
21
|
+
*\\[\ \ ]*) \
|
22
|
+
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
23
|
+
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
24
|
+
*) \
|
25
|
+
for am__flg in $$MAKEFLAGS; do \
|
26
|
+
case $$am__flg in \
|
27
|
+
*=*|--*) ;; \
|
28
|
+
*n*) am__dry=yes; break;; \
|
29
|
+
esac; \
|
30
|
+
done;; \
|
31
|
+
esac; \
|
32
|
+
test $$am__dry = yes; \
|
33
|
+
}
|
17
34
|
pkgdatadir = $(datadir)/@PACKAGE@
|
18
|
-
pkglibdir = $(libdir)/@PACKAGE@
|
19
35
|
pkgincludedir = $(includedir)/@PACKAGE@
|
36
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
37
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
20
38
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
21
39
|
install_sh_DATA = $(install_sh) -c -m 644
|
22
40
|
install_sh_PROGRAM = $(install_sh) -c
|
@@ -32,7 +50,7 @@ POST_UNINSTALL = :
|
|
32
50
|
build_triplet = @build@
|
33
51
|
host_triplet = @host@
|
34
52
|
subdir = sample
|
35
|
-
DIST_COMMON = $(srcdir)/Makefile.
|
53
|
+
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
|
36
54
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
37
55
|
am__aclocal_m4_deps = $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
|
38
56
|
$(top_srcdir)/configure.ac
|
@@ -41,11 +59,31 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
41
59
|
mkinstalldirs = $(install_sh) -d
|
42
60
|
CONFIG_HEADER = $(top_builddir)/rice/config.hpp
|
43
61
|
CONFIG_CLEAN_FILES =
|
62
|
+
CONFIG_CLEAN_VPATH_FILES =
|
63
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
64
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
65
|
+
am__v_P_0 = false
|
66
|
+
am__v_P_1 = :
|
67
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
68
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
69
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
70
|
+
am__v_GEN_1 =
|
71
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
72
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
73
|
+
am__v_at_0 = @
|
74
|
+
am__v_at_1 =
|
44
75
|
SOURCES =
|
45
76
|
DIST_SOURCES =
|
77
|
+
am__can_run_installinfo = \
|
78
|
+
case $$AM_UPDATE_INFO_DIR in \
|
79
|
+
n|no|NO) false;; \
|
80
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
81
|
+
esac
|
82
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
46
83
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
47
84
|
ACLOCAL = @ACLOCAL@
|
48
85
|
AMTAR = @AMTAR@
|
86
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
49
87
|
AUTOCONF = @AUTOCONF@
|
50
88
|
AUTOHEADER = @AUTOHEADER@
|
51
89
|
AUTOMAKE = @AUTOMAKE@
|
@@ -102,6 +140,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
102
140
|
PACKAGE_NAME = @PACKAGE_NAME@
|
103
141
|
PACKAGE_STRING = @PACKAGE_STRING@
|
104
142
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
143
|
+
PACKAGE_URL = @PACKAGE_URL@
|
105
144
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
106
145
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
107
146
|
RANLIB = @RANLIB@
|
@@ -171,6 +210,7 @@ sharedstatedir = @sharedstatedir@
|
|
171
210
|
srcdir = @srcdir@
|
172
211
|
sysconfdir = @sysconfdir@
|
173
212
|
target_alias = @target_alias@
|
213
|
+
top_build_prefix = @top_build_prefix@
|
174
214
|
top_builddir = @top_builddir@
|
175
215
|
top_srcdir = @top_srcdir@
|
176
216
|
RUBY_EXTCONF_OPTIONS = -I@RICE_ROOT@/ruby/lib
|
@@ -193,14 +233,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
193
233
|
@for dep in $?; do \
|
194
234
|
case '$(am__configure_deps)' in \
|
195
235
|
*$$dep*) \
|
196
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
197
|
-
|
236
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
237
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
198
238
|
exit 1;; \
|
199
239
|
esac; \
|
200
240
|
done; \
|
201
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu
|
202
|
-
|
203
|
-
$(AUTOMAKE) --gnu
|
241
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu sample/Makefile'; \
|
242
|
+
$(am__cd) $(top_srcdir) && \
|
243
|
+
$(AUTOMAKE) --gnu sample/Makefile
|
204
244
|
.PRECIOUS: Makefile
|
205
245
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
206
246
|
@case '$?' in \
|
@@ -218,11 +258,12 @@ $(top_srcdir)/configure: $(am__configure_deps)
|
|
218
258
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
219
259
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
220
260
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
221
|
-
|
222
|
-
TAGS:
|
261
|
+
$(am__aclocal_m4_deps):
|
262
|
+
tags TAGS:
|
223
263
|
|
224
|
-
ctags
|
225
|
-
|
264
|
+
ctags CTAGS:
|
265
|
+
|
266
|
+
cscope cscopelist:
|
226
267
|
|
227
268
|
|
228
269
|
distdir: $(DISTFILES)
|
@@ -241,13 +282,17 @@ distdir: $(DISTFILES)
|
|
241
282
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
242
283
|
if test -d $$d/$$file; then \
|
243
284
|
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
285
|
+
if test -d "$(distdir)/$$file"; then \
|
286
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
287
|
+
fi; \
|
244
288
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
245
|
-
cp -
|
289
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
290
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
246
291
|
fi; \
|
247
|
-
cp -
|
292
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
248
293
|
else \
|
249
|
-
test -f "$(distdir)
|
250
|
-
|| cp -p $$d/$$file "$(distdir)
|
294
|
+
test -f "$(distdir)/$$file" \
|
295
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
251
296
|
|| exit 1; \
|
252
297
|
fi; \
|
253
298
|
done
|
@@ -265,16 +310,22 @@ install-am: all-am
|
|
265
310
|
|
266
311
|
installcheck: installcheck-am
|
267
312
|
install-strip:
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
313
|
+
if test -z '$(STRIP)'; then \
|
314
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
315
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
316
|
+
install; \
|
317
|
+
else \
|
318
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
319
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
320
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
321
|
+
fi
|
272
322
|
mostlyclean-generic:
|
273
323
|
|
274
324
|
clean-generic:
|
275
325
|
|
276
326
|
distclean-generic:
|
277
327
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
328
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
278
329
|
|
279
330
|
maintainer-clean-generic:
|
280
331
|
@echo "This command is intended for maintainers to use"
|
@@ -289,6 +340,8 @@ dvi-am:
|
|
289
340
|
|
290
341
|
html: html-am
|
291
342
|
|
343
|
+
html-am:
|
344
|
+
|
292
345
|
info: info-am
|
293
346
|
|
294
347
|
info-am:
|
@@ -297,18 +350,28 @@ install-data-am:
|
|
297
350
|
|
298
351
|
install-dvi: install-dvi-am
|
299
352
|
|
353
|
+
install-dvi-am:
|
354
|
+
|
300
355
|
install-exec-am:
|
301
356
|
|
302
357
|
install-html: install-html-am
|
303
358
|
|
359
|
+
install-html-am:
|
360
|
+
|
304
361
|
install-info: install-info-am
|
305
362
|
|
363
|
+
install-info-am:
|
364
|
+
|
306
365
|
install-man:
|
307
366
|
|
308
367
|
install-pdf: install-pdf-am
|
309
368
|
|
369
|
+
install-pdf-am:
|
370
|
+
|
310
371
|
install-ps: install-ps-am
|
311
372
|
|
373
|
+
install-ps-am:
|
374
|
+
|
312
375
|
installcheck-am:
|
313
376
|
|
314
377
|
maintainer-clean: maintainer-clean-am
|
@@ -331,15 +394,16 @@ uninstall-am:
|
|
331
394
|
|
332
395
|
.MAKE: install-am install-strip
|
333
396
|
|
334
|
-
.PHONY: all all-am check check-am clean clean-generic
|
335
|
-
distclean-generic distdir dvi dvi-am html
|
336
|
-
|
337
|
-
install-
|
338
|
-
install-
|
339
|
-
install-
|
340
|
-
install-
|
341
|
-
|
342
|
-
|
397
|
+
.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
|
398
|
+
ctags-am distclean distclean-generic distdir dvi dvi-am html \
|
399
|
+
html-am info info-am install install-am install-data \
|
400
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
401
|
+
install-exec-am install-html install-html-am install-info \
|
402
|
+
install-info-am install-man install-pdf install-pdf-am \
|
403
|
+
install-ps install-ps-am install-strip installcheck \
|
404
|
+
installcheck-am installdirs maintainer-clean \
|
405
|
+
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
406
|
+
pdf-am ps ps-am tags-am uninstall uninstall-am
|
343
407
|
|
344
408
|
|
345
409
|
enum/Makefile: enum/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
|
@@ -374,6 +438,7 @@ distclean_extensions:
|
|
374
438
|
do \
|
375
439
|
$(MAKE) -C $${sample} distclean; \
|
376
440
|
done
|
441
|
+
|
377
442
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
378
443
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
379
444
|
.NOEXPORT:
|