1
1
mirror of https://github.com/k-bx/par.git synced 2024-10-03 18:27:19 +03:00
par/Makefile
Konstantine Rybnikov 6ae84d84cc Typo
2015-04-08 22:45:27 +03:00

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