From 9fb43cc20f743a4d7bf9f2ae94dbad117ae75687 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 11 Jun 1999 06:43:35 +0000 Subject: GNUmakefile.in git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_3@486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++---- cygwin/GNUmakefile.in | 9 +++++++++ 2 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 cygwin/GNUmakefile.in diff --git a/ChangeLog b/ChangeLog index 3b613bfdd1..d6684c45cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,3 @@ -Fri Jun 10 13:42:10 1999 Koji Arai - - * pack.c (pack_pack): template `Z' should be allowed. - Fri Jun 11 15:21:21 1999 Yukihiro Matsumoto * ext/etc/etc.c (etc_group): dumps core if there's no more group. @@ -32,6 +28,10 @@ Thu Jun 10 16:41:48 1999 Yukihiro Matsumoto * eval.c (is_defined): `defined? super' should be true even for private superclass methods. +Fri Jun 10 13:42:10 1999 Koji Arai + + * pack.c (pack_pack): template `Z' should be allowed. + Wed Jun 9 13:26:38 1999 Yukihiro Matsumoto * eval.c (rb_thread_loading): modified to avoid nested race diff --git a/cygwin/GNUmakefile.in b/cygwin/GNUmakefile.in new file mode 100644 index 0000000000..e6fd279412 --- /dev/null +++ b/cygwin/GNUmakefile.in @@ -0,0 +1,9 @@ +include Makefile + +RUBYCWDLL=rubycw.dll + +miniruby$(binsuffix): $(RUBYCWDLL) + +$(RUBYCWDLL): $(OBJS) dmyext.o + dllwrap -o $(RUBYCWDLL) --export-all --output-lib=$(LIBRUBY_SO) --dllname=$(RUBYCWDLL) -Wl,-e,__cygwin_noncygwin_dll_entry@12 --add-stdcall-alias -s $(OBJS) dmyext.o + nm --extern-only $(OBJS) dmyext.o | sed -n '/^........ [CD] _\(.*\)$$/s//#define \1 (*__imp_\1)/p' >import.h -- cgit v1.2.3