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

* win32/Makefile.sub (COMPILERFLAG): new compiler flag to compile

enc/trans/japanese*.c.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-09-02 03:59:39 +00:00
parent a2ada174a5
commit 6d4a6a309b
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Sep 2 12:58:58 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub (COMPILERFLAG): new compiler flag to compile
enc/trans/japanese*.c.
Tue Sep 2 12:37:10 2008 Tanaka Akira <akr@fsij.org>
* enc/trans/japanese_euc.trans: splitted from japanese.trans to avoid

View file

@ -152,8 +152,11 @@ COUTFLAG = -Fo
!if !defined(RUNTIMEFLAG)
RUNTIMEFLAG = -MD
!endif
!if !defined(COMPILERFLAG)
COMPILERFLAG = -Zm200
!endif
!if !defined(CFLAGS)
CFLAGS = $(RUNTIMEFLAG) $(DEBUGFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG)
CFLAGS = $(RUNTIMEFLAG) $(DEBUGFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) $(COMPILERFLAG)
!endif
!if !defined(CXXFLAGS)
CXXFLAGS = $(CFLAGS)