Files
hs-rgfw/Setup.hs
2025-12-11 18:15:32 +01:00

13 lines
248 B
Haskell

{-# LANGUAGE CPP #-}
module Main (main) where
import Distribution.Simple (defaultMain)
import System.Process (callCommand)
main :: IO ()
main = do
callCommand "./scripts/generate.sh"
defaultMain
callCommand "./scripts/delete-generated.sh"