diff --git a/make-pages/Main.hs b/make-pages/Main.hs new file mode 100644 index 0000000..2f7d462 --- /dev/null +++ b/make-pages/Main.hs @@ -0,0 +1,4 @@ +module Main (main) where + +main :: IO () +main = error "undefined: 'main' in Main.hs" diff --git a/make-pages/make-pages.cabal b/make-pages/make-pages.cabal new file mode 100644 index 0000000..6ca18c7 --- /dev/null +++ b/make-pages/make-pages.cabal @@ -0,0 +1,20 @@ +cabal-version: 2.2 +name: make-pages +version: 0.1.0 +license: AGPL-3.0-or-later + +author: Rhiannon Morris +maintainer: Rhiannon Morris + +executable make-pages + hs-source-dirs: . + main-is: Main.hs + default-language: Haskell2010 + default-extensions: + OverloadedStrings + build-depends: + base ^>= 4.12.0.0, + yaml ^>= 0.11.4.0, + blaze-html ^>= 0.9.1.2 + ghc-options: + -Wall -threaded -rtsopts -with-rtsopts=-N