diff options
author | Félix Sipma <felix.sipma@no-log.org> | 2014-12-16 18:33:20 +0100 |
---|---|---|
committer | Félix Sipma <felix.sipma@no-log.org> | 2014-12-16 18:33:20 +0100 |
commit | a7944991ac38ba635ea4984aa2a18efa2c7990ba (patch) | |
tree | 6c06a4bb8ad496ab05a1cdae739c46995cd072d0 | |
parent | af6b4016b3de47124880331090636ddcf920fe5b (diff) |
add Makefile
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..84f8c6b --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +GHC=ghc +SITE=site.hs + +.PHONY: build +build: + $(GHC) --make -threaded -package-db "$$(ls -d .cabal-sandbox/*-packages.conf.d)" $(SITE) |