Uses of Interface
org.eclipse.cdt.make.core.makefile.IMakefile

Packages that use IMakefile
org.eclipse.cdt.make.core   
org.eclipse.cdt.make.core.makefile.gnu   
org.eclipse.cdt.make.internal.core.makefile   
org.eclipse.cdt.make.internal.core.makefile.gnu   
org.eclipse.cdt.make.internal.core.makefile.posix   
org.eclipse.cdt.make.internal.ui.editor   
org.eclipse.cdt.make.ui   
 

Uses of IMakefile in org.eclipse.cdt.make.core
 

Methods in org.eclipse.cdt.make.core that return IMakefile
static IMakefile MakeCorePlugin.createMakefile(java.io.File file, boolean isGnuStyle, java.lang.String[] makefileDirs)
           
 IMakefile MakeCorePlugin.createMakefile(org.eclipse.core.resources.IFile file)
           
 

Uses of IMakefile in org.eclipse.cdt.make.core.makefile.gnu
 

Subinterfaces of IMakefile in org.eclipse.cdt.make.core.makefile.gnu
 interface IGNUMakefile
           
 

Uses of IMakefile in org.eclipse.cdt.make.internal.core.makefile
 

Classes in org.eclipse.cdt.make.internal.core.makefile that implement IMakefile
 class AbstractMakefile
          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 : "$<" | "$*" | "$@" | "$?"
 class NullMakefile
          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 : "$<" | "$*" | "$@" | "$?"
 

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

Classes in org.eclipse.cdt.make.internal.core.makefile.gnu that implement IMakefile
 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 : "$<" | "$*" | "$@" | "$?"
 

Uses of IMakefile in org.eclipse.cdt.make.internal.core.makefile.posix
 

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

Uses of IMakefile in org.eclipse.cdt.make.internal.ui.editor
 

Methods in org.eclipse.cdt.make.internal.ui.editor that return IMakefile
 IMakefile WorkingCopyManager.getWorkingCopy(org.eclipse.ui.IEditorInput input)
           
 IMakefile MakefileDocumentProvider.getWorkingCopy(java.lang.Object element)
           
 IMakefile IMakefileDocumentProvider.getWorkingCopy(java.lang.Object element)
          Returns the working copy for the given element.
 

Methods in org.eclipse.cdt.make.internal.ui.editor with parameters of type IMakefile
 void WorkingCopyManager.setWorkingCopy(org.eclipse.ui.IEditorInput input, IMakefile workingCopy)
           
 

Uses of IMakefile in org.eclipse.cdt.make.ui
 

Methods in org.eclipse.cdt.make.ui that return IMakefile
 IMakefile IWorkingCopyManager.getWorkingCopy(org.eclipse.ui.IEditorInput input)
          Returns the working copy remembered for the compilation unit encoded in the given editor input.
 

Methods in org.eclipse.cdt.make.ui with parameters of type IMakefile
 void IWorkingCopyManagerExtension.setWorkingCopy(org.eclipse.ui.IEditorInput input, IMakefile workingCopy)
          Sets the given working copy for the given editor input.