summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3cddc2139f227a4f225d81fb7b782563db7ae659 (plain)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: all

all: pkg/deb/ota-plus-client-0.1.0/bin

pkg/deb/ota-plus-client-0.1.0/bin: target/release/ota-plus-client
	mkdir -p $@
	cp $< $@

target/release/ota-plus-client: src/
	cargo build --release