summaryrefslogtreecommitdiffstats
path: root/cygwin
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-08-13 05:45:20 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-08-13 05:45:20 +0000
commit07bb9f21f56b0d066c44c62b0e6be35eb0e0fd51 (patch)
tree082bb7d5568f3b2e36e3fe166e9f3039394fcf44 /cygwin
parentf746453a4ae16f643b2ae8c0d6ec77a2e63b4eb1 (diff)
downloadruby-07bb9f21f56b0d066c44c62b0e6be35eb0e0fd51.tar.gz
ruby-07bb9f21f56b0d066c44c62b0e6be35eb0e0fd51.tar.xz
ruby-07bb9f21f56b0d066c44c62b0e6be35eb0e0fd51.zip
1.4.0
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cygwin')
-rw-r--r--cygwin/GNUmakefile.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/cygwin/GNUmakefile.in b/cygwin/GNUmakefile.in
new file mode 100644
index 000000000..970e90e24
--- /dev/null
+++ b/cygwin/GNUmakefile.in
@@ -0,0 +1,9 @@
+include Makefile
+
+RUBYCWDLL=rubycw.dll
+
+miniruby$(EXEEXT): $(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