mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-18 12:22:10 +03:00
27 lines
477 B
Makefile
27 lines
477 B
Makefile
PKGS = minima extrema rusthello prog
|
|
|
|
################################################################################
|
|
|
|
.PHONY: build build-all install release test clean
|
|
|
|
build:
|
|
nix-build -A urbit -A herb --no-out-link
|
|
|
|
build-all:
|
|
nix-build --no-out-link
|
|
|
|
install:
|
|
nix-env -f . -iA urbit -iA urbit-debug -iA herb
|
|
|
|
release:
|
|
sh/release urbit linux32
|
|
sh/release urbit linux64
|
|
sh/release urbit darwin
|
|
|
|
test:
|
|
sh/test
|
|
|
|
clean:
|
|
rm -rf ./cross ./release
|
|
rm -f result result-*
|