rice 1.7.0 → 2.0.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.
@@ -23,10 +23,10 @@ inheritance/Makefile: inheritance/extconf.rb ../config.status ../ruby/lib/mkmf-r
23
23
 
24
24
  all: enum/Makefile map/Makefile inheritance/Makefile all_extensions
25
25
 
26
- all_extensions:
26
+ all_extensions: $(addsuffix /Makefile,$(RICE_SAMPLES))
27
27
  @for sample in $(RICE_SAMPLES); \
28
28
  do \
29
- $(MAKE) -C $${sample} all; \
29
+ ${MAKE} -C $${sample} all; \
30
30
  done
31
31
 
32
32
  clean: enum/Makefile map/Makefile inheritance/Makefile clean_extensions
@@ -34,7 +34,7 @@ clean: enum/Makefile map/Makefile inheritance/Makefile clean_extensions
34
34
  clean_extensions:
35
35
  @for sample in $(RICE_SAMPLES); \
36
36
  do \
37
- $(MAKE) -C $${sample} clean; \
37
+ ${MAKE} -C $${sample} clean; \
38
38
  done
39
39
 
40
40
  distclean: enum/Makefile map/Makefile inheritance/Makefile distclean_extensions
@@ -42,6 +42,6 @@ distclean: enum/Makefile map/Makefile inheritance/Makefile distclean_extensions
42
42
  distclean_extensions:
43
43
  @for sample in $(RICE_SAMPLES);
44
44
  do \
45
- $(MAKE) -C $${sample} distclean; \
45
+ ${MAKE} -C $${sample} distclean; \
46
46
  done
47
47
 
@@ -1,7 +1,7 @@
1
- # Makefile.in generated by automake 1.14.1 from Makefile.am.
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994-2013 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
5
 
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,17 @@
14
14
 
15
15
  @SET_MAKE@
16
16
  VPATH = @srcdir@
17
- am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
17
+ am__is_gnu_make = { \
18
+ if test -z '$(MAKELEVEL)'; then \
19
+ false; \
20
+ elif test -n '$(MAKE_HOST)'; then \
21
+ true; \
22
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23
+ true; \
24
+ else \
25
+ false; \
26
+ fi; \
27
+ }
18
28
  am__make_running_with_option = \
19
29
  case $${target_option-} in \
20
30
  ?) ;; \
@@ -78,13 +88,13 @@ POST_UNINSTALL = :
78
88
  build_triplet = @build@
79
89
  host_triplet = @host@
80
90
  subdir = sample
81
- DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
82
91
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
83
92
  am__aclocal_m4_deps = $(top_srcdir)/check_stdcxx_11.ac \
84
93
  $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
85
94
  $(top_srcdir)/configure.ac
86
95
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
87
96
  $(ACLOCAL_M4)
97
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
88
98
  mkinstalldirs = $(install_sh) -d
89
99
  CONFIG_HEADER = $(top_builddir)/rice/config.hpp
90
100
  CONFIG_CLEAN_FILES =
@@ -109,6 +119,7 @@ am__can_run_installinfo = \
109
119
  *) (install-info --version) >/dev/null 2>&1;; \
110
120
  esac
111
121
  am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
122
+ am__DIST_COMMON = $(srcdir)/Makefile.in
112
123
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
113
124
  ACLOCAL = @ACLOCAL@
114
125
  AMTAR = @AMTAR@
@@ -271,7 +282,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
271
282
  echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu sample/Makefile'; \
272
283
  $(am__cd) $(top_srcdir) && \
273
284
  $(AUTOMAKE) --gnu sample/Makefile
274
- .PRECIOUS: Makefile
275
285
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
276
286
  @case '$?' in \
277
287
  *config.status*) \
@@ -435,6 +445,8 @@ uninstall-am:
435
445
  maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
436
446
  pdf-am ps ps-am tags-am uninstall uninstall-am
437
447
 
448
+ .PRECIOUS: Makefile
449
+
438
450
 
439
451
  enum/Makefile: enum/extconf.rb ../config.status ../ruby/lib/mkmf-rice.rb
440
452
  @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C enum extconf.rb $(EXTCONF_OPTIONS)
@@ -447,10 +459,10 @@ inheritance/Makefile: inheritance/extconf.rb ../config.status ../ruby/lib/mkmf-r
447
459
 
448
460
  all: enum/Makefile map/Makefile inheritance/Makefile all_extensions
449
461
 
450
- all_extensions:
462
+ all_extensions: $(addsuffix /Makefile,$(RICE_SAMPLES))
451
463
  @for sample in $(RICE_SAMPLES); \
