Class GNUMakefileParser::MkOther
In: gnumakefileparser.rb
Parent: Object

ターゲットや編集代入ではない行

Methods

new   to_s  

Attributes

line  [RW] 

Public Class methods

引数 line に文字列を与えることで, @line が設定される.

[Source]

     # File gnumakefileparser.rb, line 229
229:     def initialize(line)
230:       @line = line
231:     end

Public Instance methods

オブジェクトの内容を Makefile 用のテキストに変換.

[Source]

     # File gnumakefileparser.rb, line 236
236:     def to_s
237:       return @line + "\n"
238:     end

[Validate]