You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
388 B
22 lines
388 B
PACKAGES=syndicate syndicate-examples |
|
COLLECTS=syndicate syndicate-examples |
|
|
|
all: setup |
|
|
|
clean: |
|
find . -name compiled -type d | xargs rm -rf |
|
find . -name '*.rkte' | xargs rm -rf |
|
|
|
setup: |
|
raco setup --check-pkg-deps --unused-pkg-deps $(COLLECTS) |
|
|
|
link: |
|
raco pkg install --link $(PACKAGES) |
|
|
|
unlink: |
|
raco pkg remove $(PACKAGES) |
|
|
|
test: setup testonly |
|
|
|
testonly: |
|
raco test -p $(PACKAGES)
|
|
|