diff --git a/ChangeLog b/ChangeLog index fa14d763ed..7c7ad40b44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ -Tue Oct 22 10:13:05 2002 Nobuyoshi Nakada +Tue Oct 22 15:23:19 2002 Nobuyoshi Nakada * instruby.rb: add dryrun mode. + * ext/extmk.rb (extmake): add install: target to dummy Makefile. + * ext/extmk.rb (extmake): avoid Borland make's quirk behavior. * lib/mkmf.rb (link_command): opt is not a makefile macro. diff --git a/ext/extmk.rb b/ext/extmk.rb index 5bb32f5843..c98afdf440 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -74,7 +74,7 @@ def extmake(target) end else open("./Makefile", "w") {|f| - f.print configuration($srcdir), makerules(nil) + f.print configuration($srcdir), makerules(nil), "install:\n" } end if $static