mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
432a321e0c
Adds a script for creating Ropsten pills, then adds it to the Makefile under the 'ropsten-pills' target.
35 lines
478 B
Makefile
35 lines
478 B
Makefile
.PHONY: build build-all install cross release test pills ropsten-pills 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
|
|
|
|
cross:
|
|
sh/cross
|
|
|
|
release:
|
|
sh/release
|
|
|
|
test:
|
|
sh/test
|
|
|
|
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-*
|