mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 d90075cb10
			
		
	
	
		d90075cb10
		
	
	
	
	
		
			
			* ext/json/parser/prereq.mk (parser.c): use `enum` instead of `static const int` to get rid of unused-const-variable warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| RAGEL = ragel
 | |
| 
 | |
| .SUFFIXES: .rl
 | |
| 
 | |
| .rl.c:
 | |
| 	$(RAGEL) -G2 $<
 | |
| 	$(BASERUBY) -pli -e '$$_.sub!(/[ \t]+$$/, "")' \
 | |
| 	-e '$$_.sub!(/^static const int (JSON_.*=.*);$$/, "enum {\\1};")' $@
 | |
| 
 | |
| parser.c:
 |