mach

A work-in-progress implementation of make(1)

git clone https://git.8pit.net/mach.git

 1module Main (main) where
 2
 3import Golden
 4import Parser
 5import Test.Tasty
 6
 7main :: IO ()
 8main = defaultMain tests
 9
10tests :: TestTree
11tests = testGroup "Tests" [mkParser, eqivTests]