mirror of
https://github.com/k-bx/par.git
synced 2024-11-20 19:13:35 +03:00
13 lines
306 B
Makefile
13 lines
306 B
Makefile
build:
|
|
cabal install -j --only-dependencies --ghc-options="-j"
|
|
cabal build
|
|
strip ./dist/build/par/par
|
|
.PHONY: build
|
|
transfer:
|
|
curl --upload-file ./dist/build/par/par https://transfer.sh/par
|
|
.PHONY: transfer
|
|
install:
|
|
cp ./dist/build/par/par /usr/local/bin/
|
|
chmod +x /usr/local/bin/par
|
|
.PHONY: install
|