aboutsummaryrefslogtreecommitdiff
path: root/linux/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-07-24 09:57:27 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-08-11 21:33:21 -0700
commitc9900278321a14071c6721fdfb702e39ca5e2a38 (patch)
tree1724171740a0569330e7c48d055e13735878a4b4 /linux/Makefile
parent5d4932d7ef8e1edec31d99661ffe8e2f4a77244f (diff)
downloadpandoc-c9900278321a14071c6721fdfb702e39ca5e2a38.tar.gz
Linux rc build: use ghc-musl container.
This simplifies our build process a bit (over using a customized alpine container). Use new `--enable-executable-static` flag in build. make_artifacts.sh: Fix deprecated find -perm syntax.
Diffstat (limited to 'linux/Makefile')
-rw-r--r--linux/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/linux/Makefile b/linux/Makefile
deleted file mode 100644
index 4e8eeb00a..000000000
--- a/linux/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-TREE?=HEAD
-ARTIFACTS=`pwd`/artifacts
-REVISION?=1
-
-build:
- mkdir -p $(ARTIFACTS)
- docker build -t alpine-pandoc .
- docker run --env TREE=$(TREE) --env REVISION=$(REVISION) \
- -v $(ARTIFACTS):/artifacts alpine-pandoc
-
-interact:
- docker run --env TREE=$(TREE) --env REVISION=$(REVISION) \
- -v $(ARTIFACTS):/artifacts -it alpine-pandoc bash
-
-setup:
- docker pull alpine:edge
-
-.PHONY: build setup interact