mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
15 lines
177 B
Makefile
15 lines
177 B
Makefile
.PHONY: all sv2v clean test
|
|
|
|
all: sv2v
|
|
|
|
sv2v:
|
|
mkdir -p bin
|
|
stack install --install-ghc --local-bin-path bin
|
|
|
|
clean:
|
|
stack clean
|
|
rm -rf bin
|
|
|
|
test:
|
|
(cd test && ./run-all.sh)
|