mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	* Makefile.in, common.mk, win32/Makefile.sub: added preprocessing rules.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
		
							parent
							
								
									7b713539ee
								
							
						
					
					
						commit
						40819d4599
					
				
					 5 changed files with 24 additions and 3 deletions
				
			
		|  | @ -1,3 +1,12 @@ | |||
| Mon Mar 16 09:28:58 2009  Nobuyoshi Nakada  <nobu@ruby-lang.org> | ||||
| 
 | ||||
| 	* Makefile.in, common.mk, win32/Makefile.sub: added preprocessing rules. | ||||
| 
 | ||||
| Sun Mar 15 12:34:17 2009  Nobuyoshi Nakada  <nobu@ruby-lang.org> | ||||
| 
 | ||||
| 	* test/minitest/test_mini_test.rb: fixed tests depending on the | ||||
| 	  detail of floating point representation. | ||||
| 
 | ||||
| Sun Mar 15 12:01:36 2009  Nobuyoshi Nakada  <nobu@ruby-lang.org> | ||||
| 
 | ||||
| 	* lib/rubygems/installer.rb (Gem::Installer#shebang): fix for env | ||||
|  |  | |||
|  | @ -215,6 +215,9 @@ lex.c: defs/keywords | |||
| .c.S: | ||||
| 	$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -S $< | ||||
| 
 | ||||
| .c.i: | ||||
| 	$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -E $< > $@ | ||||
| 
 | ||||
| clean-local:: | ||||
| 	@$(RM) ext/extinit.c ext/extinit.$(OBJEXT) ext/ripper/y.output | ||||
| 
 | ||||
|  |  | |||
|  | @ -2,7 +2,7 @@ bin: $(PROGRAM) $(WPROGRAM) | |||
| lib: $(LIBRUBY) | ||||
| dll: $(LIBRUBY_SO) | ||||
| 
 | ||||
| .SUFFIXES: .inc .h .c .y | ||||
| .SUFFIXES: .inc .h .c .y .i | ||||
| 
 | ||||
| RUBYLIB       = - | ||||
| RUBYOPT       = - | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| #define RUBY_VERSION "1.9.2" | ||||
| #define RUBY_RELEASE_DATE "2009-03-15" | ||||
| #define RUBY_RELEASE_DATE "2009-03-16" | ||||
| #define RUBY_PATCHLEVEL -1 | ||||
| #define RUBY_BRANCH_NAME "trunk" | ||||
| 
 | ||||
|  | @ -8,7 +8,7 @@ | |||
| #define RUBY_VERSION_TEENY 1 | ||||
| #define RUBY_RELEASE_YEAR 2009 | ||||
| #define RUBY_RELEASE_MONTH 3 | ||||
| #define RUBY_RELEASE_DAY 15 | ||||
| #define RUBY_RELEASE_DAY 16 | ||||
| 
 | ||||
| #ifdef RUBY_EXTERN | ||||
| RUBY_EXTERN const char ruby_version[]; | ||||
|  |  | |||
|  | @ -830,6 +830,15 @@ end | |||
| .c.asm: | ||||
| 	$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -Fa$@ -c -Tc$(<:\=/) | ||||
| 
 | ||||
| {$(srcdir)/missing}.c.i: | ||||
| 	$(CC) $(XCFLAGS) $(CPPFLAGS) -P -Tc$(<:\=/) > $@ | ||||
| {$(srcdir)/win32}.c.i: | ||||
| 	$(CC) $(XCFLAGS) $(CPPFLAGS) -P -Tc$(<:\=/) | ||||
| {$(srcdir)}.c.i: | ||||
| 	$(CC) $(XCFLAGS) $(CPPFLAGS) -P -Tc$(<:\=/) | ||||
| .c.i: | ||||
| 	$(CC) $(XCFLAGS) $(CPPFLAGS) -P -Tc$(<:\=/) | ||||
| 
 | ||||
| .rc.res: | ||||
| 	$(RC) -I. -I$(<D) $(iconinc) -I$(srcdir)/win32 $(RFLAGS) -fo$@ $(<:\=/) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 nobu
						nobu