diff options
-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) |