preserves/implementations/racket/Makefile

17 lines
238 B
Makefile
Raw Normal View History

2018-09-29 16:37:26 +00:00
PACKAGENAME=preserves
COLLECTS=preserves
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)