summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorYuichiro MASUI <[email protected]>2012-12-22 21:53:42 +0900
committerYuichiro MASUI <[email protected]>2012-12-22 21:53:42 +0900
commita2ae2a39232407a9ae16aa9ee280df264d3ee889 (patch)
tree6a3649ca7f25f175693cfb3c0a7fa8ae3e0f19c4 /doc
parenta30c7fa73082d1e17bdd3adf87afd40e09640ef8 (diff)
downloadmruby-a2ae2a39232407a9ae16aa9ee280df264d3ee889.tar.gz
mruby-a2ae2a39232407a9ae16aa9ee280df264d3ee889.zip
Added MRUBY_LIBS to mrbgems Makefile
Diffstat (limited to 'doc')
-rw-r--r--doc/mrbgems/c_and_ruby_extension_example/Makefile1
-rw-r--r--doc/mrbgems/c_extension_example/Makefile1
-rw-r--r--doc/mrbgems/ruby_extension_example/Makefile1
3 files changed, 3 insertions, 0 deletions
diff --git a/doc/mrbgems/c_and_ruby_extension_example/Makefile b/doc/mrbgems/c_and_ruby_extension_example/Makefile
index ba89e4ba4..1af5e95c1 100644
--- a/doc/mrbgems/c_and_ruby_extension_example/Makefile
+++ b/doc/mrbgems/c_and_ruby_extension_example/Makefile
@@ -9,6 +9,7 @@ GEM_RB_FILES := $(wildcard $(MRB_DIR)/*.rb)
MRUBY_CFLAGS :=
MRUBY_LDFLAGS :=
+MRUBY_LIBS :=
gem-all : $(GEM_OBJECTS) gem-c-and-rb-files
diff --git a/doc/mrbgems/c_extension_example/Makefile b/doc/mrbgems/c_extension_example/Makefile
index 556b12d55..b0afa420c 100644
--- a/doc/mrbgems/c_extension_example/Makefile
+++ b/doc/mrbgems/c_extension_example/Makefile
@@ -7,6 +7,7 @@ GEM_OBJECTS := $(patsubst %.c, %.o, $(GEM_C_FILES))
MRUBY_CFLAGS :=
MRUBY_LDFLAGS :=
+MRUBY_LIBS :=
gem-all : $(GEM_OBJECTS) gem-c-files
diff --git a/doc/mrbgems/ruby_extension_example/Makefile b/doc/mrbgems/ruby_extension_example/Makefile
index 903666267..cdcbce024 100644
--- a/doc/mrbgems/ruby_extension_example/Makefile
+++ b/doc/mrbgems/ruby_extension_example/Makefile
@@ -6,6 +6,7 @@ GEM_RB_FILES := $(wildcard $(MRB_DIR)/*.rb)
MRUBY_CFLAGS :=
MRUBY_LDFLAGS :=
+MRUBY_LIBS :=
gem-all : gem-rb-files