mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![usa](/assets/img/avatar_default.png)
it was not mentioned at its commit log and it caused a build error on Windows ($(MAKE) is already quoted). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
19 lines
605 B
Text
19 lines
605 B
Text
$(OBJS): $(HDRS) $(ruby_headers) \
|
|
$(VK_HEADER) \
|
|
$(hdrdir)/ruby/io.h \
|
|
$(hdrdir)/ruby/encoding.h \
|
|
$(hdrdir)/ruby/oniguruma.h
|
|
|
|
win32_vk.inc: win32_vk.list
|
|
|
|
.list.inc:
|
|
gperf --ignore-case -E -C -P -p -j1 -i 1 -g -o -t -K ofs -N console_win32_vk -k* $< \
|
|
| sed 's/(int)(long)&((\(struct stringpool_t\) *\*)0)->\(stringpool_[a-z0-9]*\)/offsetof(\1, \2)/g' \
|
|
> $(@F)
|
|
|
|
.SUFFIXES: .chksum .list .inc
|
|
|
|
.list.chksum:
|
|
@$(RUBY) -I$(top_srcdir)/tool -rchecksum \
|
|
-e "Checksum.update(ARGV) {|k|k.copy(k.target) rescue k.make(k.target)}" \
|
|
-- --make=$(MAKE) -I$(srcdir) $(<F) $(@F:.chksum=.inc)
|