2007-12-20 22:22:43 -05:00
|
|
|
module Rake
|
|
|
|
|
|
|
|
# Makefile loader to be used with the import file loader.
|
|
|
|
class MakefileLoader
|
2011-06-23 18:11:55 -04:00
|
|
|
include Rake::DSL
|
|
|
|
|
2009-03-05 23:47:12 -05:00
|
|
|
SPACE_MARK = "\0"
|
2007-12-20 22:22:43 -05:00
|
|
|
|
|
|
|
# Load the makefile dependencies in +fn+.
|
|
|
|
def load(fn)
|
2011-06-23 18:11:55 -04:00
|
|
|
lines = File.read fn
|
2009-03-05 23:47:12 -05:00
|
|
|
lines.gsub!(/\\ /, SPACE_MARK)
|
|
|
|
lines.gsub!(/#[^\n]*\n/m, "")
|
|
|
|
lines.gsub!(/\\\n/, ' ')
|
|
|
|
lines.each_line do |line|
|
|
|
|
process_line(line)
|
2007-12-20 22:22:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Process one logical line of makefile data.
|
|
|
|
def process_line(line)
|
2009-03-05 23:47:12 -05:00
|
|
|
file_tasks, args = line.split(':', 2)
|
2007-12-20 22:22:43 -05:00
|
|
|
return if args.nil?
|
2011-06-23 18:11:55 -04:00
|
|
|
dependents = args.split.map { |d| respace(d) }
|
2009-03-05 23:47:12 -05:00
|
|
|
file_tasks.scan(/\S+/) do |file_task|
|
|
|
|
file_task = respace(file_task)
|
2008-09-17 21:17:04 -04:00
|
|
|
file file_task => dependents
|
|
|
|
end
|
2007-12-20 22:22:43 -05:00
|
|
|
end
|
2009-03-05 23:47:12 -05:00
|
|
|
|
|
|
|
def respace(str)
|
2011-06-23 18:11:55 -04:00
|
|
|
str.tr SPACE_MARK, ' '
|
2009-03-05 23:47:12 -05:00
|
|
|
end
|
2007-12-20 22:22:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Install the handler
|
|
|
|
Rake.application.add_loader('mf', MakefileLoader.new)
|
|
|
|
end
|