mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-10 12:53:09 +00:00
17 lines
237 B
Makefile
Vendored
17 lines
237 B
Makefile
Vendored
.PHONY: proto version test
|
|
|
|
all: proto test
|
|
|
|
proto:
|
|
rm -rf proto
|
|
mkdir -p proto/chirpstack
|
|
mkdir -p proto/google
|
|
cp -r ../proto/* proto/chirpstack
|
|
mv proto/chirpstack/google proto/google/
|
|
|
|
test:
|
|
cargo test
|
|
|
|
publish:
|
|
cargo publish
|