moduleDevelopment.Shake.Internal.Rules.OrderOnly(orderOnly ,orderOnlyBS )whereimportDevelopment.Shake.Internal.Core.Types importDevelopment.Shake.Internal.Core.Action importDevelopment.Shake.Internal.Rules.File importqualifiedData.ByteString.Char8asBS-- | Define order-only dependencies, these are dependencies that will always-- be built before continuing, but which aren't dependencies of this action.-- Mostly useful for defining generated dependencies you think might be real dependencies.-- If they turn out to be real dependencies, you should add an explicit dependency afterwards.---- @-- \"source.o\" %> \\out -> do-- 'orderOnly' [\"header.h\"]-- 'cmd_' \"gcc -c source.c -o source.o -MMD -MF source.m\"-- 'neededMakefileDependencies' \"source.m\"-- @---- If @header.h@ is included by @source.c@ then the call to 'needMakefileDependencies' will cause-- it to be added as a real dependency. If it isn't, then the rule won't rebuild if it changes.orderOnly::[FilePath]->Action ()orderOnly =orderOnlyAction .need orderOnlyBS::[BS.ByteString]->Action ()orderOnlyBS =orderOnlyAction .needBS 

AltStyle によって変換されたページ (->オリジナル) /