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