1module Main where23import Mach.Main (run)4import System.Environment (getArgs)5import System.Exit (exitWith)6import System.IO (stdout)78main :: IO ()9main = getArgs >>= run stdout >>= exitWith
A work-in-progress implementation of make(1)
git clone https://git.8pit.net/mach.git
1module Main where23import Mach.Main (run)4import System.Environment (getArgs)5import System.Exit (exitWith)6import System.IO (stdout)78main :: IO ()9main = getArgs >>= run stdout >>= exitWith