Method: Test#build
- Defined in:
- lib/makeconf/test.rb
#build ⇒ Object
17 18 19 20 21 22 23 24 25 26 |
# File 'lib/makeconf/test.rb', line 17 def build makefile = super() unless SystemType.host =~ /-androideabi$/ makefile.add_dependency('check', @id) makefile.add_rule('check', './' + @id) end return makefile end |