1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typo and make directory

* common.mk (coroutine/amd64/Context.$(OBJEXT)): fix a typo,
  $(OBJECT).

* common.mk (coroutine/amd64): recipe to make object directory.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-11-20 10:29:03 +00:00
parent 3ccb5b9770
commit 973bcc5953
3 changed files with 6 additions and 5 deletions

View file

@ -406,7 +406,6 @@ $(srcdir)/enc/jis/props.h: enc/jis/props.kwd
.s.@OBJEXT@:
@$(ECHO) assembling $<
$(Q) $(MAKEDIRS) $(@D)
$(Q) $(CC) $(ASFLAGS) -o $@ -c $<
.c.S:

View file

@ -852,7 +852,7 @@ exe/$(PROGRAM): ruby-runner.c ruby-runner.h exe/.time miniruby$(EXEEXT) {$(VPATH
$(@F) $(@D)
exe/.time:
$(Q) $(MAKEDIRS) exe $(@D)
$(Q) $(MAKEDIRS) $(@D)
@exit > $@
$(BUILTIN_ENCOBJS) $(BUILTIN_TRANSOBJS): $(ENC_TRANS_D)
@ -895,7 +895,11 @@ strstr.$(OBJEXT): {$(VPATH)}strstr.c
nt.$(OBJEXT): {$(VPATH)}nt.c
ia64.$(OBJEXT): {$(VPATH)}ia64.s
$(CC) $(CFLAGS) -c $<
coroutine/amd64/Context.$(OBJECT): {$(VPATH)}coroutine/amd64/Context.s
coroutine/amd64/Context.$(OBJEXT): {$(VPATH)}coroutine/amd64/Context.s
coroutine/amd64/Context.$(OBJEXT): coroutine/amd64/.time
coroutine/amd64/.time:
$(Q) $(MAKEDIRS) $(@D)
@exit > $@
###

View file

@ -1226,11 +1226,9 @@ $(ruby_pc): $(RBCONFIG)
{$(srcdir)/coroutine/Win32}.asm.obj:
$(ECHO) assembling $(<:\=/)
@if not exist $(@D:/=\) md $(@D:/=\)
$(Q) $(AS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c $(<:\=/)
{$(srcdir)/coroutine/Win64}.asm.obj:
$(ECHO) assembling $(<:\=/)
@if not exist $(@D:/=\) md $(@D:/=\)
$(Q) $(AS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -c $(<:\=/)
{$(srcdir)/enc/trans}.c.obj: