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)