452
464
  do \
453
- $(MAKE) -C $${sample} all; \
465
+ ${MAKE} -C $${sample} all; \
454
466
  done
455
467
 
456
468
  clean: enum/Makefile map/Makefile inheritance/Makefile clean_extensions
@@ -458,7 +470,7 @@ clean: enum/Makefile map/Makefile inheritance/Makefile clean_extensions
458
470
  clean_extensions:
459
471
  @for sample in $(RICE_SAMPLES); \
460
472
  do \
461
- $(MAKE) -C $${sample} clean; \
473
+ ${MAKE} -C $${sample} clean; \
462
474
  done
463
475
 
464
476
  distclean: enum/Makefile map/Makefile inheritance/Makefile distclean_extensions
@@ -466,7 +478,7 @@ distclean: enum/Makefile map/Makefile inheritance/Makefile distclean_extensions
466
478
  distclean_extensions:
467
479
  @for sample in $(RICE_SAMPLES);
468
480
  do \
469
- $(MAKE) -C $${sample} distclean; \
481
+ ${MAKE} -C $${sample} distclean; \
470
482
  done
471
483
 
472
484
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
@@ -1,8 +1,8 @@
1
- noinst_PROGRAMS = unittest vm_unittest
1
+ noinst_PROGRAMS = unittest
2
2
 
3
3
  SUBDIRS = ext
4
4
 
5
- TESTS = unittest vm_unittest
5
+ TESTS = unittest
6
6
 
7
7
 
8
8
  check: run_multiple_extensions_test
@@ -36,7 +36,6 @@ unittest_SOURCES = \
36
36
  test_Builtin_Object.cpp \
37
37
  test_Class.cpp \
38
38
  test_Constructor.cpp \
39
- test_Critical_Guard.cpp \
40
39
  test_Data_Object.cpp \
41
40
  test_Data_Type.cpp \
42
41
  test_Director.cpp \
@@ -54,10 +53,6 @@ unittest_SOURCES = \
54
53
  test_To_From_Ruby.cpp \
55
54
  test_global_functions.cpp
56
55
 
57
- vm_unittest_SOURCES = \
58
- unittest.cpp \
59
- test_VM.cpp
60
-
61
56
  AM_CPPFLAGS = \
62
57
  -I.. \
63
58
  $(RUBY_CFLAGS)
@@ -1,7 +1,7 @@
1
- # Makefile.in generated by automake 1.14.1 from Makefile.am.
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994-2013 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
5
 
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
@@ -15,7 +15,17 @@
15
15
  @SET_MAKE@
16
16
 
17
17
  VPATH = @srcdir@
18
- am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18
+ am__is_gnu_make = { \
19
+ if test -z '$(MAKELEVEL)'; then \
20
+ false; \
21
+ elif test -n '$(MAKE_HOST)'; then \
22
+ true; \
23
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
24
+ true; \
25
+ else \
26
+ false; \
27
+ fi; \
28
+ }
19
29
  am__make_running_with_option = \
20
30
  case $${target_option-} in \
21
31
  ?) ;; \
@@ -78,17 +88,16 @@ PRE_UNINSTALL = :
78
88
  POST_UNINSTALL = :
79
89
  build_triplet = @build@
80
90
  host_triplet = @host@
81
- noinst_PROGRAMS = unittest$(EXEEXT) vm_unittest$(EXEEXT)
82
- TESTS = unittest$(EXEEXT) vm_unittest$(EXEEXT)
91
+ noinst_PROGRAMS = unittest$(EXEEXT)
92
+ TESTS = unittest$(EXEEXT)
83
93
  subdir = test
84
- DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
85
- $(top_srcdir)/depcomp $(top_srcdir)/test-driver
86
94
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
87
95
  am__aclocal_m4_deps = $(top_srcdir)/check_stdcxx_11.ac \
88
96
  $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
89
97
  $(top_srcdir)/configure.ac
90
98
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
91
99
  $(ACLOCAL_M4)
100
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
92
101
  mkinstalldirs = $(install_sh) -d
93
102
  CONFIG_HEADER = $(top_builddir)/rice/config.hpp
94
103
  CONFIG_CLEAN_FILES =
@@ -97,20 +106,17 @@ PROGRAMS = $(noinst_PROGRAMS)
97
106
  am_unittest_OBJECTS = unittest.$(OBJEXT) \
98
107
  test_Address_Registration_Guard.$(OBJEXT) test_Array.$(OBJEXT) \
