only doing this because Data.Set is not in the stdlib
This commit is contained in:
hi 2025-08-15 13:10:36 +00:00
parent 30941456a2
commit dff5b9f365
19 changed files with 101 additions and 16 deletions

View file

@ -1,7 +1,11 @@
main: dirty clean
main: ghc-dirty clean
dirty:
ghc Main.hs -o logic
ghc-dirty:
cd lib; ghc ../src/Main.hs -o ../logic
clean:
find | grep -E '\.(hi|o)$$' | xargs rm --
find src lib test | grep -E '\.(hi|o)$$' | xargs rm --
cabal:
cabal build --builddir=.cabal-build
mv .cabal-build/build/*/*/logic-*/x/logic/build/logic/logic .