diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-09-11 00:39:35 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-09-11 00:39:35 +0000 |
commit | ccd4ba85a5710d39a34bbba890a8e861e022d69c (patch) | |
tree | 5bd88560b73d103c4965fca05c869afdffc80a9e | |
parent | 20a5393f811951c2d33b2a3bbbd6b4ca3f8e6255 (diff) | |
download | ruby-ccd4ba85a5710d39a34bbba890a8e861e022d69c.tar.gz ruby-ccd4ba85a5710d39a34bbba890a8e861e022d69c.tar.xz ruby-ccd4ba85a5710d39a34bbba890a8e861e022d69c.zip |
* win32/Makefile.sub (ext): make directory `ext' on compile dir.
[ruby-dev:18255]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win32/Makefile.sub | 6 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Sep 11 09:29:24 2002 NAKAMURA Usaku <usa@ruby-lang.org> + + * win32/Makefile.sub (ext): make directory `ext' on compile dir. + [ruby-dev:18255] + Wed Sep 11 00:41:10 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net> * eval.c (rb_mod_define_method): initialize orig_func too. diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 5a89f8f14..f2eebca70 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -159,10 +159,13 @@ OBJS = array.obj \ version.obj \ $(MISSING) -all: miniruby$(EXEEXT) rbconfig.rb \ +all: ext miniruby$(EXEEXT) rbconfig.rb \ $(LIBRUBY) $(MISCLIBS) @.\miniruby$(EXEEXT) $(srcdir)/ext/extmk.rb +ext: + @mkdir $@ + ruby: $(PROGRAM) rubyw: $(WPROGRAM) lib: $(LIBRUBY) @@ -342,7 +345,6 @@ s,@sitearch@,$(ARCH)-$(RT),;t t s,@sitedir@,$${prefix}/lib/ruby/site_ruby,;t t s,@configure_args@,--with-make-prog=nmake --enable-shared $(configure_args),;t t s,@configure_input@,$$configure_input,;t t - @if not exist $(@D)\nul mkdir $(@D) s,@srcdir@,$(srcdir),;t t s,@top_srcdir@,$(srcdir),;t t << |