This project is closed and read-only.
Feature #3943 ยป 0001-backport-rc32776-llvm-gcc-build-to-ruby_1_9_2.patch
| Makefile.in | ||
|---|---|---|
|
hdrdir = $(srcdir)/include
|
||
|
CC = @CC@
|
||
|
CPP = @CPP@
|
||
|
YACC = bison
|
||
|
PURIFY =
|
||
|
AUTOCONF = autoconf
|
||
| cygwin/GNUmakefile.in | ||
|---|---|---|
|
-include uncommon.mk
|
||
|
ENABLE_SHARED=@ENABLE_SHARED@
|
||
|
DLLWRAP = @DLLWRAP@ --target=@target_os@
|
||
|
DLLWRAP = @DLLWRAP@ --target=@target_os@ --driver-name="$(CC)"
|
||
|
WINDRES = @WINDRES@ --preprocessor="$(CPP) -xc" -DRC_INVOKED
|
||
|
ifeq (@target_os@,cygwin)
|
||
|
DLL_BASE_NAME := $(LIBRUBY_SO:.dll=)
|
||
| ... | ... | |
|
$(RUBY_EXP) $(LIBRUBY_SO): $(DLL_BASE_NAME).res.@OBJEXT@
|
||
|
%.res.@OBJEXT@: %.rc
|
||
|
@WINDRES@ --include-dir . --include-dir $(<D) --include-dir $(srcdir)/win32 $< $@
|
||
|
$(WINDRES) --include-dir . --include-dir $(<D) --include-dir $(srcdir)/win32 $< $@
|
||
|
$(RCFILES): $(RBCONFIG)
|
||
|
@$(MINIRUBY) $(srcdir)/win32/resource.rb \
|
||