1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/rake/loaders/makefile.rb
nobu cf4f718bc8 * lib/rake/loaders/makefile.rb (Rake::MakefileLoader#load): deals with
escaped spaces.  incorporated from rake 0.8.4.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-03-06 04:47:12 +00:00

38 lines
880 B
Ruby

module Rake
# Makefile loader to be used with the import file loader.
class MakefileLoader
SPACE_MARK = "\0"
# Load the makefile dependencies in +fn+.
def load(fn)
lines = open(fn) {|mf| mf.read}
lines.gsub!(/\\ /, SPACE_MARK)
lines.gsub!(/#[^\n]*\n/m, "")
lines.gsub!(/\\\n/, ' ')
lines.each_line do |line|
process_line(line)
end
end
private
# Process one logical line of makefile data.
def process_line(line)
file_tasks, args = line.split(':', 2)
return if args.nil?
dependents = args.split
file_tasks.scan(/\S+/) do |file_task|
file_task = respace(file_task)
file file_task => dependents
end
end
def respace(str)
str.tr(SPACE_MARK, ' ')
end
end
# Install the handler
Rake.application.add_loader('mf', MakefileLoader.new)
end