summaryrefslogtreecommitdiff
path: root/Makefile
blob: 43f87d879dc47e91e028a4dfc3ca33a41eb489d4 (plain)
1
2
3
4
5
6
7
8
9
10
CARGO_OPTS = --config 'patch."https://github.com/lcolonq/teleia".teleia.path="../teleia/crates/teleia"' \
  --config 'patch."https://github.com/lcolonq/teleia".teleia_macros.path="../teleia/crates/teleia_macros"'

.PHONY: build run rerun

build:
	@mkdir -p .tmp/
	@cp Cargo.lock .tmp/Cargo.lock
	@cargo build $(CARGO_OPTS)
	@cp .tmp/Cargo.lock Cargo.lock