diff options
author | evuez <julien@mulga.net> | 2024-04-01 15:16:52 +0200 |
---|---|---|
committer | evuez <julien@mulga.net> | 2024-04-03 22:45:16 +0200 |
commit | ff174d9536db26945189593bf8194f18fbd5ce3f (patch) | |
tree | 327cf783e3c24a0b4b035f548b0ea7206ea9b0f9 /Makefile | |
download | uncron-ff174d9536db26945189593bf8194f18fbd5ce3f.tar.gz |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2db5bff --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +.PHONY: format +format: + fourmolu -i app/ src/ + +.PHONY: lint +lint: + find {app,src}/ | entr -c hlint src/ app/ + +.PHONY: run +run: + find {app,src}/ | entr -cr cabal new-run uncron -- "* * * * *" + +.PHONY: build +build: + find {app,src}/ | entr -c cabal new-build uncron + +.PHONY: repl +repl: + ghcid --allow-eval --lint --command "cabal repl uncron" |