99
108
  test_Builtin_Object.$(OBJEXT) test_Class.$(OBJEXT) \
100
- test_Constructor.$(OBJEXT) test_Critical_Guard.$(OBJEXT) \
101
- test_Data_Object.$(OBJEXT) test_Data_Type.$(OBJEXT) \
102
- test_Director.$(OBJEXT) test_Enum.$(OBJEXT) \
103
- test_Exception.$(OBJEXT) test_Hash.$(OBJEXT) \
104
- test_Identifier.$(OBJEXT) test_Jump_Tag.$(OBJEXT) \
105
- test_Memory_Management.$(OBJEXT) test_Module.$(OBJEXT) \
106
- test_Object.$(OBJEXT) test_String.$(OBJEXT) \
107
- test_Struct.$(OBJEXT) test_Symbol.$(OBJEXT) \
108
- test_To_From_Ruby.$(OBJEXT) test_global_functions.$(OBJEXT)
109
+ test_Constructor.$(OBJEXT) test_Data_Object.$(OBJEXT) \
110
+ test_Data_Type.$(OBJEXT) test_Director.$(OBJEXT) \
111
+ test_Enum.$(OBJEXT) test_Exception.$(OBJEXT) \
112
+ test_Hash.$(OBJEXT) test_Identifier.$(OBJEXT) \
113
+ test_Jump_Tag.$(OBJEXT) test_Memory_Management.$(OBJEXT) \
114
+ test_Module.$(OBJEXT) test_Object.$(OBJEXT) \
115
+ test_String.$(OBJEXT) test_Struct.$(OBJEXT) \
116
+ test_Symbol.$(OBJEXT) test_To_From_Ruby.$(OBJEXT) \
117
+ test_global_functions.$(OBJEXT)
109
118
  unittest_OBJECTS = $(am_unittest_OBJECTS)
110
119
  unittest_LDADD = $(LDADD)
111
- am_vm_unittest_OBJECTS = unittest.$(OBJEXT) test_VM.$(OBJEXT)
112
- vm_unittest_OBJECTS = $(am_vm_unittest_OBJECTS)
113
- vm_unittest_LDADD = $(LDADD)
114
120
  AM_V_P = $(am__v_P_@AM_V@)
115
121
  am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
116
122
  am__v_P_0 = false
@@ -140,8 +146,8 @@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
140
146
  am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
141
147
  am__v_CXXLD_0 = @echo " CXXLD " $@;
142
148
  am__v_CXXLD_1 =
143
- SOURCES = $(unittest_SOURCES) $(vm_unittest_SOURCES)
144
- DIST_SOURCES = $(unittest_SOURCES) $(vm_unittest_SOURCES)
149
+ SOURCES = $(unittest_SOURCES)
150
+ DIST_SOURCES = $(unittest_SOURCES)
145
151
  RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
146
152
  ctags-recursive dvi-recursive html-recursive info-recursive \
147
153
  install-data-recursive install-dvi-recursive \
@@ -386,6 +392,8 @@ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
386
392
  TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
387
393
  $(TEST_LOG_FLAGS)
388
394
  DIST_SUBDIRS = $(SUBDIRS)
395
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
396
+ $(top_srcdir)/test-driver
389
397
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
390
398
  am__relativize = \
391
399
  dir0=`pwd`; \
@@ -557,7 +565,6 @@ unittest_SOURCES = \
557
565
  test_Builtin_Object.cpp \
558
566
  test_Class.cpp \
559
567
  test_Constructor.cpp \
560
- test_Critical_Guard.cpp \
561
568
  test_Data_Object.cpp \
562
569
  test_Data_Type.cpp \
563
570
  test_Director.cpp \
@@ -575,10 +582,6 @@ unittest_SOURCES = \
575
582
  test_To_From_Ruby.cpp \
576
583
  test_global_functions.cpp
577
584
 
578
- vm_unittest_SOURCES = \
579
- unittest.cpp \
580
- test_VM.cpp
581
-
582
585
  AM_CPPFLAGS = \
583
586
  -I.. \
584
587
  $(RUBY_CFLAGS)
@@ -606,7 +609,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
606
609
  echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/Makefile'; \
607
610
  $(am__cd) $(top_srcdir) && \
608
611
  $(AUTOMAKE) --gnu test/Makefile
609
- .PRECIOUS: Makefile
610
612
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
611
613
  @case '$?' in \
612
614
  *config.status*) \
