12 lines
251 B
Makefile
12 lines
251 B
Makefile
export PATH := /home/linuxbrew/.linuxbrew/bin:$(PATH)
|
|
|
|
all: ethereum
|
|
|
|
build:
|
|
cargo build --target wasm32-unknown-unknown --release
|
|
|
|
ethereum: build
|
|
substreams pack ethereum-liquidityparty.yaml -o ethereum-liquidityparty.spkg
|
|
|
|
.PHONY: build ethereum
|