hF]      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\ Safe-Inferred ]^_`abcdefg^cdefg ]^_`abcdefgNonehijkhjkhijk Safe-Inferredl1Generates an HTML report given some build system " profiling data in JSON format. mETemplate Engine. Perform the following replacements on a line basis:   script src="foo" /script ==>  script[[foo]] /script   link-href="foo" rel="stylesheet" type="text/css" / ==>  styletype="text/css"[[foo]] /style lmllm Safe-InferredVThe type representing a finite resource, which multiple build actions should respect.  Created with  in the n monad before calling ,  and used with   in the   monad  when defining rules. WAs an example, only one set of calls to the Excel API can occur at one time, therefore < Excel is a finite resource of quantity 1. You can write:    do excel <-  "Excel" 1    {  =2} $ do    ["a.xls","b.xls"]  "*.xls"  \out ->    excel 1 $   "excel" [out,...] Now the two calls to excel$ will not happen in parallel. Using   is better than oL as it will not block any other threads from executing. Be careful that the  actions run within  C do not themselves require further quantities of this resource, or  you may get a "0thread blocked indefinitely in an MVar operation" exception. Typically only  system commands (such as ) will be run inside  ,  not commands such as . ^As another example, calls to compilers are usually CPU bound but calls to linkers are usually b disk bound. Running 8 linkers will often cause an 8 CPU system to grid to a halt. We can limit  ourselves to 4 linkers with:   do disk <-  "Disk" 4    {  =8} $ do    [show i  "exe" | i < - [1..100]]  "*.exe"  \out ->    disk 1 $   "ld" ["-o",out,...]  "*.o"  \out ->   "cl" ["-o",out,...] p.Starts out empty, then is filled exactly once q&Like an MVar, but must always be full rLike an MVar, but has no value lCreate a new finite resource, given a name (for error messages) and a quantity of the resource that exists.  For an example see . sjTry to acquire a resource. Returns Nothing to indicate you have acquired with no blocking, or Just act to O say after act completes (which will block) then you will have the resource. tMYou should only ever releaseResource that you obtained with acquireResource. upvqwrxyz{|}~stpqryz{|}~stupvqwrxyz{|}~stNoneHGiven a pool, and a function that breaks the S invariants, restore them 2 They are only allowed to touch working or todo Add a new task to the pool EA blocking action is being run while on the pool, yield your thread. 5 Should only be called by an action under addPool. MIf the first part of the result is True then the result is sufficiently high K priority that you may exceed the pool limit to get it done immediately. M Always the result of a child thread raising an error, which will probably ! raise an error in the parent. <Run all the tasks in the pool on the given number of works. F If any thread throws an exception, the exception will be reraised.  Safe-InferredNone None$Is the exception asyncronous, not a  coding error that should be ignored Logging function File prefix to use User supplied version number 5How often to flush (Nothing = never, Just = seconds) Witness Execute None   Safe-Inferred  Drop the first directory from a . Should only be used on  relative paths. # dropDirectory1 "aaa/bbb" == "bbb"  dropDirectory1 "aaa/" == ""  dropDirectory1 "aaa" == ""  dropDirectory1 "" == "" Take the first component of a . Should only be used on  relative paths. # takeDirectory1 "aaa/bbb" == "aaa"  takeDirectory1 "aaa/" == "aaa"  takeDirectory1 "aaa" == "aaa"  Normalise a , applying the standard  normalisation, plus & translating any path separators to / and removing foo/.. components where possible. *Convert to native path separators, namely \ on Windows. %Combine two file paths, an alias for . $Combine two file paths. Any leading ./ or ../ components in the right file  are eliminated. * combine "aaa/bbb" "ccc" == "aaa/bbb/ccc" , combine "aaa/bbb" "./ccc" == "aaa/bbb/ccc" ) combine "aaa/bbb" "../ccc" == "aaa/ccc"  4         Safe-Inferred-A type synonym for file patterns, containing // and *. For the syntax  and semantics of  see . $Return is (brackets, matched, rest) Match a  against a $, There are only two special forms:  *= matches an entire path component, excluding any separators.  //1 matches an arbitrary number of path components. Some examples that match:    "*.c"  "foo/bar/baz.c"  "*.c"  "baz.c"  "*.c"  "baz.c"  "test.c"  "test.c" Examples that don't match:    "*.c"  "foo/bar.c"  "*/*.c"  "foo/bar/baz.c" )An example that only matches on Windows:   "foo/bar"  "foo\\bar" Do they have the same * and  counts in the same order EExtract the items that match the wildcards. The pair must match with . Given the result of , substitute it back in to a  pattern. / p '?==' x ==> substitute (extract p x) p == x  !"#$%&'(  ! "%$#&'(NoneODefine an alias for the six type classes required for things involved in Shake s. G This alias is only available in GHC 7.4 and above, and requires the ConstraintKinds extension. cTo define your own values meeting the necessary constraints it is convenient to use the extensions  GeneralizedNewtypeDeriving and DeriveDataTypeable to write: [ newtype MyType = MyType (String, Bool) deriving (Show,Typeable,Eq,Hashable,Binary,NFData)  Safe-Inferred"!The verbosity data type, used by . HPrint messages for virtually everything (for debugging a build system). HPrint lots of messages (typically errors, warnings and status updates). 7Print normal messages (typically errors and warnings). 2Only print essential messages (typically errors). Don't print any messages. )iAll foreseen exception conditions thrown by Shake, such problems with the rules or errors when executing 4 rules, will be raised using this exception type. *,Internal type, copied from Hide in Uniplate UOptions to control the execution of Shake, usually specified by overriding fields in  3:   3{=4, =Just " report.html"}The +$ instance for this type reports the $# field as having the abstract type *,  because +" cannot be defined for functions.  Defaults to .shakeD. The prefix of the filename used for storing Shake metadata files. $ All metadata files will be named . extension , for some  extension.  Defaults to 19. Maximum number of rules to run in parallel, similar to  make --jobs=N. 6 To enable parallelism you may need to compile with  -threaded. e For many build systems, a number equal to or slightly less than the number of physical processors  works well.  Defaults to 1*. The version number of your build rules. Q Increment the version number to force a complete rebuild, such as when making V significant changes to the rules that require a wipe. The version number should be ? set in the source code, and not passed on the command line.  Defaults to 0. What level of messages should be printed out.  Defaults to ,G. Operate in staunch mode, where building continues even after errors,  similar to make --keep-going.  Defaults to -:. Write an HTML profiling report to a file, showing which j rules rebuilt, why, and how much time they took. Useful for improving the speed of your build systems.  Defaults to ,T. Perform basic sanity checks after building, checking files have not been modified ^ several times during the build. These sanity checks fail to catch most interesting errors. ! Defaults to ,X. Run rules in a deterministic order, as far as possible. Typically used in conjunction  with =12 for reproducing a build. If this field is set to ,, Shake will run rules b in a random order, which typically decreases contention for resources and speeds up the build. " Defaults to . 109. How often to flush Shake metadata files in seconds, or - to never flush explicitly. m It is possible that on abnormal termination (not Haskell exceptions) any rules that completed in the last  " seconds will be lost. # Defaults to -$. Assume all build objects are clean/ dirty, see % for details.  Can be used to implement  make --touch. $bDefaults to no action. A function called when the build starts, allowing progress to be reported,  see ( for details. %:The current assumptions made by the build system, used by #. These options ] allow the end user to specify that any rules run are either to be treated as clean, or as 6 dirty, regardless of what the build system thinks. ?These assumptions only operate on files reached by the current  commands. Any 3 other files in the database are left unchanged. &BThis assumption is unsafe, and may lead to incorrect build results. \ Assume that all rules reached are clean and do not require rebuilding, provided the rule  has a G and has been built before. Useful if you have modified a file in some ^ inconsequential way, such as only the comments or whitespace, and wish to avoid a rebuild. 'NAssume that all rules reached are dirty and require rebuilding, equivalent to  always  returning - . Useful to undo the results of &%, for benchmarking rebuild speed and a for rebuilding if untracked dependencies have changed. This assumption is safe, but may cause # more rebuilding than necessary. (ZInformation about the current state of the build, obtained by passing a callback function  to $I. Typically a program will poll this value to provide progress messages. Q The following example displays the approximate single-threaded time remaining  as the console title.  showProgress :: IO ( -> IO () +showProgress progress = void $ forkIO loop  where loop = do  current < - progress  when (* current) $ do ) let (s,c) = timeTodo current  setTitle $ "Todo = " ++ show (ceiling s) ++ "s (+ " ++ show c ++ " unknown)" & threadDelay $ 5 * 1000000  loop  setTitle :: String -> IO () setTitle s = putStr $ "\ESC]0;" ++ s ++ "\BEL" * Starts out / , becomes , once the build has completed. +HNumber of rules which were required, but were already in a valid state. ,8Number of rules which were have been built in this run. -XNumber of rules which have been built previously, but are not yet known to be required. .hNumber of rules which are currently required (ignoring dependencies that do not change), but not built. /Time spent building + rules in previous runs. 0Time spent building , rules. 1Time spent building - rules in previous runs. 2Time spent building .b rules in previous runs, plus the number which have no known time (have never been built before). 3The default set of . 2)0*12 !"#$%&'()*+,-./01233456789:;<=$)0 !"#$%&'()*+,-./0123)0*12  !"#$%'&( )*+,-./01233456789:;<=None>[Given a Key and a Value from the database, check it still matches the value stored on disk ?mGiven a chunk of stack (bottom element first), and a key, either raise an exception or successfully build it @NInvariant: The database does not have any cycles when a Key depends on itself ADCall once at the start, then call repeatedly to get Time values out BTReturn either an exception (crash), or (how much time you spent waiting, the value) CuGiven a map of representing a dependency order (with a show for error messages), find an ordering for the items such 1 that no item points to an item before itself. . Raise an error if you end up with a cycle. D;Eliminate all errors from the database, pretending they don't exist HEFGH>?IJKLMNOPQRSTUVWXYZ[\@]^_`abcdefghijklmAnopqrstuvwxyzB{CD|}~GH>?I@deghmAorB{|},EFGH>?IJKLMNOPQRSTUVW\[ZYX@]^_`abcdefghijklmAnopqrstuvwxyzB{CD|}~None4The 4 monad, use  to raise n actions into it, and need to execute files.  Action values are used by 9 and :. 5:Define a set of rules. Rules can be created with calls to 9, 8 or :. Rules are combined  with either the " instance, or (more commonly) the  instance and do notation. 68Define a pair of types that can be used by Shake rules. / To import all the type classes required see Development.Shake.Classes. 7 Retrieve the value associated with a key, if available. As an example for filenames/1timestamps, if the file exists you should return . ' the timestamp, but otherwise return -!. For rules whose values are not  stored externally, 7 should return -. 8Like 9, but lower priority, if no 9 exists then 8 is checked. ' All default rules must be disjoint. 94Add a rule to build a key, returning an appropriate 4. All rules must be disjoint. & To define lower priority rules use 8. TAdd a rule at a given priority, higher numbers correspond to higher-priority rules.  The function 8 is priority 0 and 9& is priority 1. All rules of the same  priority must be disjoint. :CRun an action, usually used for specifying top-level requirements. ;NRemove all actions specified in a set of rules, usually used for implementing 0 command line specification of what to build. /Internal main function (not exported publicly) <aExecute a rule, returning the associated values. If possible, the rules will be run in parallel. F This function requires that appropriate rules have been added with 9 or 8. =+Apply a single rule, equivalent to calling <( with a singleton list. Where possible,  use < to allow parallelism. >7Write an action to the trace list, along with the start/#end time of running the IO action.  The  command automatically calls >-. The trace list is used for profile reports  (see ). ?2Write a message to the output when the verbosity () is appropriate. D The output will not be interleaved with any other Shake messages 4 (other than those generated by system commands). @2Write a message to the output when the verbosity () is appropriate. D The output will not be interleaved with any other Shake messages 4 (other than those generated by system commands). A2Write a message to the output when the verbosity () is appropriate. D The output will not be interleaved with any other Shake messages 4 (other than those generated by system commands). B+Get the current verbosity level, as set by  . If you I want to output information to the console, you are recommended to use  ? / @ / A&, which ensures multiple messages are  not interleaved. CGRun an action which uses part of a finite resource. For an example see . 6456789:;<=>?@ABC456789:;<=>?@ABC!456789:;<=>?@ABCNoneMThis function is not actually exported, but Haddock is buggy. Please ignore. DReturns / if the file exists. EQGet the contents of a directory. The result will be sorted, and will not contain  the files . or ..@ (unlike the standard Haskell version). It is usually better to  call either F or G'. The resulting paths will be relative  to the first argument. F>Get the files in a directory that match a particular pattern. - For the interpretation of the pattern see . G?Get the directories contained by a directory, does not include . or ... DEFGDEFGDEFG NoneMThis function is not actually exported, but Haddock is buggy. Please ignore. HKRequire that the following files are built before continuing. Particularly  necessary when calling . As an example:   "*.rot13" L \ out -> do  let src =  out  H [src]   ["rot13",src,"-o",out] IORequire that the following are built by the rules, used to specify the target.    main =   shakeOptions $ do  I ["Main.exe"]  ... This program will build Main.exe, given sufficient rules. J<Define a rule to build files. If the first argument returns / for a given file, 9 the second argument will be used to build it. Usually L is sufficient, but J gives X additional power. For any file used by the build system, only one rule should return /.   (all isUpper . ) J \ out -> do  let src = & out $ map toLower $ takeBaseName out  ! . map toUpper =<< " src KQDefine a set of patterns, and if any of them match, run the associated rule. See L. LDefine a rule that matches a ). No file required by the system must be @ matched by more than one pattern. For the pattern rules, see .    "*.asm.o" L \ out -> do  let src =  out  H [src]   ["as",src,"-o",out] MTo define a build system for multiple compiled languages, we recommend using .asm.o,  .cpp.o, .hs.o6, to indicate which language produces an object file.  I.e., the file foo.cpp produces object file  foo.cpp.o. 7Note that matching is case-sensitive, even on Windows. HIJKLHIJKL HIJKL#NoneMFAdd extra information which your build should depend on. For example:   W newtype GhcVersion = GhcVersion () deriving (Show,Typeable,Eq,Hashable,Binary,NFData)  M $ GhcVersion -> return "7.2.1" 6If a rule depends on the GHC version, it can then use N GhcVersion, and ? if the GHC version changes, the rule will rebuild. We use a newtype around () to  allow the use of GeneralizedNewtypeDeriving&. It is common for the value returned  by N to be ignored, in which case O may help avoid ambiguous type P messages -- although a wrapper function with an explicit type is encouraged. / To import all the type classes required see Development.Shake.Classes. We require that each type of question map to exactly one type of answer, - otherwise a runtime error will be raised. Actions passed to M/ will be run in every build they are required, \ but if their value does not change they will not invalidate any rules depending on them. / To get a similar behaviour using files, see $. FAs an example, consider tracking package versions installed with GHC:   Vnewtype GhcPkgList = GhcPkgList () deriving (Show,Typeable,Eq,Hashable,Binary,NFData) `newtype GhcPkgVersion = GhcPkgVersion String deriving (Show,Typeable,Eq,Hashable,Binary,NFData)  do  M $ \GhcPkgList{} -> do  (out,_) <-  systemOutput "ghc-pkg" ["list","--simple-output"] + return [(reverse b, reverse a) | x <%- words out, let (a,_:b) = break (== '-' ) $ reverse x]  let getPkgList = O (GhcPkgList ()) [("","")]  --  M $ \(GhcPkgVersion pkg) -> do  pkgs < - getPkgList ! return $ lookup pkg pkgs  let getPkgVersion pkg = O (GhcPkgVersion pkg) (Just "") >Using these definitions, any rule depending on the version of shake  should call getPkgVersion shake to rebuild when shake is upgraded. N&Get information previously added with M, the question/answer! types must match those provided  to M. O&Get information previously added with M). The second argument is unused, but can 5 be useful to avoid ambiguous type error messages. MNOMNOMNO%NonePIAlways rerun the associated action. Useful for defining rules that query ! the environment. For example:   "ghcVersion.txt"  \ out -> do  P  (stdout,_) <- & "ghc" [" --version"]  ' out stdout  PPP(NoneQ<Define a rule for building multiple files at the same time. ; As an example, a single invokation of GHC produces both .hi and .o files:    ["*.o","*.hi"] Q \[o,hi] -> do  let hs = ) o "hs"  ! ... -- all files the .hs import   "ghc" ["-c",hs] However, in practice, it'&s usually easier to define rules with L and make the .hi depend  on the .o9. When defining rules that build multiple files, all the  values must  have the same sequence of // and * wildcards in the same order. RLDefine a rule for building multiple files at the same time, a more powerful ! and more dangerous version of Q. Given an application  test ?>> ..., test should return Just! if the rule applies, and should = return the list of files that will be produced. This list must3 include the file passed as an argument and should  obey the invariant:   test x == Just ys ==> x `elem` ys && all ((== Just ys) . test) ys 7As an example of a function satisfying the invariaint:    test x | * x `elem` [".hi",".o"]  = Just [+ x  "hi", + x  "o"] test _ = Nothing Regardless of whether Foo.hi or Foo.o( is passed, the function always returns [Foo.hi, Foo.o]. QRQRQR,None SZExecute a system command. This function will raise an error if the exit code is non-zero.  Before running S make sure you H any required files. TVExecute a system command with a specified current working directory (first argument). C This function will raise an error if the exit code is non-zero.  Before running T make sure you H any required files. ' systemCwd "/usr/MyDirectory" "pwd" [] U$Execute a system command, returning (stdout,stderr). C This function will raise an error if the exit code is non-zero.  Before running U make sure you H any required files. VcopyFile old new copies the existing file from old to new. The old file is has H called on it  before copying the file. WRead a file, after calling H. XWrite a file, lifted to the 4 monad. Y A version of W* which also splits the result into lines. Z A version of X# which writes out a list of lines. [5Write a file, but only if the contents would change. STUVWXYZ[ STUVWXYZ[ STUVWXYZ[None\[Main entry point for running Shake build systems. For an example see the top of the module Development.Shake.  Use % to specify how the system runs, and 5 to specify what to build. \Q !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\Q\ !"#$3%'&()*+,-./01267589:;4<=>B?@ASTUVWXYZ[HILKJRQDEFGMNOPC\-./01203456789:;<=>?@ABCDEFGHIJKLMNOPQRRS TUVWXYZ[\]^_``abcdefghi  jklmnopqrst uvwx  y z #{#|#}%$(~(,,,&,,",!,,,'-0A-000056565656565655550      !"#$%+)*&'()*+,-./0123456789:;<=>?@ABCDEFGH0IJ-K0LM0LN-OGHPQRSTUVWXYZ[\]^_`abccddeefghhiijklmnopqgrst^uvwxyz{{|}~~00 ymoj         #####%%%%%%%%%(((((((( shake-0.5Development.Shake.ClassesDevelopment.ShakeDevelopment.Shake.FilePath Paths_shakeDevelopment.Shake.FileTimeDevelopment.Shake.ReportDevelopment.Shake.Locksshake withResourceAction shakeOptions shakeThreadswant*>system'need<.>Development.Shake.PoolDevelopment.Shake.BinaryDevelopment.Shake.ValueDevelopment.Shake.StorageDevelopment.Shake.InternDevelopment.Shake.FilePatternRuleDevelopment.Shake.Typesaction storedValueDevelopment.Shake.DatabaseDevelopment.Shake.CoreDeveloment.ShakeDevelopment.Shake.DirectoryDevelopment.Shake.File writeFile' readFile'Development.Shake.Oracle alwaysRerunDevelopment.Shake.Rerun systemOutputwriteFileChangedDevelopment.Shake.FilesreplaceExtension takeExtension dropExtensionDevelopment.Shake.Derivedghc-prim GHC.ClassesEqbaseGHC.ShowShowData.Typeable.InternalTypeablebinary-0.5.1.1 Data.BinaryBinarydeepseq-1.3.0.1Control.DeepSeqNFDatahashable-1.2.0.3Data.Hashable.ClassHashabletransformers-0.3.0.0Control.Monad.IO.ClassliftIOResource newResourcedropDirectory1takeDirectory1 normalisetoNativecombine FilePattern?== ShakeValue Verbosity DiagnosticLoudNormalQuietSilent ShakeOptions shakeFiles shakeVersionshakeVerbosity shakeStaunch shakeReport shakeLintshakeDeterministic shakeFlush shakeAssume shakeProgressAssume AssumeClean AssumeDirtyProgress isRunning countSkipped countBuilt countUnknown countTodo timeSkipped timeBuilt timeUnknowntimeTodoRules defaultRulerulewithoutActionsapplyapply1tracedputLoud putNormalputQuiet getVerbosity doesFileExistgetDirectoryContentsgetDirectoryFilesgetDirectoryDirs?>**> addOracle askOracle askOracleWith*>>?>> systemCwd copyFile' readFileLineswriteFileLinescatchIOversionbindirlibdirdatadir libexecdir getBinDir getLibDir getDataDir getLibexecDirgetDataFileNameFileTimegetModTimeMaybegetModTimeError buildReport runTemplate GHC.TypesIOGHC.MVarMVarBarrierVarLockacquireResourcereleaseResourcenewLockwithLocknewVarreadVar modifyVar modifyVar_withVar newBarrier signalBarrier waitBarrier$fShowResource $fShowBarrier $fShowVar $fShowLockstepaddPool blockPoolrunPoolSthreadsworkingblockedtodoPoolTreeBranchLeafQueueNonDetnonDetnewQueueenqueuePriorityenqueuedequeue insertTree removeTreeemptyS BinaryWithputWithgetWith$fBinaryWithctxMaybe$fBinaryWithctx[]$fBinaryWithctx(,)WordGHC.WordWord8Word16Word32Word64 decodeFile encodeFiledecodeencodegetputData.Binary.PutputWord8PutData.Binary.GetgetWord8GetWitness typeNames witnessIn witnessOutValueKeynewKeynewValuetypeKey typeValuefromKey fromValuewitnessregisterWitness toStableListcurrentWitness$fBinaryWithWitnessValue$fBinaryWitness $fEqWitness $fEqValue$fHashableValue $fNFDataValue $fShowValue $fShowKeyasyncExceptionMapdatabaseVersion withStorage flushThread readChunkstoChunk showExceptionIdInternemptyinsertaddlookuptoListfromList$fBinaryWithwIdGHC.IOFilePathfilepath-1.3.0.1System.FilePath.Posix makeRelative isAbsolute isRelative makeValidisValid equalFilePathjoinPathsplitDirectories splitPathreplaceDirectory takeDirectorydropTrailingPathSeparatoraddTrailingPathSeparatorhasTrailingPathSeparatorreplaceBaseName takeBaseName takeFileName dropFileNamereplaceFileName splitFileNameisDrivehasDrive dropDrive takeDrive joinDrive splitDrivetakeExtensionsdropExtensionssplitExtensions hasExtension addExtensionsplitExtension getSearchPathsplitSearchPathisExtSeparator extSeparatorisSearchPathSeparatorsearchPathSeparatorisPathSeparatorpathSeparators pathSeparatormatch compatibleextract substituteSStringRegexEmptyRepeatConcatOrBracketEndStartAnyNotLitLexemeChar SlashSlashStarisCharlexerpatternShakeException ShakeProgress Data.DataDataFalse Data.MaybeNothingJustTrue fromProgressfieldsShakeOptionstyShakeOptionsconShakeOptionsunhidetyShakeProgress$fShowShakeException$fExceptionShakeException$fDataShakeProgress$fShowShakeProgress$fShowShakeOptions$fDataShakeOptionsvalidexecDatabase startTimebuilddependencyOrder resultsOnlyStepKeyOpsDepends fromDependsWaitingPendingResultresultbuiltchangeddepends executiontracesStatusMissingLoadedErrorReadylockinternstatusjournalloggerTraceStackTimeDurationStepincStepdurationwhenJust showStackaddStack checkStack emptyStackisError isWaitingisReady afterWaiting newWaiting runWaitingwaitFor getResultprogressshowJSON checkValidstepKey toStepResultfromStepResult withDatabase$fBinaryWithWitnessStatus$fBinaryWithWitnessResult$fBinaryWithWitnessStep $fShowPending Data.MonoidMonoidGHC.BaseMonad rulePriorityrundatabasepoolstartedstoredexecuteoutput verbosityassumestackdiscountvalueactionsrulesARuleruleKey ruleValue wrapStackregisterWitnesses createStored isOracleTypesshowTypeRepBracket createExecute runAction applyKeyValueputWhen$fFunctorRules $fMonadRules $fMonoidRulesdefaultRuleDirectory GetDirectoryA GetDirectoryQ GetDirDirs GetDirFilespatGetDirdirDoesFileExistADoesFileExistQ getDirActiongetDir $fRuleGetDirectoryQGetDirectoryA"$fRuleDoesFileExistQDoesFileExistA$fBinaryGetDirectoryQ$fHashableGetDirectoryQ$fNFDataGetDirectoryQ$fShowGetDirectoryQ$fShowDoesFileExistA$fShowDoesFileExistQdefaultRuleFileFileAFileQroot$fRuleFileQFileA $fShowFileQ $fNFDataFileQOracleAOracleQ$fRuleOracleQOracleA AlwaysRerunA AlwaysRerunQdefaultRuleRerun$fRuleAlwaysRerunQAlwaysRerunA$fEqAlwaysRerunA$fShowAlwaysRerunA$fShowAlwaysRerunQFilesAFilesQ getFileTimes$fRuleFilesQFilesA $fShowFilesQ$fNFDataFilesQ