summaryrefslogtreecommitdiff
path: root/win32/Makefile.sub
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-03 01:07:53 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-03 12:52:46 +0900
commitac86fcbfd0bab8667d277aa575bc5b81e5135d3c (patch)
tree4c715ba434f4c5f9ed645343c67a8ce826adddbb /win32/Makefile.sub
parent6d8422659a4c8a51f37433b6e63cc98d8526abe9 (diff)
Removed extinit.o from main programs
It is included in libruby, which is linked into the main programs.
Diffstat (limited to 'win32/Makefile.sub')
-rw-r--r--win32/Makefile.sub5
1 files changed, 3 insertions, 2 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 1d77b74edd..cce75aff29 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -1092,8 +1092,9 @@ miniruby.rc:
!if "$(PROGRAM)" != ""
$(PROGRAM): $(MAINOBJ) $(LIBRUBY_SO) $(RUBY_INSTALL_NAME).res
$(ECHO) linking $(@:\=/)
- $(Q) $(PURIFY) $(CC) $(MAINOBJ) $(EXTOBJS) $(RUBY_INSTALL_NAME).res \
- $(OUTFLAG)$@ $(LIBRUBYARG) -link $(LDFLAGS) $(XLDFLAGS)
+ $(Q) $(PURIFY) $(CC) $(MAINOBJ) \
+ $(RUBY_INSTALL_NAME).res $(OUTFLAG)$@ $(LIBRUBYARG) \
+ -link $(LDFLAGS) $(XLDFLAGS)
$(Q) $(LDSHARED_0)
$(Q) $(LDSHARED_1)
$(Q) $(LDSHARED_2)