1cabal-version: 3.42name: mach3version: 0.1.0.04synopsis: A WiP implementation of the POSIX make build system5-- description:6license: CC-BY-NC-SA-4.07license-file: LICENSE8author: Sören Tempel9maintainer: soeren+git@soeren-tempel.net10-- copyright:11category: Development12build-type: Simple13extra-doc-files: README.md14data-files: share/*.mk15-- extra-source-files:1617common warnings18 ghc-options: -Wall1920library21 import: warnings22 hs-source-dirs: lib23 default-language: Haskell201024 other-modules: Paths_mach25 exposed-modules:26 Mach.Main,27 Mach.Exec,28 Mach.Eval,29 Mach.Parser,30 Mach.Types,31 Mach.Util,32 Mach.Error3334 -- Dependencies without constraints are vendored by GHC itself.35 build-depends:36 base,37 parsec,38 containers,39 directory,40 process,4142executable mach43 import: warnings44 main-is: Main.hs45 hs-source-dirs: exe46 default-language: Haskell20104748 -- Dependencies without constraints are vendored by GHC itself.49 build-depends:50 base,51 mach5253test-suite mach-test54 import: warnings55 default-language: Haskell201056 type: exitcode-stdio-1.057 hs-source-dirs: test58 main-is: Main.hs59 other-modules:60 Util,61 Parser,62 Golden6364 -- Dependencies without constraints are vendored by GHC itself.65 build-depends:66 base,67 parsec,68 process,69 directory,70 filepath,71 tasty >=1.4.3,72 tasty-hunit >=0.10,73 tasty-golden >=2.3.5,74 mach