@@ -632,10 +634,6 @@ unittest$(EXEEXT): $(unittest_OBJECTS) $(unittest_DEPENDENCIES) $(EXTRA_unittest
632
634
  @rm -f unittest$(EXEEXT)
633
635
  $(AM_V_CXXLD)$(CXXLINK) $(unittest_OBJECTS) $(unittest_LDADD) $(LIBS)
634
636
 
635
- vm_unittest$(EXEEXT): $(vm_unittest_OBJECTS) $(vm_unittest_DEPENDENCIES) $(EXTRA_vm_unittest_DEPENDENCIES)
636
- @rm -f vm_unittest$(EXEEXT)
637
- $(AM_V_CXXLD)$(CXXLINK) $(vm_unittest_OBJECTS) $(vm_unittest_LDADD) $(LIBS)
638
-
639
637
  mostlyclean-compile:
640
638
  -rm -f *.$(OBJEXT)
641
639
 
@@ -647,7 +645,6 @@ distclean-compile:
647
645
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Builtin_Object.Po@am__quote@
648
646
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Class.Po@am__quote@
649
647
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Constructor.Po@am__quote@
650
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Critical_Guard.Po@am__quote@
651
648
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Object.Po@am__quote@
652
649
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Data_Type.Po@am__quote@
653
650
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Director.Po@am__quote@
@@ -663,7 +660,6 @@ distclean-compile:
663
660
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Struct.Po@am__quote@
664
661
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_Symbol.Po@am__quote@
665
662
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_To_From_Ruby.Po@am__quote@
666
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_VM.Po@am__quote@
667
663
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_global_functions.Po@am__quote@
668
664
  @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittest.Po@am__quote@
669
665
 
@@ -812,7 +808,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
812
808
  if test -n "$$am__remaking_logs"; then \
813
809
  echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
814
810
  "recursion detected" >&2; \
815
- else \
811
+ elif test -n "$$redo_logs"; then \
816
812
  am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
817
813
  fi; \
818
814
  if $(am__make_dryrun); then :; else \
@@ -930,13 +926,6 @@ unittest.log: unittest$(EXEEXT)
930
926
  --log-file $$b.log --trs-file $$b.trs \
931
927
  $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
932
928
  "$$tst" $(AM_TESTS_FD_REDIRECT)
933
- vm_unittest.log: vm_unittest$(EXEEXT)
934
- @p='vm_unittest$(EXEEXT)'; \
935
- b='vm_unittest'; \
936
- $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
937
- --log-file $$b.log --trs-file $$b.trs \
938
- $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
939
- "$$tst" $(AM_TESTS_FD_REDIRECT)
940
929
  .test.log:
941
930
  @p='$<'; \
942
931
  $(am__set_b); \
@@ -1131,6 +1120,8 @@ uninstall-am:
1131
1120
  mostlyclean-generic pdf pdf-am ps ps-am recheck tags tags-am \
1132
1121
  uninstall uninstall-am
1133
1122
 
1123
+ .PRECIOUS: Makefile
1124
+
1134
1125
 
1135
1126
  check: run_multiple_extensions_test
1136
1127
 
@@ -15,29 +15,27 @@ t1/Makefile: t1/extconf.rb ../../config.status ../../ruby/lib/mkmf-rice.rb
15
15
  t2/Makefile: t2/extconf.rb ../../config.status ../../ruby/lib/mkmf-rice.rb
16
16
  @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C t2 extconf.rb $(EXTCONF_OPTIONS)
17
17
 
18
- all clean distclean: t1/Makefile t2/Makefile
19
-
20
18
  all: t1_all t2_all
21
19
 
22
- t1_all:
23
- make -C t1 all
20
+ t1_all: t1/Makefile
21
+ ${MAKE} -C t1 all
24
22
 
25
- t2_all:
26
- make -C t2 all
23
+ t2_all: t2/Makefile
24
+ ${MAKE} -C t2 all
27
25
 
28
26
  clean: t1_clean t2_clean
29
27
 
30
- t1_clean:
31
- make -C t1 clean
28
+ t1_clean: t1/Makefile
29
+ ${MAKE} -C t1 clean
32
30
 
33
- t2_clean:
34
- make -C t2 clean
31
+ t2_clean: t2/Makefile
32
+ ${MAKE} -C t2 clean
35
33
 
36
34
  distclean: t1_distclean t2_distclean
37
35
 
38
- t1_distclean:
39
- make -C t1 distclean
36
+ t1_distclean: t1/Makefile
37
+ ${MAKE} -C t1 distclean
40
38
 
41
- t2_distclean:
42
- make -C t2 distclean
39
+ t2_distclean: t2/Makefile
40
+ ${MAKE} -C t2 distclean
43
41
 
@@ -1,7 +1,7 @@
1
- # Makefile.in generated by automake 1.14.1 from Makefile.am.
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994-2013 Free Software Foundation, Inc.
4
+ # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
5
 
6
6
  # This Makefile.in is free software; the Free Software Foundation
7
7
  # gives unlimited permission to copy and/or distribute it,
@@ -14,7 +14,17 @@
14
14
 
15
15
  @SET_MAKE@
16
16
  VPATH = @srcdir@
17
- am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
17
+ am__is_gnu_make = { \
18
+ if test -z '$(MAKELEVEL)'; then \
19
+ false; \
20
+ elif test -n '$(MAKE_HOST)'; then \
21
+ true; \
22
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23
+ true; \
24
+ else \
25
+ false; \
26
+ fi; \
27
+ }
18
28
  am__make_running_with_option = \
19
29
  case $${target_option-} in \
20
30
  ?) ;; \
