mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c67251edb4
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@876 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
652 B
Makefile
27 lines
652 B
Makefile
# -*- makefile -*-
|
|
|
|
!IF "$(WIN32DIR)" == "win32"
|
|
srcdir = .
|
|
!ELSEIF "$(WIN32DIR)" == "$(WIN32DIR:/win32=)/win32"
|
|
srcdir = $(WIN32DIR:/win32=)
|
|
!ELSE
|
|
srcdir = $(WIN32DIR)/..
|
|
!ENDIF
|
|
OS = mswin32
|
|
|
|
all: config.h config.status
|
|
all: ext
|
|
all: Makefile
|
|
all:; @echo type `nmake' to make ruby for mswin32.
|
|
|
|
Makefile:
|
|
@echo ### makefile for ruby $(OS) ###> $@
|
|
@echo srcdir = $(srcdir:\=/)>> $@
|
|
@echo RUBY_INSTALL_NAME = ruby>> $@
|
|
@echo RUBY_SO_NAME = $$(RUBY_INSTALL_NAME).$(OS)>> $@
|
|
@echo !INCLUDE $$(srcdir)/win32/Makefile.sub>> $@
|
|
|
|
config.h config.status: $(srcdir)/win32/$$@.in
|
|
@copy $(srcdir:/=\)\win32\$@.in $@ > nul
|
|
|
|
ext:; @if not exist $@\* mkdir $@
|