1
1
mirror of https://github.com/k-bx/par.git synced 2024-10-04 02:37:56 +03:00
par/Makefile
2015-04-08 22:44:22 +03:00

13 lines
305 B
Makefile

build:
cabal install -j --only-dependencies --ghc-options="-j"
cabal build
strip ./dist/build/par/par
.PHONY: build
transer:
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