diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-23 06:10:32 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-23 06:10:32 +0000 |
commit | 0d5b4f37145543710691e226073c4cd9f47774ea (patch) | |
tree | dda3859ea1520c968a0259632dcc028139e3c28d | |
parent | 759248889632c10ec4355171ee68374a343e2f7f (diff) | |
download | ruby-0d5b4f37145543710691e226073c4cd9f47774ea.tar.gz ruby-0d5b4f37145543710691e226073c4cd9f47774ea.tar.xz ruby-0d5b4f37145543710691e226073c4cd9f47774ea.zip |
* win32/Makefile.sub ($(PROGRAM)): add dependency on $(LIBRUBY_SO).
[experimental]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win32/Makefile.sub | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon May 23 15:07:34 2005 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/Makefile.sub ($(PROGRAM)): add dependency on $(LIBRUBY_SO). + [experimental] + Mon May 23 12:21:37 2005 Yukihiro Matsumoto <matz@ruby-lang.org> * re.c (make_regexp): should not return junk address during diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 85304f896..852c7f2f8 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -432,7 +432,7 @@ miniruby$(EXEEXT): @echo. $(LIBS) $(PURIFY) $(CC) $(MAINOBJ) $(MINIOBJS) $(LIBRUBY_A) $(LIBS) -Fe$@ $(LDFLAGS) -$(PROGRAM): $(RUBY_INSTALL_NAME).res +$(PROGRAM): $(LIBRUBY_SO) $(RUBY_INSTALL_NAME).res $(PURIFY) $(CC) $(MAINOBJ) $(RUBY_INSTALL_NAME).res \ $(OUTFLAG)$@ $(LIBRUBYARG) $(LDFLAGS) $(XLDFLAGS) |