# Patterns for make output parser. # # The output of make have hierarchical structure. # Every level of hierarchy can begin with: # make: Entering directory `...' # or: # Making clean in syntax # make[1]: Entering directory `/opt/joe-3.7/syntax' # # and end with: # make[1]: Leaving directory `/opt/joe-3.7/syntax' # # This file contains patterns for such cases. # DEFAULT_IN_DIRECTORY_PATTERN=(.*)make (.*) TARGET_IN_DIRECTORY_PATTERN=^Making (.*) in (.*) ENTERING_DIRECTORY_PATTERN=make\\[(\\d*)\\]: Entering directory `(.*)' LEAVING_DIRECTORY_PATTERN=make\\[(\\d*)\\]: Leaving directory `(.*)'