@@ -78,13 +88,13 @@ POST_UNINSTALL = :
78
88
  build_triplet = @build@
79
89
  host_triplet = @host@
80
90
  subdir = test/ext
81
- DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
82
91
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
83
92
  am__aclocal_m4_deps = $(top_srcdir)/check_stdcxx_11.ac \
84
93
  $(top_srcdir)/ruby.ac $(top_srcdir)/doxygen.ac \
85
94
  $(top_srcdir)/configure.ac
86
95
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
87
96
  $(ACLOCAL_M4)
97
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
88
98
  mkinstalldirs = $(install_sh) -d
89
99
  CONFIG_HEADER = $(top_builddir)/rice/config.hpp
90
100
  CONFIG_CLEAN_FILES =
@@ -109,6 +119,7 @@ am__can_run_installinfo = \
109
119
  *) (install-info --version) >/dev/null 2>&1;; \
110
120
  esac
111
121
  am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
122
+ am__DIST_COMMON = $(srcdir)/Makefile.in
112
123
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
113
124
  ACLOCAL = @ACLOCAL@
114
125
  AMTAR = @AMTAR@
@@ -266,7 +277,6 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
266
277
  echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu test/ext/Makefile'; \
267
278
  $(am__cd) $(top_srcdir) && \
268
279
  $(AUTOMAKE) --gnu test/ext/Makefile
269
- .PRECIOUS: Makefile
270
280
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
271
281
  @case '$?' in \
272
282
  *config.status*) \
@@ -430,6 +440,8 @@ uninstall-am:
430
440
  maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
431
441
  pdf-am ps ps-am tags-am uninstall uninstall-am
432
442
 
443
+ .PRECIOUS: Makefile
444
+
433
445
 
434
446
  all:
435
447
 
@@ -439,31 +451,29 @@ t1/Makefile: t1/extconf.rb ../../config.status ../../ruby/lib/mkmf-rice.rb
439
451
  t2/Makefile: t2/extconf.rb ../../config.status ../../ruby/lib/mkmf-rice.rb
440
452
  @RUBY@ $(RUBY_EXTCONF_OPTIONS) -C t2 extconf.rb $(EXTCONF_OPTIONS)
441
453
 
442
- all clean distclean: t1/Makefile t2/Makefile
443
-
444
454
  all: t1_all t2_all
445
455
 
446
- t1_all:
447
- make -C t1 all
456
+ t1_all: t1/Makefile
457
+ ${MAKE} -C t1 all
448
458
 
449
- t2_all:
450
- make -C t2 all
459
+ t2_all: t2/Makefile
460
+ ${MAKE} -C t2 all
451
461
 
452
462
  clean: t1_clean t2_clean
453
463
 
454
- t1_clean:
455
- make -C t1 clean
464
+ t1_clean: t1/Makefile
465
+ ${MAKE} -C t1 clean
456
466
 
457
- t2_clean:
458
- make -C t2 clean
467
+ t2_clean: t2/Makefile
468
+ ${MAKE} -C t2 clean
459
469
 
460
470
  distclean: t1_distclean t2_distclean
461
471
 
462
- t1_distclean:
463
- make -C t1 distclean
472
+ t1_distclean: t1/Makefile
473
+ ${MAKE} -C t1 distclean
464
474
 
465
- t2_distclean:
466
- make -C t2 distclean
475
+ t2_distclean: t2/Makefile
476
+ ${MAKE} -C t2 distclean
467
477
 
468
478
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
469
479
  # Otherwise a system limit (for SysV at least) may be exceeded.