summaryrefslogtreecommitdiff
path: root/win32/Makefile.sub
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-04 15:17:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-04 15:17:44 +0000
commit24fcc0275b9c9397300aaf1790667287b601de78 (patch)
tree08b45e74f5835d1c27c34576857b37e245aec52f /win32/Makefile.sub
parentbfae4b5d06fa7502b5afd848659c8136ce0e9dde (diff)
common.mk: CPPOUTFLAG
* common.mk (rb_mjit_header.h): use $(CPPOUTFLAG). * win32/Makefile.sub (CPPOUTFLAG): needs -Fi to let cl.exe name preprocessed file, instead of -Fo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62208 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/Makefile.sub')
-rw-r--r--win32/Makefile.sub3
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 094ce90c78..e94b0c98ae 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -209,6 +209,9 @@ OUTFLAG = -Fe
!if !defined(COUTFLAG)
COUTFLAG = -Fo
!endif
+!if !defined(CPPOUTFLAG)
+CPPOUTFLAG = -Fi
+!endif
!if !defined(CSRCFLAG)
CSRCFLAG = -Tc
!endif