2019-03-05 03:43:53 +03:00
|
|
|
PKGS = minima extrema rusthello prog
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
2019-03-06 22:57:31 +03:00
|
|
|
.PHONY: build build-all install release test clean
|
2019-03-05 03:43:53 +03:00
|
|
|
|
|
|
|
build:
|
2019-03-06 22:57:31 +03:00
|
|
|
nix-build -A urbit -A urb --no-out-link
|
2019-03-05 03:43:53 +03:00
|
|
|
|
2019-03-06 22:57:31 +03:00
|
|
|
build-all:
|
|
|
|
nix-build --no-out-link
|
2019-03-05 03:43:53 +03:00
|
|
|
|
|
|
|
install:
|
|
|
|
nix-env -f . -iA urbit -iA urbit-debug -iA urb
|
|
|
|
|
|
|
|
release:
|
|
|
|
sh/release urbit linux32
|
|
|
|
sh/release urbit linux64
|
|
|
|
sh/release urbit darwin
|
|
|
|
|
|
|
|
test:
|
|
|
|
sh/test
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf ./out ./work
|
|
|
|
rm -f result result-*
|