2020-03-29 11:43:24 +03:00
|
|
|
gnumake = yes
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
include Makefile
|
|
|
|
|
2022-09-03 10:20:58 +03:00
|
|
|
DLLWRAP = @DLLWRAP@ --target=$(target_os) --driver-name="$(CC)"
|
2023-11-23 11:17:28 +03:00
|
|
|
ifeq (@USE_LLVM_WINDRES@,yes) # USE_LLVM_WINDRES
|
|
|
|
# llvm-windres fails when preprocessor options are added
|
|
|
|
windres-cpp :=
|
|
|
|
else
|
|
|
|
windres-cpp := $(CPP) -xc
|
|
|
|
windres-cpp := --preprocessor=$(firstword $(windres-cpp)) \
|
|
|
|
$(addprefix --preprocessor-arg=,$(wordlist 2,$(words $(windres-cpp)),$(windres-cpp)))
|
|
|
|
endif
|
2021-02-01 08:59:47 +03:00
|
|
|
WINDRES = @WINDRES@ $(windres-cpp) -DRC_INVOKED
|
2016-08-19 11:01:19 +03:00
|
|
|
STRIP = @STRIP@
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2022-09-03 10:20:58 +03:00
|
|
|
ifeq ($(target_os),cygwin)
|
2009-01-20 09:32:36 +03:00
|
|
|
DLL_BASE_NAME := $(LIBRUBY_SO:.dll=)
|
2003-08-07 09:43:59 +04:00
|
|
|
else
|
|
|
|
DLL_BASE_NAME := $(RUBY_SO_NAME)
|
2004-03-23 08:32:01 +03:00
|
|
|
DLLWRAP += -mno-cygwin
|
2008-10-17 14:46:23 +04:00
|
|
|
VPATH := $(VPATH):$(srcdir)/win32
|
2021-10-01 16:03:48 +03:00
|
|
|
ifneq ($(filter -flto%,$(LDFLAGS)),)
|
|
|
|
miniruby$(EXEEXT): XLDFLAGS += -Wno-maybe-uninitialized
|
|
|
|
endif
|
2003-08-07 09:43:59 +04:00
|
|
|
endif
|
|
|
|
|
2003-01-05 04:40:24 +03:00
|
|
|
ifneq ($(ENABLE_SHARED),yes)
|
2002-06-11 14:26:13 +04:00
|
|
|
RUBY_EXP = $(RUBY_INSTALL_NAME).exp
|
|
|
|
EXTOBJS = $(RUBY_EXP)
|
|
|
|
LIBRUBYARG = $(LIBRUBY_A)
|
2003-06-01 16:58:56 +04:00
|
|
|
LIBRUBY_SO =
|
2000-05-13 20:13:31 +04:00
|
|
|
endif
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-06-11 14:26:13 +04:00
|
|
|
ifeq ($(RUBY_INSTALL_NAME),ruby)
|
2000-08-03 13:50:41 +04:00
|
|
|
RUBYW_INSTALL_NAME = $(RUBY_INSTALL_NAME)w
|
2002-06-11 14:26:13 +04:00
|
|
|
else
|
|
|
|
RUBYW_INSTALL_NAME = $(subst ruby,rubyw,$(RUBY_INSTALL_NAME))
|
2000-08-03 13:50:41 +04:00
|
|
|
endif
|
2003-08-07 09:43:59 +04:00
|
|
|
|
2000-08-03 13:50:41 +04:00
|
|
|
WPROGRAM = $(RUBYW_INSTALL_NAME)$(EXEEXT)
|
2012-11-05 18:00:35 +04:00
|
|
|
|
2021-03-21 11:53:20 +03:00
|
|
|
include $(srcdir)/template/GNUmakefile.in
|
2016-06-20 11:40:11 +03:00
|
|
|
|
2022-09-03 10:20:58 +03:00
|
|
|
SOLIBS := $(DLL_BASE_NAME).res.$(OBJEXT) $(SOLIBS)
|
2014-12-28 10:25:15 +03:00
|
|
|
override EXTOBJS += $(if $(filter-out $(RUBYW_INSTALL_NAME),$(@:$(EXEEXT)=)),$(RUBY_INSTALL_NAME),$(@:$(EXEEXT)=)).res.$(OBJEXT)
|
2004-03-28 11:25:42 +04:00
|
|
|
RCFILES = $(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(DLL_BASE_NAME).rc
|
2009-01-20 09:32:36 +03:00
|
|
|
RUBYDEF = $(DLL_BASE_NAME).def
|
2023-07-07 17:33:04 +03:00
|
|
|
override LIBRUBY_FOR_LEAKED_GLOBALS := # DLL shows symbols from import library
|
2000-07-05 18:12:27 +04:00
|
|
|
|
2005-03-03 12:44:33 +03:00
|
|
|
ruby: $(PROGRAM)
|
2004-03-25 08:01:15 +03:00
|
|
|
rubyw: $(WPROGRAM)
|
|
|
|
|
2003-06-01 16:58:56 +04:00
|
|
|
$(LIBRUBY): $(RUBY_EXP) $(LIBRUBY_SO)
|
2022-09-03 10:20:58 +03:00
|
|
|
$(RUBY_EXP) $(LIBRUBY_SO): $(DLL_BASE_NAME).res.$(OBJEXT)
|
2000-05-13 20:13:31 +04:00
|
|
|
|
2022-09-03 10:20:58 +03:00
|
|
|
%.res.$(OBJEXT): %.rc
|
2010-11-11 16:03:42 +03:00
|
|
|
$(ECHO) compiling $@
|
2010-11-12 14:51:42 +03:00
|
|
|
$(Q) $(WINDRES) --include-dir . --include-dir $(<D) --include-dir $(srcdir)/win32 $< $@
|
2000-08-03 13:50:41 +04:00
|
|
|
|
2022-09-09 20:32:20 +03:00
|
|
|
%.rc: $(BOOTSTRAPRUBY_FAKE) $(RBCONFIG) $(srcdir)/revision.h $(srcdir)/win32/resource.rb
|
2010-11-11 16:03:42 +03:00
|
|
|
$(ECHO) generating $@
|
2022-09-02 17:41:41 +03:00
|
|
|
$(Q) $(BOOTSTRAPRUBY_COMMAND) $(srcdir)/win32/resource.rb \
|
2000-08-03 13:50:41 +04:00
|
|
|
-ruby_name=$(RUBY_INSTALL_NAME) -rubyw_name=$(RUBYW_INSTALL_NAME) \
|
2016-01-09 05:46:31 +03:00
|
|
|
-so_name=$(DLL_BASE_NAME) -output=$(*F) \
|
2000-08-03 13:50:41 +04:00
|
|
|
. $(icondirs) $(srcdir)/win32
|
|
|
|
|
2022-09-03 10:20:58 +03:00
|
|
|
$(PROGRAM): $(RUBY_INSTALL_NAME).res.$(OBJEXT)
|
|
|
|
$(WPROGRAM): $(RUBYW_INSTALL_NAME).res.$(OBJEXT)
|
2000-08-03 13:50:41 +04:00
|
|
|
@rm -f $@
|
2010-11-11 16:03:42 +03:00
|
|
|
$(ECHO) linking $@
|
2010-11-12 14:51:42 +03:00
|
|
|
$(Q) $(PURIFY) $(CC) -mwindows -e $(SYMBOL_PREFIX)mainCRTStartup $(LDFLAGS) $(XLDFLAGS) \
|
2000-08-03 13:50:41 +04:00
|
|
|
$(MAINOBJ) $(EXTOBJS) $(LIBRUBYARG) $(LIBS) -o $@
|
2022-09-03 10:20:58 +03:00
|
|
|
$(STUBPROGRAM): $(RUBY_INSTALL_NAME).res.$(OBJEXT)
|
2000-08-03 13:50:41 +04:00
|
|
|
|
2003-06-01 16:58:56 +04:00
|
|
|
$(RUBY_EXP): $(LIBRUBY_A)
|
2010-11-11 16:03:42 +03:00
|
|
|
$(ECHO) creating $@
|
2010-11-12 14:51:42 +03:00
|
|
|
$(Q) $(DLLWRAP) \
|
2003-06-01 16:58:56 +04:00
|
|
|
--output-exp=$(RUBY_EXP) \
|
|
|
|
--export-all $(LIBRUBY_A) $(LIBS) -o $(PROGRAM)
|
2010-11-12 14:51:42 +03:00
|
|
|
$(Q) $(LDSHARED) $(DLDFLAGS) $(OBJS) dmyext.o $(SOLIBS) -o $(PROGRAM)
|
2003-06-01 16:58:56 +04:00
|
|
|
@rm -f $(PROGRAM)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
|
|
|
|
GNUmakefile: $(srcdir)/cygwin/GNUmakefile.in
|
|
|
|
|
2022-09-03 10:20:58 +03:00
|
|
|
ifeq ($(target_os),mingw32)
|
2007-06-10 07:06:15 +04:00
|
|
|
$(OBJS) $(MAINOBJ): win32.h
|
2009-02-02 11:23:15 +03:00
|
|
|
|
2015-03-08 05:19:04 +03:00
|
|
|
dir.$(OBJEXT) win32/win32.$(OBJEXT): win32/dir.h
|
2015-08-26 08:21:41 +03:00
|
|
|
file.$(OBJEXT) win32/win32.$(OBJEXT): win32/file.h
|
2016-03-21 14:18:31 +03:00
|
|
|
|
2016-03-23 05:38:49 +03:00
|
|
|
MSYS2_ARG_CONV_EXCL_PARAM = --exclude=;--name=
|
2016-03-21 14:18:31 +03:00
|
|
|
|
2016-03-23 05:38:49 +03:00
|
|
|
yes-test-ruby: export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
|
|
|
|
yes-test-all: export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
|
|
|
|
yes-test-almost: export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
|
2022-07-05 18:22:21 +03:00
|
|
|
test/% spec/%/ spec/%_spec.rb: export MSYS2_ARG_CONV_EXCL=$(MSYS2_ARG_CONV_EXCL_PARAM)
|
2016-03-21 14:18:31 +03:00
|
|
|
|
2009-01-20 09:32:36 +03:00
|
|
|
endif
|
2005-11-05 07:43:46 +03:00
|
|
|
|
|
|
|
$(LIBRUBY_SO): $(RUBYDEF)
|
|
|
|
|
2022-09-09 20:32:20 +03:00
|
|
|
$(RUBYDEF): $(LIBRUBY_A) $(PREP) $(BOOTSTRAPRUBY_FAKE) $(RBCONFIG)
|
2010-11-11 16:03:42 +03:00
|
|
|
$(ECHO) generating $@
|
2022-09-02 17:41:41 +03:00
|
|
|
$(Q) $(BOOTSTRAPRUBY_COMMAND) $(srcdir)/win32/mkexports.rb -output=$@ $(LIBRUBY_A)
|
2008-02-24 17:40:01 +03:00
|
|
|
|
2008-02-24 18:01:06 +03:00
|
|
|
clean-local::
|
2008-02-24 17:40:01 +03:00
|
|
|
@$(RM) $(RUBYDEF)
|
2022-09-03 10:20:58 +03:00
|
|
|
@$(RM) $(RUBY_EXP) $(RCFILES:.rc=.res.$(OBJEXT))
|
2004-03-28 11:25:42 +04:00
|
|
|
@$(RM) $(RCFILES)
|