haskell-coop/Makefile
2019-12-06 15:43:53 +01:00

16 lines
260 B
Makefile

.PHONY: examples
default: all
all: build examples
build:
cabal new-build --write-ghc-environment-files always --enable-documentation
examples:
ghc -fno-code examples/without_signals/*.hs
ghc -fno-code examples/with_signals/*.hs
clean:
cabal new-clean