mirror of https://github.com/XS-MLVP/picker.git
15 lines
287 B
Makefile
15 lines
287 B
Makefile
default: test
|
|
.PHONY: check-picker
|
|
|
|
export PATH := ../../build/bin:${PATH}
|
|
|
|
check-picker:
|
|
@which picker > /dev/null 2>&1 || { echo "Error: 'picker' command not found!"; exit 1; }
|
|
@echo "find picker: `which picker`"
|
|
|
|
test: check-picker
|
|
mill ut.test
|
|
|
|
clean:
|
|
rm out .pickerChiselUT -rf
|