Flowdock
method

each_compile_rules

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: MakeMakefile
each_compile_rules() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/mkmf.rb, line 2053
  def each_compile_rules # :nodoc:
    vpath_splat = /\$\(\*VPATH\*\)/
    COMPILE_RULES.each do |rule|
      if vpath_splat =~ rule
        $VPATH.each do |path|
          yield rule.sub(vpath_splat) {path}
        end
      else
        yield rule
      end
    end
  end
Register or log in to add new notes.