mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
b6b976d753
The urbit and urbit-debug derivations both produce an urbit-worker binary, and they conflict.
32 lines
452 B
Makefile
32 lines
452 B
Makefile
.PHONY: build build-all install cross release test pills ropsten-pills clean
|
|
|
|
build:
|
|
nix-build -A urbit -A herb --no-out-link
|
|
|
|
install:
|
|
nix-env -f . -iA urbit -iA herb
|
|
|
|
release:
|
|
sh/release
|
|
|
|
test:
|
|
nix-build -A urbit-tests --no-out-link
|
|
|
|
pills:
|
|
sh/update-solid-pill
|
|
sh/update-brass-pill
|
|
sh/update-ivory-pill
|
|
|
|
ropsten-pills:
|
|
sh/create-ropsten-pills
|
|
|
|
interface:
|
|
sh/build-interface
|
|
|
|
clean:
|
|
rm -rf ./out ./work
|
|
rm -f result result-*
|
|
|
|
fmt:
|
|
sh/fmt
|