aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-19 13:34:46 -0700
committerJohn MacFarlane <[email protected]>2022-10-19 13:34:46 -0700
commit656c329c3bc34db9483e1c576f036539c6065a47 (patch)
tree37d7366abfff0c7bbcf0334338e85520270a0774 /Makefile
parent5faa6d22dbfbfe934f23dbe12fa3cbebcee36ace (diff)
Makefile: exclude tests from SOURCEFILES
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7a6edbe63..8b9eb67a7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
version?=$(shell grep '^[Vv]ersion:' pandoc.cabal | awk '{print $$2;}')
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
-SOURCEFILES?=$(shell git ls-tree -r master --name-only | grep "\.hs$$")
+SOURCEFILES?=$(shell git ls-tree -r master --name-only src pandoc-cli pandoc-server pandoc-lua-engine | grep "\.hs$$")
PANDOCSOURCEFILES?=$(shell git ls-tree -r master --name-only src | grep "\.hs$$")
DOCKERIMAGE=registry.gitlab.b-data.ch/ghc/ghc4pandoc:9.2.3
TIMESTAMP=$(shell date "+%Y%m%d_%H%M")