summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 05:22:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 05:22:51 +0000
commit36b49a104c355c5a3bc4eb2f9ece14432e829cb2 (patch)
treec53eb2be1d09598c4ed47b246f51238cb38b8680
parent9dc71c40658a7865616eb88efd45f12ca960365d (diff)
downloadruby-36b49a104c355c5a3bc4eb2f9ece14432e829cb2.tar.gz
ruby-36b49a104c355c5a3bc4eb2f9ece14432e829cb2.tar.xz
ruby-36b49a104c355c5a3bc4eb2f9ece14432e829cb2.zip
* common.mk (ext): split out the target for extension library.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--common.mk3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fd0296eea..c08ae1614 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
-Fri Oct 24 14:13:16 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Fri Oct 24 14:22:48 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * common.mk (ext): split out the target for extension library.
* common.mk (encs): depends on enc and trans.
diff --git a/common.mk b/common.mk
index 41965b7b8..af7fd1bc9 100644
--- a/common.mk
+++ b/common.mk
@@ -120,7 +120,8 @@ COMPILE_PRELUDE = $(MINIRUBY) -I$(srcdir) -rrbconfig $(srcdir)/tool/compile_prel
VCS = svn
-all: $(MKFILES) incs $(PREP) $(RBCONFIG) $(LIBRUBY) encs
+all: encs ext
+ext: $(MKFILES) incs $(PREP) $(RBCONFIG) $(LIBRUBY)
@$(MINIRUBY) $(srcdir)/ext/extmk.rb --make="$(MAKE)" $(EXTMK_ARGS)
prog: $(PROGRAM) $(WPROGRAM)