Uses of Interface
org.eclipse.cdt.make.core.makefile.gnu.IGNUMakefile

Packages that use IGNUMakefile
org.eclipse.cdt.make.internal.core.makefile.gnu   
 

Uses of IGNUMakefile in org.eclipse.cdt.make.internal.core.makefile.gnu
 

Classes in org.eclipse.cdt.make.internal.core.makefile.gnu that implement IGNUMakefile
 class GNUMakefile
          Makefile : ( statement ) * statement : rule | macro_definition | comments | empty rule : inference_rule | target_rule inference_rule : target ':' ( command ) + target_rule : target [ ( target ) * ] ':' [ ( prerequisite ) * ] [ ';' command ] [ ( command ) * ] macro_definition : string '=' (string)* comments : ('#' (string) ) * empty : command : prefix_command string target : string prefix_command : '-' | '@' | '+' internal_macro : "$<" | "$*" | "$@" | "$?"