1999-08-13 01:45:20 -04:00
|
|
|
include Makefile
|
|
|
|
|
2000-07-02 11:57:18 -04:00
|
|
|
ENABLE_SHARED=@ENABLE_SHARED@
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2003-08-07 01:43:59 -04:00
|
|
|
ifeq (@target_os@,cygwin)
|
|
|
|
DLL_BASE_NAME := $(subst .dll,,$(LIBRUBY_SO))
|
|
|
|
else
|
|
|
|
DLL_BASE_NAME := $(RUBY_SO_NAME)
|
|
|
|
endif
|
|
|
|
|
2003-01-04 20:40:24 -05:00
|
|
|
ifneq ($(ENABLE_SHARED),yes)
|
2002-06-11 06:26:13 -04:00
|
|
|
RUBY_EXP = $(RUBY_INSTALL_NAME).exp
|
|
|
|
EXTOBJS = $(RUBY_EXP)
|
|
|
|
LIBRUBYARG = $(LIBRUBY_A)
|
2003-06-01 08:58:56 -04:00
|
|
|
LIBRUBY_SO =
|
2000-05-13 12:13:31 -04:00
|
|
|
endif
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2002-06-11 06:26:13 -04:00
|
|
|
ifeq ($(RUBY_INSTALL_NAME),ruby)
|
2000-08-03 05:50:41 -04:00
|
|
|
RUBYW_INSTALL_NAME = $(RUBY_INSTALL_NAME)w
|
2002-06-11 06:26:13 -04:00
|
|
|
else
|
|
|
|
RUBYW_INSTALL_NAME = $(subst ruby,rubyw,$(RUBY_INSTALL_NAME))
|
2000-08-03 05:50:41 -04:00
|
|
|
endif
|
2003-08-07 01:43:59 -04:00
|
|
|
|
2000-08-03 05:50:41 -04:00
|
|
|
WPROGRAM = $(RUBYW_INSTALL_NAME)$(EXEEXT)
|
2003-08-07 01:43:59 -04:00
|
|
|
SOLIBS := $(DLL_BASE_NAME).res.@OBJEXT@ $(SOLIBS)
|
2000-08-09 00:32:24 -04:00
|
|
|
EXTOBJS += $(@:$(EXEEXT)=.res.@OBJEXT@)
|
2000-07-05 10:12:27 -04:00
|
|
|
|
2003-06-01 08:58:56 -04:00
|
|
|
$(LIBRUBY): $(RUBY_EXP) $(LIBRUBY_SO)
|
2003-08-07 01:43:59 -04:00
|
|
|
$(RUBY_EXP) $(LIBRUBY_SO): $(DLL_BASE_NAME).res.@OBJEXT@
|
2000-05-13 12:13:31 -04:00
|
|
|
|
2000-08-09 00:32:24 -04:00
|
|
|
%.res.@OBJEXT@: %.rc
|
2001-05-28 12:07:34 -04:00
|
|
|
@WINDRES@ --include-dir . --include-dir $(<D) --include-dir $(srcdir)/win32 $< $@
|
2000-08-03 05:50:41 -04:00
|
|
|
|
2003-08-07 01:43:59 -04:00
|
|
|
$(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(DLL_BASE_NAME).rc: rbconfig.rb
|
* 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 10:03:46 -04:00
|
|
|
@$(MINIRUBY) $(srcdir)/win32/resource.rb \
|
2000-08-03 05:50:41 -04:00
|
|
|
-ruby_name=$(RUBY_INSTALL_NAME) -rubyw_name=$(RUBYW_INSTALL_NAME) \
|
2003-08-07 01:43:59 -04:00
|
|
|
-so_name=$(DLL_BASE_NAME) \
|
2000-08-03 05:50:41 -04:00
|
|
|
. $(icondirs) $(srcdir)/win32
|
|
|
|
|
2000-08-09 00:32:24 -04:00
|
|
|
$(PROGRAM): $(RUBY_INSTALL_NAME).res.@OBJEXT@
|
|
|
|
$(WPROGRAM): $(RUBYW_INSTALL_NAME).res.@OBJEXT@
|
2000-08-03 05:50:41 -04:00
|
|
|
@rm -f $@
|
|
|
|
$(PURIFY) $(CC) -mwindows -e _mainCRTStartup $(LDFLAGS) $(XLDFLAGS) \
|
|
|
|
$(MAINOBJ) $(EXTOBJS) $(LIBRUBYARG) $(LIBS) -o $@
|
|
|
|
|
2003-06-01 08:58:56 -04:00
|
|
|
$(RUBY_EXP): $(LIBRUBY_A)
|
|
|
|
@DLLWRAP@ --target=@target_os@ --driver-name=$(CC) \
|
|
|
|
--output-exp=$(RUBY_EXP) \
|
|
|
|
--export-all $(LIBRUBY_A) $(LIBS) -o $(PROGRAM)
|
|
|
|
$(LDSHARED) $(DLDFLAGS) $(OBJS) dmyext.o $(SOLIBS) -o $(PROGRAM)
|
|
|
|
@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 10:03:46 -04:00
|
|
|
|
|
|
|
GNUmakefile: $(srcdir)/cygwin/GNUmakefile.in
|
|
|
|
|
|
|
|
ifeq (@target_os@,mingw32)
|
|
|
|
$(OBJS) $(MAINOBJ): win32/win32.h
|
|
|
|
endif
|
2003-08-07 03:11:50 -04:00
|
|
|
|
|
|
|
ifeq (@target_os@,cygwin)
|
|
|
|
cygwin-$(RUBY_INSTALL_NAME)$(MAJOR)$(MINOR).dll: $(LIBRUBY_A)
|
|
|
|
@NM@ --extern --defined $(LIBRUBY_A) | \
|
|
|
|
$(MINIRUBY) -ne 'BEGIN{puts "EXPORTS"}; puts $$1+"=cyg$(RUBY_INSTALL_NAME)$(MAJOR)$(MINOR)."+$$1 if / [CDT] _(.*)$$/' >rubydll.def
|
2003-08-09 11:36:23 -04:00
|
|
|
@DLLWRAP@ -s --def=rubydll.def -o $@
|
2003-08-07 03:11:50 -04:00
|
|
|
@rm -f rubydll.def
|
|
|
|
endif
|