1
1
mirror of https://github.com/k-bx/par.git synced 2024-11-20 19:13:35 +03:00
par/Makefile

13 lines
306 B
Makefile
Raw Permalink Normal View History

2015-04-08 14:40:53 +03:00
build:
2015-04-08 16:51:52 +03:00
cabal install -j --only-dependencies --ghc-options="-j"
2015-04-08 14:40:53 +03:00
cabal build
2015-04-08 22:14:56 +03:00
strip ./dist/build/par/par
2015-04-08 14:40:53 +03:00
.PHONY: build
2015-04-08 22:45:27 +03:00
transfer:
2015-04-08 22:44:22 +03:00
curl --upload-file ./dist/build/par/par https://transfer.sh/par
.PHONY: transfer
2015-04-08 22:14:56 +03:00
install:
cp ./dist/build/par/par /usr/local/bin/
chmod +x /usr/local/bin/par
.PHONY: install