From e69473a11580fdb6deeae73be5f519f27f0fc2cf Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sun, 29 Apr 2018 14:54:28 +0100 Subject: [PATCH] Makefile --- syndicate/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 syndicate/Makefile diff --git a/syndicate/Makefile b/syndicate/Makefile new file mode 100644 index 0000000..a0d1ad3 --- /dev/null +++ b/syndicate/Makefile @@ -0,0 +1,16 @@ +PACKAGENAME=imperative-syndicate +COLLECTS=imperative-syndicate + +all: setup + +clean: + find . -name compiled -type d | xargs rm -rf + +setup: + raco setup $(COLLECTS) + +link: + raco pkg install --link -n $(PACKAGENAME) $$(pwd) + +unlink: + raco pkg remove $(PACKAGENAME)